|
|
@@ -29,7 +29,7 @@
|
|
|
>
|
|
|
<template v-slot:code="{ row }">
|
|
|
<el-link type="primary" :underline="false" @click="goDetail(row)">
|
|
|
- 222222
|
|
|
+ {{ row.code }}
|
|
|
</el-link>
|
|
|
</template>
|
|
|
<!-- 操作列 -->
|
|
|
@@ -204,7 +204,13 @@
|
|
|
label: '状态',
|
|
|
align: 'center',
|
|
|
showOverflowTooltip: true,
|
|
|
- minWidth: 110
|
|
|
+ minWidth: 110,
|
|
|
+ formatter: (row) => {
|
|
|
+ const obj = this.statusOpt[this.activeName].find(
|
|
|
+ (i) => i.value == row.status
|
|
|
+ );
|
|
|
+ return obj && obj.label;
|
|
|
+ }
|
|
|
},
|
|
|
{
|
|
|
prop: 'createUserName',
|