fix: BUG修改

This commit is contained in:
kun 2023-08-04 17:45:12 +08:00
parent 3bce79d428
commit c9427a0e6e
6 changed files with 23 additions and 10 deletions

View File

@ -95,11 +95,12 @@ const formConfig = reactive({
{
label: "分项",
prop: "subItem",
type: "select",
data: [
{ label: "施工质量进度", value: "施工质量进度" },
{ label: "安全文明管理", value: "安全文明管理" }
]
type: "input"
// type: "select",
// data: [
// { label: "", value: "" },
// { label: "", value: "" }
// ]
},
{
label: "评分标准",

View File

@ -28,7 +28,7 @@
<el-table-column prop="category" label="类别"> </el-table-column>
<el-table-column type="index" label="编号" width="80" />
<el-table-column prop="scoreCriteria" width="200" label="评分标准" />
<el-table-column prop="punish" label="违约处理" />
<!-- <el-table-column prop="punish" label="违约处理" /> -->
<el-table-column prop="deductPointsStandard" label="扣分标准" />
<el-table-column prop="standardScore" label="标准分" />
<el-table-column label="扣分">

View File

@ -92,7 +92,7 @@ onMounted(async () => {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #060f2c;
// background-color: #060f2c;
cursor: pointer;
img {
width: 60px;

View File

@ -52,7 +52,7 @@ onMounted(async () => {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #060f2c;
// background-color: #060f2c;
cursor: pointer;
img {
width: 60px;

View File

@ -65,6 +65,11 @@
: ""
}}</span>
</template>
<template #slippageState="{ row }">
<span>{{
row.slippageState == 1 ? "正常" : row.slippageState == 2 ? "临期" : row.slippageState == 3 ? "超期" : ""
}}</span>
</template>
<template #slippage="{ row }">
<span :style="{ color: row.slippage ? 'red' : 'var(--el-menu-text-color)' }">{{
row.slippage ? row.slippage : ""
@ -159,7 +164,8 @@ const columns: ColumnProps[] = [
{ label: "终审驳回", value: "5-2" }
]
},
{ prop: "slippage", label: "逾期情况(天)", width: 150 },
{ prop: "slippageState", label: "逾期情况", width: 150 },
{ prop: "slippage", label: "逾期天数", width: 150 },
{ prop: "operation", label: "操作", fixed: "right", width: 100 }
];
const pageable = ref({

View File

@ -66,6 +66,11 @@
: ""
}}</span>
</template>
<template #slippageState="{ row }">
<span>{{
row.slippageState == 1 ? "正常" : row.slippageState == 2 ? "临期" : row.slippageState == 3 ? "超期" : ""
}}</span>
</template>
<template #slippage="{ row }">
<span :style="{ color: row.slippage ? 'red' : 'var(--el-menu-text-color)' }">{{
row.slippage ? row.slippage : ""
@ -160,7 +165,8 @@ const columns: ColumnProps[] = [
{ label: "终审驳回", value: "5-2" }
]
},
{ prop: "slippage", label: "逾期情况(天)", width: 150 },
{ prop: "slippageState", label: "逾期情况", width: 150 },
{ prop: "slippage", label: "逾期天数", width: 150 },
{ prop: "operation", label: "操作", fixed: "right", width: 100 }
];
const pageable = ref({