Browse Source

完善单车返利核对

master
yunuo970428 9 months ago
parent
commit
219ee9cf2c
  1. 6
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue

6
anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue

@ -65,7 +65,7 @@
</el-table-column>
<el-table-column label="调整状态" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.uploadState == '0' ? '调整' : scope.row.uploadState == '1' ? '已调整' : ''}}</span>
<span>{{ scope.row.uploadState == '0' ? '待确认' : scope.row.uploadState == '1' ? '确认调整' : scope.row.uploadState == '2' ? '暂不调整' : '' }}</span>
</template>
</el-table-column>
<el-table-column label="品牌" align="center" width="200">
@ -167,8 +167,8 @@
</el-table-column>
<el-table-column label="操作" align="center" width="180px">
<template slot-scope="scope">
<el-button type="primary" v-if="scope.row.adjustmentState == '0'" size="mini" @click="toSave(scope.row)">保存</el-button>
<el-button type="primary" v-if="scope.row.isAdjustment == '否' || (scope.row.uploadState == '3' && scope.row.adjustmentState == '0')" size="mini" @click="toAdjust(scope.row)">调整</el-button>
<el-button type="primary" v-if="scope.row.adjustmentState == '0' || scope.row.adjustmentState == '2'" size="mini" @click="toSave(scope.row)">保存</el-button>
<el-button type="primary" v-if="scope.row.adjustmentState == '2'" size="mini" @click="toAdjust(scope.row)">调整</el-button>
</template>
</el-table-column>
</el-table>

Loading…
Cancel
Save