diff --git a/anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue b/anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue
index ba9504a107..d93d0b1108 100644
--- a/anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue
+++ b/anrui-scm/anrui-scm-ui/src/views/bikerebate/bikerebatemanagement/bicyclerebatemanagement.vue
@@ -41,8 +41,8 @@
查询
重置
- 待确认返利
- 未调整
+
+
@@ -62,7 +62,7 @@
- {{ scope.row.state === '0' ? '未计提' : scope.row.state === '1' ? '已计提' : scope.row.state === '2' ? '已核对' : '' }}
+ {{ scope.row.state == '0' ? '未计提' : scope.row.state == '1' ? '计提中' : scope.row.state == '2' ? '待核对' : scope.row.state == '3' ? '核对中' : scope.row.state == '4' ? '已核对' : '' }}
@@ -290,15 +290,23 @@ export default {
rebateType_list: [],
state_list: [
{
- dictKey: 0,
+ dictKey: '0',
dictValue: '未计提'
},
{
- dictKey: 1,
- dictValue: '已计提'
+ dictKey: '1',
+ dictValue: '计提中'
},
{
- dictKey: 2,
+ dictKey: '2',
+ dictValue: '待核对'
+ },
+ {
+ dictKey: '3',
+ dictValue: '核对中'
+ },
+ {
+ dictKey: '4',
dictValue: '已核对'
}
],