feat: add syj promote workflow

This commit is contained in:
apple
2026-05-03 14:44:12 +08:00
parent 12c2431d4e
commit 0e07a65e3f
36 changed files with 1972 additions and 1 deletions

View 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')
}
]
};