feat: add syj promote workflow
This commit is contained in:
34
pro_v3.5.1/view/admin/src/router/modules/syj.js
Normal file
34
pro_v3.5.1/view/admin/src/router/modules/syj.js
Normal file
@@ -0,0 +1,34 @@
|
||||
import BasicLayout from '@/layouts/basic-layout';
|
||||
|
||||
const pre = 'syj_';
|
||||
|
||||
export default {
|
||||
path: '/admin/syj',
|
||||
name: 'syj',
|
||||
header: 'syj',
|
||||
meta: {
|
||||
auth: ['admin-syj'],
|
||||
title: '芍药居'
|
||||
},
|
||||
component: BasicLayout,
|
||||
children: [
|
||||
{
|
||||
path: 'promote/task',
|
||||
name: `${pre}promoteTask`,
|
||||
meta: { auth: ['syj-promote-task'], title: '推广任务' },
|
||||
component: () => import('@/pages/syj/promoteTask/index')
|
||||
},
|
||||
{
|
||||
path: 'promote/cashout',
|
||||
name: `${pre}cashout`,
|
||||
meta: { auth: ['syj-promote-cashout'], title: '提前兑现审核' },
|
||||
component: () => import('@/pages/syj/cashout/index')
|
||||
},
|
||||
{
|
||||
path: 'promote/config',
|
||||
name: `${pre}config`,
|
||||
meta: { auth: ['syj-promote-config'], title: '任务配置' },
|
||||
component: () => import('@/pages/syj/config/index')
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user