task#,师傅相关还原

This commit is contained in:
2025-01-02 17:39:22 +08:00
parent 9f9450afc3
commit dfddc69c4a
2 changed files with 19 additions and 20 deletions

View File

@ -13,7 +13,7 @@
<template slot-scope="scope">{{scope.row[item.prop]}} </template>
</el-table-column>
</template>
<!-- <template v-else-if="active===4">
<template v-else-if="active===4">
<el-table-column v-for="(column,index) in filteredLabelList" :key="column.prop" :prop="column.prop" :label="column.label"
:fixed="index===0" align="center" min-width="100"
:width="(isMobile && (column.label=='案件编号' || column.label=='服务内容')) ? 70 : 'auto'">
@ -25,7 +25,7 @@
<span v-else>{{ scope.row[column.prop] }}</span>
</template>
</el-table-column>
</template>-->
</template>
<template v-else>
<el-table-column v-for="column in labelList" :key="column.prop" :prop="column.prop" :label="column.label"
align="center" min-width="100" :width="(isMobile && (column.label=='案件编号' || column.label=='服务内容')) ? 70 : 'auto'">
@ -45,12 +45,12 @@ export default {
mounted() {
},
computed: {
/* filteredLabelList() {
filteredLabelList() {
if(this.active!==4){
return
}
return this.labelList.filter(column => column.label !== '星级评分');
}*/
}
},
methods: {
setTableCellStyle({ row, column,columnIndex }) {