diff --git a/src/api/ydoyun/storeuser/index.ts b/src/api/ydoyun/storeuser/index.ts index 9e95b7d..3a4980b 100644 --- a/src/api/ydoyun/storeuser/index.ts +++ b/src/api/ydoyun/storeuser/index.ts @@ -12,6 +12,10 @@ export interface StoreUser { password?: string // 密码 mobile?: string // 手机号码 status?: number // 状态 + /** 角色名称(逗号拼接,列表接口返回) */ + roleNames?: string + /** 门店名称(列表接口返回) */ + storeName?: string } // 门店-用户绑定 API diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index af47fb1..39a10c0 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -757,93 +757,6 @@ const remainingRouter: AppRouteRecordRaw[] = [ } ] }, - { - path: '/reports', - component: Layout, - name: 'Reports', - meta: { - hidden: false, - title: '数据报表' - }, - children: [ - { - path: 'sales-daily', - name: 'SalesDailyAI', - meta: { - title: '销售日报', - icon: 'ep:calendar', - noCache: true, - hidden: false - }, - component: () => import('@/views/ydoyun/report/salesdaily/index.vue') - }, - { - path: 'lijun/category-diagnostic', - name: 'CategoryDiagnostic', - meta: { - title: '品类诊断', - noCache: true, - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/components/categoryCardListComponents.vue') - }, - { - path: 'lijun/supplier-ranking', - name: 'SupplierRanking', - meta: { - title: '供货商销售排行', - noCache: true, - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/components/SupplierRanking.vue') - }, - { - path: 'lijun/supplier-performance', - name: 'SupplierPerformance', - meta: { - title: '供应商详情', - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/components/SupplierPerformancePage.vue') - }, - { - path: 'lijun/middle-class-ranking', - name: 'MiddleClassRanking', - meta: { - title: '中类销售排名', - noCache: true, - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/components/MiddleClassRanking.vue') - }, - { - path: 'lijun/product-cards', - name: 'ProductCards', - meta: { - title: '查看更多产品卡片', - noCache: true, - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/components/ProductCardsPage.vue') - }, - { - path: 'lijun/reportpage6/detail', - name: 'ProductDetailPage', - meta: { - title: '商品明细详情', - noCache: true, - hidden: true, - canTo: true - }, - component: () => import('@/views/ydoyun/report/lijun/reportpage6/detail.vue') - } - ] - }, { path: '/ydoyuntag', component: Layout, diff --git a/src/views/ydoyun/store/StoreTree.vue b/src/views/ydoyun/store/StoreTree.vue index b6df557..fb455ab 100644 --- a/src/views/ydoyun/store/StoreTree.vue +++ b/src/views/ydoyun/store/StoreTree.vue @@ -18,13 +18,13 @@