1. 特色方功能迭代(固定价格),固定价格目前统一使用药品id(-102),后期会考虑新增特色方的时候自动添加一个特色方药品
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled

2. 退款的时候可以退回分成
This commit is contained in:
李琦
2026-07-06 18:12:12 +08:00
parent c02f685d83
commit 5620c39e1e
3 changed files with 14 additions and 0 deletions

View File

@@ -15,6 +15,13 @@ const adminRoleRoutes: RouteRecordRaw[] = [
path: '/system/admin/platform',
component: () => import('#/views/system/admin/platform/index.vue'),
},
{
meta: { title: '总部财务' },
name: 'SystemAdminHeadquartersFinance',
path: '/system/admin/headquarters-finance',
component: () =>
import('#/views/system/admin/headquarters-finance/index.vue'),
},
{
meta: { title: '省级管理员' },
name: 'SystemAdminProvince',

View File

@@ -17,6 +17,7 @@ export interface AdminRoleMeta {
export const ADMIN_ROLE_LIST: AdminRoleMeta[] = [
{ id: 1, title: '超级管理员', slug: 'super', formType: 'basic' },
{ id: 2, title: '系统管理员', slug: 'platform', formType: 'basic' },
{ id: 12, title: '总部财务', slug: 'headquarters-finance', formType: 'basic' },
{ id: 3, title: '省级管理员', slug: 'province', formType: 'address' },
{ id: 4, title: '市级管理员', slug: 'city', formType: 'address' },
{ id: 5, title: '区级管理员', slug: 'district', formType: 'address' },

View File

@@ -0,0 +1,6 @@
<script lang="ts" setup>
import AdminPage from '../_shared/admin-page.vue';
</script>
<template>
<AdminPage :role-id="12" />
</template>