task#,删除师傅

This commit is contained in:
2024-12-26 13:26:53 +08:00
parent cd02c44fca
commit 0063828771
2 changed files with 20 additions and 19 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 }) {