From 914f1bc4fd2708e7a5f9c895b4bd6718066c307d Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 14:29:57 +0800 Subject: [PATCH 01/16] BUG 27964 --- .../xiushan/apps/AppPortalUserManager/pumDetail.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/project/xiushan/apps/AppPortalUserManager/pumDetail.vue b/project/xiushan/apps/AppPortalUserManager/pumDetail.vue index e248d598..0478b948 100644 --- a/project/xiushan/apps/AppPortalUserManager/pumDetail.vue +++ b/project/xiushan/apps/AppPortalUserManager/pumDetail.vue @@ -72,17 +72,19 @@ export default { computed: { isAuthing() { return this.detail.status == "0" + }, + rules(){ + return { + auditStatus: [{required: true, message: "请选择审批结果"}], + auditDescription: [{validator: (r, v, cb) => this.form.auditStatus == 2 && !v ? cb("请输入审批意见") : cb()}], + } } }, data() { return { dialog: false, detail: {}, - form: {}, - rules: { - auditStatus: [{required: true, message: "请选择审批结果"}], - auditDescription: [{validator: (r, v, cb) => this.form.auditStatus == 2 && !v ? cb("请输入审批意见") : cb()}], - } + form: {} } }, methods: { From 29c6d31eca8b015454497a74a0e78440be7e6d5a Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 14:53:20 +0800 Subject: [PATCH 02/16] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xiushan/apps/finance/AppFinanceProduct/productAdd.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue index 4d72a246..6b188ad6 100644 --- a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue +++ b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue @@ -11,16 +11,16 @@ - + - + - + - + Date: Wed, 2 Mar 2022 15:45:38 +0800 Subject: [PATCH 03/16] BUG 27969 --- .../apps/financing/AppFinancingNeeds/needsDetail.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue b/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue index 5c774979..5a17cfa9 100644 --- a/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue +++ b/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue @@ -21,7 +21,15 @@ dict.getLabel('financialFundPurpose', detail.fundPurpose) }} - {{ detail.enterpriseName }} + + + {{ detail.enterpriseName }} + + 企业详情 + + + {{ detail.name }} {{ detail.areaName }} {{ detail.phone }} From fcc4518cb15e73af03f06a3b5fdaff5d4f52fac5 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 15:56:24 +0800 Subject: [PATCH 04/16] BUG 27970 --- .../xiushan/apps/finance/AppFinanceProduct/productList.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue index 49a297ff..1d7d2c57 100644 --- a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue +++ b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue @@ -25,7 +25,7 @@ - + @@ -40,7 +40,8 @@ 详情 From b9d07f88c88f39450fa2ebc01904b23f6fba4fb5 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 16:45:47 +0800 Subject: [PATCH 05/16] BUG 27972 --- project/xiushan/apps/AppNewsCenter/components/addArticle.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue index 789f338d..fcf20aa0 100644 --- a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue +++ b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue @@ -67,7 +67,7 @@ export default { description: {required: true, message: '请输入摘要', trigger: 'blur'}, category: {required: true, message: '请选择分类', trigger: 'change'}, content: {required: true, message: '请填写内容', trigger: 'blur'}, - thumbUrl: {required: true, message: '请上传封面', trigger: 'blur'}, + // thumbUrl: {required: true, message: '请上传封面', trigger: 'blur'}, }, cropOps: { fixedNumber: [1.8, 1], From 4d30281c5bbd47ac981eb3cb6c6b2b09c3c85a29 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 17:25:35 +0800 Subject: [PATCH 06/16] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppNativeAppVersion.vue | 465 ++++++++++++++++++ 1 file changed, 465 insertions(+) create mode 100644 project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue diff --git a/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue b/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue new file mode 100644 index 00000000..eb91de93 --- /dev/null +++ b/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue @@ -0,0 +1,465 @@ + + + + + From 66093030c2946cdaa7e0d600f7b2cbd91b4891f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BB=95=E4=BC=9F?= <499672082@qq.com> Date: Wed, 2 Mar 2022 17:43:28 +0800 Subject: [PATCH 07/16] 27979 --- .../xiushan/apps/AppNewsCenter/components/addArticle.vue | 7 ++++++- project/xiushan/apps/AppNewsCenter/components/addVideo.vue | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue index fcf20aa0..03baa566 100644 --- a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue +++ b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue @@ -130,7 +130,12 @@ export default { this.articInfo.title = res.data.title; this.articInfo.content = res.data.content; this.articInfo.category = res.data.category - this.articInfo.thumbUrl = [{url: res.data.thumbUrl}] + if (res.data.thumbUrl) { + this.articInfo.thumbUrl = [{url: res.data.thumbUrl}] + } else { + this.articInfo.thumbUrl = [] + } + } }) } diff --git a/project/xiushan/apps/AppNewsCenter/components/addVideo.vue b/project/xiushan/apps/AppNewsCenter/components/addVideo.vue index fdf3c890..663b5f84 100644 --- a/project/xiushan/apps/AppNewsCenter/components/addVideo.vue +++ b/project/xiushan/apps/AppNewsCenter/components/addVideo.vue @@ -169,7 +169,11 @@ export default { this.newsInfo.description = res.data.description; this.newsInfo.category = res.data.category this.newsInfo.videoUrl = res.data.videoUrl; - this.newsInfo.thumbUrl = [{url: res.data.thumbUrl}]; + if (res.data.thumbUrl) { + this.newsInfo.thumbUrl = [{url: res.data.thumbUrl}] + } else { + this.newsInfo.thumbUrl = [] + } } }) } From 55a0e44d79d8c1e3f0199505213b3f68ddca8ed5 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 17:45:33 +0800 Subject: [PATCH 08/16] BUG 27980 --- project/xiushan/apps/AppNewsCenter/components/newsDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/xiushan/apps/AppNewsCenter/components/newsDetail.vue b/project/xiushan/apps/AppNewsCenter/components/newsDetail.vue index 621d92b3..bb33c6ae 100644 --- a/project/xiushan/apps/AppNewsCenter/components/newsDetail.vue +++ b/project/xiushan/apps/AppNewsCenter/components/newsDetail.vue @@ -21,7 +21,7 @@
封面: - +
From f9b623b53892958c51cf6e76791d5f78d8b7e32f Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 17:47:54 +0800 Subject: [PATCH 09/16] BUG 27978 --- project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue b/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue index 18adf09e..10115e67 100644 --- a/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue +++ b/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue @@ -93,9 +93,8 @@ export default { submitAddAcount() { this.$refs.addAccountForm.validate(v => { if (v) { - let {form: {logoUrl}} = this - this.form.logoUrl = logoUrl?.[0]?.url - this.instance.post("/appfinancialorganization/addOrUpdate", this.form).then(res => { + let {form: {logoUrl: logo}} = this, logoUrl = logo?.[0]?.url + this.instance.post("/appfinancialorganization/addOrUpdate", {...this.form, logoUrl}).then(res => { if (res?.code == 0) { this.$message.success("提交成功!") this.dialog = false From 93faabe2f56449c23589ecec6b743294812305bc Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 2 Mar 2022 18:04:24 +0800 Subject: [PATCH 10/16] =?UTF-8?q?=E8=A1=A5=E5=85=85=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E8=B7=B3=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/xiushan/apps/financing/AppGrabLog/grabDetail.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue b/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue index ce6e2ebf..31666046 100644 --- a/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue +++ b/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue @@ -19,7 +19,13 @@ {{ dict.getLabel('financialFundPurpose', detail.fundPurpose) }} - {{ detail.enterpriseName }} + + {{ detail.enterpriseName }} + + 企业详情 + + {{ detail.createUserName }} {{ detail.areaName }} {{ detail.phone }} From 38b46442aa5be5dac69ef182cfb5ac255a16b173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BB=95=E4=BC=9F?= <499672082@qq.com> Date: Wed, 2 Mar 2022 18:07:26 +0800 Subject: [PATCH 11/16] =?UTF-8?q?=E7=89=88=E6=9C=AC=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppNativeAppVersion.vue | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue b/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue index eb91de93..ebead7e6 100644 --- a/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue +++ b/project/xiushan/apps/AppNativeAppVersion/AppNativeAppVersion.vue @@ -52,10 +52,8 @@
@@ -225,19 +223,11 @@ export default { system: [ { value: '0', - label: '安卓' - }, - { - value: '1', label: '苹果' }, { - value: '2', - label: '评党课_安卓' - }, - { - value: '3', - label: '河镇镇_安卓' + value: '1', + label: '安卓' } ], recordCols: [ From 5883f4123ebaea3f71e28559507e501eeb14b6d5 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 3 Mar 2022 09:01:37 +0800 Subject: [PATCH 12/16] BUG 27987 --- project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue b/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue index fe4f60dc..eed6ae40 100644 --- a/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue +++ b/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue @@ -238,6 +238,7 @@ export default { if (res?.code == 0) { this.$message.success("提交成功!") this.accountDialog = false + this.getTableData(); } }) } From e3039012626228f4bc097494240d87fa7add2a4a Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 3 Mar 2022 10:06:28 +0800 Subject: [PATCH 13/16] BUG 27988 --- .../apps/AppAccountXiushan/AppAccountXiushan.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue b/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue index eed6ae40..fb9d8c91 100644 --- a/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue +++ b/project/xiushan/apps/AppAccountXiushan/AppAccountXiushan.vue @@ -35,7 +35,7 @@
- + - + + @@ -61,10 +62,8 @@ - + { + let areaFullName = this.dialogForm.areaName + this.instance.post("/user/empower", {...this.dialogForm, areaFullName}).then(res => { this.lock = false if (res?.code == 0) { this.dialog = false; From 31935a80b98e9f1ce9834b936fae3acc442ccdfe Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 3 Mar 2022 10:37:44 +0800 Subject: [PATCH 14/16] BUG 27996 --- .../finance/AppFinanceProduct/productAdd.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue index 6b188ad6..fd2126d4 100644 --- a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue +++ b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue @@ -11,16 +11,16 @@ - + - + - + - + From 2fb2334e1d9a316ac3aaf9892c020731840d12ac Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 3 Mar 2022 12:03:29 +0800 Subject: [PATCH 15/16] BUG 28002 --- project/xiushan/apps/AppNewsCenter/components/addArticle.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue index 03baa566..0de5085e 100644 --- a/project/xiushan/apps/AppNewsCenter/components/addArticle.vue +++ b/project/xiushan/apps/AppNewsCenter/components/addArticle.vue @@ -98,7 +98,7 @@ export default { * */ addOrUpdate(status) { if (Array.isArray(this.articInfo.thumbUrl)) { - this.articInfo.thumbUrl = this.articInfo.thumbUrl[0].url + this.articInfo.thumbUrl = this.articInfo.thumbUrl?.[0]?.url } const msg = +status ? '发布成功' : this.isEdit ? '编辑成功' : '保存成功'; this.instance.post(`/app/appnews/addOrUpdate`, { @@ -135,7 +135,7 @@ export default { } else { this.articInfo.thumbUrl = [] } - + } }) } From e3aef2c7f27028fd5225ee678223c731844243a0 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 3 Mar 2022 12:04:10 +0800 Subject: [PATCH 16/16] BUG 28004 --- project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue index 599f6f69..0245b681 100644 --- a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue +++ b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue @@ -5,7 +5,7 @@