This commit is contained in:
2023-06-20 18:09:30 +08:00
parent fc5d2c44ea
commit 1063053510
4 changed files with 350 additions and 44 deletions

View File

@@ -2,7 +2,41 @@
<div class="ma-content-block lg:flex justify-between p-4">
<div class="lg:w-full w-full lg:ml-4 mt-5 lg:mt-0">
<!-- CRUD组件 -->
<ma-crud :options="crudOptions" :columns="crudColumns"></ma-crud>
<ma-crud :options="crudOptions" :columns="crudColumns">
<template #total_code_line="{ record }">
<template v-if="record.total_code_line">
<a-statistic
:animation-duration="1000"
:value="parseInt(record.total_code_line)"
animation
:value-style="{ color: '#0fbf60' }"
></a-statistic>
</template>
</template>
<template #total_line="{ record }">
<template v-if="record.total_line">
<a-statistic
:animation-duration="1000"
:value="parseInt(record.total_line)"
animation
:value-style="{ color: 'orange' }"
></a-statistic>
</template>
</template>
<template #comment_line="{ record }">
<template v-if="record.comment_line">
<a-statistic
:animation-duration="1000"
:precision="2"
:value="parseFloat(record.comment_line)"
animation
:value-style="{ color: 'lightblue' }"
>
<template #suffix> % </template>
</a-statistic>
</template>
</template>
</ma-crud>
</div>
</div>
</template>
@@ -21,6 +55,7 @@ const crudOptions = ref({
projectId: route.query.id,
round: route.query.key
},
operationWidth: 200,
showIndex: false,
rowSelection: { showCheckedAll: true },
add: { show: true },
@@ -29,77 +64,123 @@ const crudOptions = ref({
searchColNumber: 3,
tablePagination: true,
operationColumn: true,
operationColumnAlign: "center",
formOption: {
width: 500
viewType: "drawer",
width: 600
}
})
const beiceType = [
{ label: "源代码", value: "SO" },
{ label: "设计说明", value: "SJ" },
{ label: "需求文档", value: "XQ" },
{ label: "通信协议", value: "XY" }
]
const crudColumns = ref([
{
title: "ID",
width: 50,
align:'center',
align: "center",
dataIndex: "id",
search: true,
commonRules: [{ required: true, message: "标识是必填" }],
commonRules: [{ required: true, message: "ID是必填" }],
validateTrigger: "blur"
},
{
title: "标识",
width: 150,
align:'center',
align: "center",
dataIndex: "ident",
search: true,
commonRules: [{ required: true, message: "标识是必填" }],
validateTrigger: "blur"
},
{
title: "被测类型",
align: "center",
dataIndex: "type",
search: true,
formType: "radio",
addDefaultValue: "SO",
dict: {
data: beiceType,
translation: true,
tagColors: { XQ: "blue", SO: "green", SJ: "orangered", XY: "pinkpurple" }
},
control: (value) => {
if (value === "SO") {
return {
black_line: { display: true },
pure_code_line: { display: true },
mix_line: { display: true },
total_comment_line: { display: true },
total_code_line: { display: true },
total_line: { display: true },
comment_line: { display: true }
}
} else {
return {
black_line: { display: false },
pure_code_line: { display: false },
mix_line: { display: false },
total_comment_line: { display: false },
total_code_line: { display: false },
total_line: { display: false },
comment_line: { display: false }
}
}
}
},
{
title: "被测件名",
width: 120,
align: "center",
dataIndex: "name",
search: true,
commonRules: [{ required: true, message: "需求名称是必填" }],
validateTrigger: "blur"
},
{
title:"空行",
hide:true,
align:'center',
dataIndex:"black_line"
title: "空行",
hide: true,
align: "center",
dataIndex: "black_line"
},
{
title:"纯注释",
hide:true,
align:'center',
dataIndex:"pure_code_line"
title: "纯注释",
hide: true,
align: "center",
dataIndex: "pure_code_line"
},
{
title:"混合行",
hide:true,
align:'center',
dataIndex:"mix_line"
title: "混合行",
hide: true,
align: "center",
dataIndex: "mix_line"
},
{
title:"总注释",
hide:true,
align:'center',
dataIndex:"total_comment_line"
title: "总注释",
hide: true,
align: "center",
dataIndex: "total_comment_line"
},
{
title:"总代码",
align:'center',
dataIndex:"total_code_line"
title: "总代码",
align: "center",
dataIndex: "total_code_line"
},
{
title:"总行数",
align:'center',
dataIndex:"total_line"
title: "总行数",
align: "center",
dataIndex: "total_line"
},
{
title:"注释率",
align:'center',
dataIndex:"comment_line",
commonRules: [{ required: true, message: "注释率必填" }],
},
title: "注释率",
align: "center",
dataIndex: "comment_line",
commonRules: [{ required: true, message: "注释率必填" }]
}
])
</script>