Browse Source

完善单车返利管理

zhanglei
yunuo970428 8 months ago
parent
commit
403d61090f
  1. 22
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue

22
anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue

@ -41,8 +41,8 @@
<div class="btn" style="text-align: center;"> <div class="btn" style="text-align: center;">
<el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button> <el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button> <el-button type="primary" icon="el-icon-refresh" @click="handleReset" size="small">重置</el-button>
<el-button type="primary" size="small">待确认返利</el-button> <!-- <el-button type="primary" size="small">待确认返利</el-button>-->
<el-button type="primary" size="small">未调整</el-button> <!-- <el-button type="primary" size="small">未调整</el-button>-->
</div> </div>
</div> </div>
</div> </div>
@ -62,7 +62,7 @@
</el-table-column> </el-table-column>
<el-table-column label="状态" align="center" width="200"> <el-table-column label="状态" align="center" width="200">
<template slot-scope="scope"> <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 == '4' ? '已核对' : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="品牌" align="center" width="200"> <el-table-column label="品牌" align="center" width="200">
@ -290,15 +290,23 @@ export default {
rebateType_list: [], rebateType_list: [],
state_list: [ state_list: [
{ {
dictKey: 0, dictKey: '0',
dictValue: '未计提' dictValue: '未计提'
}, },
{ {
dictKey: 1, dictKey: '1',
dictValue: '计提' dictValue: '计提'
}, },
{ {
dictKey: 2, dictKey: '2',
dictValue: '待核对'
},
{
dictKey: '3',
dictValue: '核对中'
},
{
dictKey: '4',
dictValue: '已核对' dictValue: '已核对'
} }
], ],

Loading…
Cancel
Save