Browse Source

完善专项返利管理

master
yunuo970428 8 months ago
parent
commit
9c0fcbd1f1
  1. 2
      anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatemanagement/specialrebatemanagement.vue

2
anrui-scm/anrui-scm-ui/src/views/specialrebate/specialrebatemanagement/specialrebatemanagement.vue

@ -54,7 +54,7 @@
</el-table-column>
<el-table-column label="状态" align="center" width="200">
<template slot-scope="scope">
<span>{{ scope.row.state === '0' ? '未计提' : scope.row.state === '1' ? '计提' : scope.row.state === '2' ? '已核对' : '' }}</span>
<span>{{ scope.row.state == '0' ? '未计提' : scope.row.state == '1' ? '计提' : scope.row.state == '2' ? '待核对' : scope.row.state == '3' ? '核对中' : scope.row.state == '5' ? '分配中' : scope.row.state == '6' ? '' : scope.row.state == '已分配' ? '' : '' }}</span>
</template>
</el-table-column>
<el-table-column label="品牌" align="center" width="200">

Loading…
Cancel
Save