From b541e8ae615eb6ca210ffcca8d117f690977afbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=8E=89=E5=BC=BA?= <875626088@qq.com> Date: Mon, 9 Oct 2023 09:56:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=95=86=E5=AE=B6=E8=AF=A6?= =?UTF-8?q?=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/api/shop.js | 26 +++ .../organization/components/aisleInfo.vue | 153 ++++++++++-------- src/views/organization/shop_detail.vue | 133 +++++++++++---- 4 files changed, 214 insertions(+), 100 deletions(-) diff --git a/package.json b/package.json index b7b41ed..e618973 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vue-admin", "private": true, - "version": "1.2.25", + "version": "1.2.26", "type": "module", "scripts": { "dev": "vite", diff --git a/src/api/shop.js b/src/api/shop.js index 3b530ca..c16a86d 100644 --- a/src/api/shop.js +++ b/src/api/shop.js @@ -198,3 +198,29 @@ export function messageChannel(userId, merchantCode) { url: `/merchantChannel/messageChannel/${userId}/${merchantCode}` }) } + +/** + * ip记录 + * @param {*} data + * @returns + */ +export function userIpPage(params) { + return request({ + method: 'get', + url: `/merchantChannel/userIpPage`, + params + }) +} + +/** + * 后台进件 + * @param {*} params + * @returns + */ +export function manualMerchantIncom(params) { + return request({ + method: 'get', + url: `/merchantChannel/manualMerchantIncom`, + params + }) +} \ No newline at end of file diff --git a/src/views/organization/components/aisleInfo.vue b/src/views/organization/components/aisleInfo.vue index 2cdc9c8..696ef32 100644 --- a/src/views/organization/components/aisleInfo.vue +++ b/src/views/organization/components/aisleInfo.vue @@ -1,92 +1,109 @@