|
@@ -25,6 +25,9 @@
|
|
|
<el-tab-pane label="规划师审核" name="guide">
|
|
<el-tab-pane label="规划师审核" name="guide">
|
|
|
<guide-audit ref="guide" />
|
|
<guide-audit ref="guide" />
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
|
|
|
+ <el-tab-pane label="营养师审核" name="nutritionist">
|
|
|
|
|
+ <nutritionist-audit ref="nutritionist" />
|
|
|
|
|
+ </el-tab-pane>
|
|
|
<el-tab-pane label="服务商审核" name="vendor">
|
|
<el-tab-pane label="服务商审核" name="vendor">
|
|
|
<vendor-audit ref="vendor" />
|
|
<vendor-audit ref="vendor" />
|
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
@@ -63,12 +66,14 @@ import ActivityAudit from './review/ActivityAudit.vue'
|
|
|
import ActivityRegistrationAudit from './review/ActivityRegistrationAudit.vue'
|
|
import ActivityRegistrationAudit from './review/ActivityRegistrationAudit.vue'
|
|
|
import WithdrawAudit from './review/WithdrawAudit.vue'
|
|
import WithdrawAudit from './review/WithdrawAudit.vue'
|
|
|
import HierarchyAudit from './review/HierarchyAudit.vue'
|
|
import HierarchyAudit from './review/HierarchyAudit.vue'
|
|
|
|
|
+import NutritionistAudit from './review/NutritionistAudit.vue'
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
name: 'ReviewCenter',
|
|
name: 'ReviewCenter',
|
|
|
components: {
|
|
components: {
|
|
|
ArticleAudit, ProductAudit, GuideAudit, VendorAudit, ButlerAudit,
|
|
ArticleAudit, ProductAudit, GuideAudit, VendorAudit, ButlerAudit,
|
|
|
- PackageAudit, ActivityAudit, ActivityRegistrationAudit, WithdrawAudit, HierarchyAudit
|
|
|
|
|
|
|
+ PackageAudit, ActivityAudit, ActivityRegistrationAudit, WithdrawAudit, HierarchyAudit,
|
|
|
|
|
+ NutritionistAudit
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -85,6 +90,7 @@ export default {
|
|
|
{ key: 'activityRegistration', label: '报名审核', icon: '📝', count: 0 },
|
|
{ key: 'activityRegistration', label: '报名审核', icon: '📝', count: 0 },
|
|
|
{ key: 'withdraw', label: '提现审核', icon: '💰', count: 0 },
|
|
{ key: 'withdraw', label: '提现审核', icon: '💰', count: 0 },
|
|
|
{ key: 'hierarchy', label: '更换上级', icon: '🔗', count: 0 },
|
|
{ key: 'hierarchy', label: '更换上级', icon: '🔗', count: 0 },
|
|
|
|
|
+ { key: 'nutritionist', label: '营养师审核', icon: '🥗', count: 0 },
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -104,6 +110,7 @@ export default {
|
|
|
const keyMap = {
|
|
const keyMap = {
|
|
|
article: 'articlePending', product: 'productPending', guide: 'guidePending',
|
|
article: 'articlePending', product: 'productPending', guide: 'guidePending',
|
|
|
vendor: 'vendorPending', butler: 'butlerPending', package: 'packagePending',
|
|
vendor: 'vendorPending', butler: 'butlerPending', package: 'packagePending',
|
|
|
|
|
+ nutritionist: 'nutritionistPending',
|
|
|
activity: 'activityPending', activityRegistration: 'activityRegistrationPending',
|
|
activity: 'activityPending', activityRegistration: 'activityRegistrationPending',
|
|
|
withdraw: 'withdrawPending', hierarchy: 'hierarchyChangePending'
|
|
withdraw: 'withdrawPending', hierarchy: 'hierarchyChangePending'
|
|
|
}
|
|
}
|