Browse Source

Merge remote-tracking branch 'origin/master'

master
God 8 months ago
parent
commit
052246a915
  1. 4
      anrui-scm/anrui-scm-ui/src/views/bikerebate/bicyclerebatecheck/bicyclerebatetobechecked.vue

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

@ -60,12 +60,12 @@
<el-table-column fixed label="序号" type="index" :index="indexMethod" align="center" width="80px"/>
<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' ? '已上传' : ''}}</span>
</template>
</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' ? '已调整' : ''}}</span>
</template>
</el-table-column>
<el-table-column label="品牌" align="center" width="200">

Loading…
Cancel
Save