From 20e36a0f5aeef8b7a4c7b36cb62e72a3c0cd1116 Mon Sep 17 00:00:00 2001 From: 13713575202 <1345916905@qq.com> Date: Tue, 27 May 2025 09:40:19 +0800 Subject: [PATCH 1/2] xiabin --- main/src/micro/app.js | 8 ++++---- main/src/views/index.vue | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/main/src/micro/app.js b/main/src/micro/app.js index d0af37c..09a389f 100644 --- a/main/src/micro/app.js +++ b/main/src/micro/app.js @@ -18,10 +18,10 @@ export const leftApps = [ icon: 'images/platform/icon-admin.png', }, { - name: 'sub-app', + name: 'sub-app2', entry: VITE_APP_SUB_GAS, activeRule: '/sub-app', - title: 'APP2', + title: 'APP', icon: 'images/platform/icon-app.png', }, { @@ -49,10 +49,10 @@ export const rightApps = [ icon: 'images/platform/icon-admin.png', }, { - name: 'sub-app', + name: 'sub-app1', entry: VITE_APP_SUB_GAS, activeRule: '/sub-app', - title: 'APP1', + title: 'APP', icon: 'images/platform/icon-app.png', }, { diff --git a/main/src/views/index.vue b/main/src/views/index.vue index 558f472..d2557a2 100644 --- a/main/src/views/index.vue +++ b/main/src/views/index.vue @@ -36,9 +36,9 @@ import { getAssetsFile } from '@/utils'; const gotoPage = (row) => { // window.history.pushState({}, row.name, row.activeRule); - if (row.title == 'APP1') { + if (row.name == 'sub-app1') { window.location.href = 'https://www.pgyer.com/MXd3uUrO'; - } else if (row.title == 'APP2') { + } else if (row.name == 'sub-app2') { window.location.href = 'https://www.pgyer.com/4SVVtpob'; } else { window.location.href = row.activeRule; From 7be265d84ff4d1c432b8abd9ac22f0be2b831e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=88=E9=B8=BF?= Date: Tue, 27 May 2025 09:49:55 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=94=BF=E5=8A=A1=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/apis/businessEntity/index.js | 6 ++--- .../productOperateMain/individual/index.vue | 26 ------------------- 2 files changed, 2 insertions(+), 30 deletions(-) diff --git a/sub-government-affairs-service/src/apis/businessEntity/index.js b/sub-government-affairs-service/src/apis/businessEntity/index.js index c0b8616..eb2d682 100644 --- a/sub-government-affairs-service/src/apis/businessEntity/index.js +++ b/sub-government-affairs-service/src/apis/businessEntity/index.js @@ -29,13 +29,11 @@ export function editBusinessSubject(data) { * 生产经营主体 - 分页查询 * @param {Object} params 查询参数 */ -export function fetchBusinessSubjectList(query) { +export function fetchBusinessSubjectList(params) { return request({ url: '/product-business/business/businessPage', method: 'get', - params: { - businessSubjectQuery: JSON.stringify(query), - }, + params, }); } diff --git a/sub-government-affairs-service/src/views/productOperateMain/individual/index.vue b/sub-government-affairs-service/src/views/productOperateMain/individual/index.vue index b48cf6b..a46ebde 100644 --- a/sub-government-affairs-service/src/views/productOperateMain/individual/index.vue +++ b/sub-government-affairs-service/src/views/productOperateMain/individual/index.vue @@ -245,32 +245,6 @@ const rowUpdate = (row, index, done, loading) => { }); }; -// 删除 -// const rowDel = (row, index, done) => { -// if (isEmpty(row)) return; -// app -// .$confirm(`删除后信息将不可查看,确认要删除吗?`, '确定删除', { -// confirmButtonText: '确定', -// cancelButtonText: '取消', -// type: 'warning', -// }) -// .then(() => { -// console.info('删除', row.recordId); -// delOperationRecord(row.recordId || '') -// .then((res) => { -// if (res.code === 200) { -// app.$message.success('删除成功!'); -// loadData(); -// done(); -// } -// }) -// .catch((err) => { -// app.$message.error(err.msg); -// }); -// }) -// .catch(() => {}); -// }; - const onBatchDel = () => { let ids = handleIds(); if (!ids.length || ids.length <= 0) {