@@ -83,24 +83,24 @@ const _CONST_MAP = {
// 后台审核账号
SAAS_APPLY_STATUS: [
{
- label: '审核中',
- value: 0
+ label: '待审核',
+ value: 1
},
label: '审核通过',
- value: 1
+ value: 2
label: '审核未通过',
- value: 2
+ value: 3
label: '已付费',
- value: 3
+ value: 4
label: '过期',
- value: 4
+ value: 5
}
],
// 后台小程序状态
@@ -11,7 +11,7 @@
<!-- 审核 -->
<template #slot-apply="{scope}">
- <template v-if="scope.row.status == 0 || scope.row.status == 2">
+ <template v-if="scope.row.status == 1 || scope.row.status == 3">
<el-button type="text" @click="showModalFn(scope.row)">审核</el-button>
</template>