浏览代码

门店审核

shish 5 年之前
父节点
当前提交
52df880ea9
共有 2 个文件被更改,包括 7 次插入7 次删除
  1. 6 6
      saas/src/constant/constant.js
  2. 1 1
      saas/src/saas/shop/apply.vue

+ 6 - 6
saas/src/constant/constant.js

@@ -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
 		}
 	],
 	// 后台小程序状态

+ 1 - 1
saas/src/saas/shop/apply.vue

@@ -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>
 			</template>