diff --git a/index.html b/index.html index d15ead4..a7c8d03 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + diff --git a/src/api/shop.js b/src/api/shop.js index 39ee74a..07f7b28 100644 --- a/src/api/shop.js +++ b/src/api/shop.js @@ -273,3 +273,16 @@ export function updateAuthentication(params) { }) } +/** + * 收银点列表 + * @param {*} data + * @returns + */ +export function queryMerchantCashPlace(params) { + return request({ + method: 'get', + url: '/agency/queryMerchantCashPlace', + params + }) +} + diff --git a/src/router/routes.js b/src/router/routes.js index 90a8e45..a4c13ec 100644 --- a/src/router/routes.js +++ b/src/router/routes.js @@ -420,6 +420,25 @@ export const asyncRoutes = [ title: '创客申请', icon: 'User' } + }, + { + path: '/shop_manage/cashier_dot', + component: () => import('@/views/organization/cashier_dot.vue'), + meta: { + title: '收银点列表', + icon: 'PieChart', + roles: ['MG'] + } + }, + { + path: '/shop_manage/cashierdot_detail', + name: 'cashierdot_detail', + component: () => import('@/views/organization/cashierdot_detail.vue'), + meta: { + title: '详情', + isHide: true, + activeMenu: '/shop_manage/cashier_dot' + } } ] }, diff --git a/src/views/organization/cashier_dot.vue b/src/views/organization/cashier_dot.vue new file mode 100644 index 0000000..effd4bf --- /dev/null +++ b/src/views/organization/cashier_dot.vue @@ -0,0 +1,107 @@ + + + \ No newline at end of file diff --git a/src/views/organization/cashierdot_detail.vue b/src/views/organization/cashierdot_detail.vue new file mode 100644 index 0000000..9f901be --- /dev/null +++ b/src/views/organization/cashierdot_detail.vue @@ -0,0 +1,270 @@ + + + + + \ No newline at end of file diff --git a/src/views/organization/components/UploadCard.vue b/src/views/organization/components/UploadCard.vue index f36fcc3..d3c2fe1 100644 --- a/src/views/organization/components/UploadCard.vue +++ b/src/views/organization/components/UploadCard.vue @@ -1,6 +1,17 @@