|
@@ -96,15 +96,15 @@
|
|
|
>
|
|
>
|
|
|
</template>
|
|
</template>
|
|
|
<!-- 单号链接 -->
|
|
<!-- 单号链接 -->
|
|
|
- <template v-slot:bizNum="{ row }">
|
|
|
|
|
|
|
+ <template v-slot:bizNo="{ row }">
|
|
|
<el-link @click="details(row)">
|
|
<el-link @click="details(row)">
|
|
|
- {{ row.bizNum }}
|
|
|
|
|
|
|
+ {{ row.bizNo }}
|
|
|
</el-link>
|
|
</el-link>
|
|
|
</template>
|
|
</template>
|
|
|
<!-- 状态 -->
|
|
<!-- 状态 -->
|
|
|
<template v-slot:verifyStatus="{ row }">
|
|
<template v-slot:verifyStatus="{ row }">
|
|
|
- <span :class="status[row.verifyStatus + -1].class">
|
|
|
|
|
- {{ status[row.verifyStatus - 1].label }}
|
|
|
|
|
|
|
+ <span :class="status[row.verifyStatus].class">
|
|
|
|
|
+ {{ status[row.verifyStatus].label }}
|
|
|
</span>
|
|
</span>
|
|
|
</template>
|
|
</template>
|
|
|
<!-- 领料人 -->
|
|
<!-- 领料人 -->
|
|
@@ -154,8 +154,8 @@
|
|
|
total: 0,
|
|
total: 0,
|
|
|
status: [
|
|
status: [
|
|
|
{ label: '待审核', class: 'ele-text-primary' },
|
|
{ label: '待审核', class: 'ele-text-primary' },
|
|
|
- { label: '已完成', class: 'ele-text-primary' },
|
|
|
|
|
- { label: '已驳回', class: 'ele-text-danger' }
|
|
|
|
|
|
|
+ { label: '已审核', class: 'ele-text-success' }, // 审核状态 1未审核 2
|
|
|
|
|
+ { label: '驳回', class: 'ele-text-danger' }
|
|
|
],
|
|
],
|
|
|
columns: [
|
|
columns: [
|
|
|
{
|
|
{
|
|
@@ -166,12 +166,12 @@
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
{
|
|
{
|
|
|
- prop: 'bizNum',
|
|
|
|
|
|
|
+ prop: 'bizNo',
|
|
|
label: '单号',
|
|
label: '单号',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
- slot: 'bizNum',
|
|
|
|
|
|
|
+ slot: 'bizNo',
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
- width: 140
|
|
|
|
|
|
|
+ width: 160
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
prop: 'verifyStatus',
|
|
prop: 'verifyStatus',
|