From 51a8354a37b7dab353f55b4a51a2773179443cf0 Mon Sep 17 00:00:00 2001 From: wxyclub Date: Fri, 28 Jun 2024 15:27:48 +0800 Subject: [PATCH 1/4] =?UTF-8?q?fix:=20=E4=B8=8A=E6=A0=87=E4=B8=8B=E8=A1=A8?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 75d3b7ce4..b3379b5a4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -463,5 +463,10 @@ bottom: 20px; z-index: 1000; } - +sup{ + vertical-align: super!important; +} +sub{ + vertical-align: sub!important; +} From dba65e32a84bc2a1007e9be6f38ad3ed2143329f Mon Sep 17 00:00:00 2001 From: zhoulingpo Date: Mon, 1 Jul 2024 14:37:37 +0800 Subject: [PATCH 2/4] =?UTF-8?q?[=E4=BF=AE=E6=94=B9]=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E6=9C=80=E5=A4=A7=E4=B8=BA3000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzjd/step1.vue | 4 ++-- src/pages/processCenter/pages/creatProcess/bzjd/step3.vue | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue index 2557862b0..fdc00048c 100644 --- a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue @@ -473,7 +473,7 @@ type="textarea" v-model="plForm.changePoint" placeholder="请输入国内标准的差异点" - maxlength="1000" + maxlength="3000" :autosize="{minRows:10,maxRows:10}" > @@ -483,7 +483,7 @@ :autosize="{ minRows: 4, maxRows: 14}" v-model="plForm.changePoint" placeholder="请输入上一版本差异点" - maxlength="500" + maxlength="3000" > @@ -329,7 +329,7 @@ :autosize="{ minRows: 4, maxRows: 14}" v-model="plForm.changePoint" placeholder="请输入上一版本差异点" - maxlength="500" + maxlength="3000" > @@ -423,7 +423,7 @@ :autosize="{ minRows: 4, maxRows: 14}" v-model="editForm.changePoint" placeholder="请输入上一版本差异点" - maxlength="500" + maxlength="3000" > Date: Mon, 1 Jul 2024 14:41:26 +0800 Subject: [PATCH 3/4] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91?= =?UTF-8?q?=E6=94=BF=E7=AD=96=E6=96=87=E5=8F=B7=E4=B8=8D=E5=BF=85=E5=A1=AB?= =?UTF-8?q?=20=E5=90=8D=E7=A7=B0=E5=8F=AF=E8=B7=B3=E8=BD=AC=20=E6=A8=A1?= =?UTF-8?q?=E7=89=88=E4=B8=8A=E6=AC=A1pdf?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../creatProcess/policyConsultation/index.vue | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue index f52fb3e48..d2e97289d 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue @@ -66,13 +66,14 @@ @@ -166,7 +167,7 @@ type="primary" class="common-button-primary" size="mini" - @click="fileUpload('templateFileList','templateFileId','.zip,.docx,.doc,.xls,.xlsx',200)" + @click="fileUpload('templateFileList','templateFileId','.zip,.docx,.doc,.xls,.xlsx,.pdf',200)" > 点击上传 @@ -361,6 +362,7 @@ export default { }, data () { return { + linkUrl:'',//调准页面 active: '1', accept: '', fileMax_M: 0, @@ -369,7 +371,7 @@ export default { nodeList: [], formRules: { lawsNo: [ - { required: true, message: '请输入政策文号', trigger: 'change' }, + // { required: true, message: '请输入政策文号', trigger: 'change' }, ], lawsName: [ { required: true, message: '请输入政策名称', trigger: 'change' }, @@ -548,6 +550,11 @@ export default { } }, methods: { + //跳转到政策详情 + goDeatil(){ + if(this.linkUrl) + window.open(this.linkUrl,'_blank') + }, handlePreview (file) { let attId = '' if (file && file.id) { @@ -566,6 +573,7 @@ export default { this.dataForm.lawsNo = row.lawsNo this.dataForm.lawsName = row.lawsName this.dataForm.lawsId = row.id + this.linkUrl=row.lawsDetailLink this.dataForm = { ...this.dataForm } }, handleSearchStandard () { @@ -1067,4 +1075,10 @@ export default { .addButton { display: inline-block; } + .cursor-poin { + /deep/ .el-input .el-input__inner{ + cursor: pointer !important; + color: #0c91e5 !important; + } + } From 228c4553f8a1f98b1b807c43be8ca29e35718653 Mon Sep 17 00:00:00 2001 From: zhoulingpo Date: Mon, 1 Jul 2024 15:17:06 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91?= =?UTF-8?q?=E5=AD=98=E5=82=A8linkUrl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/creatProcess/policyConsultation/index.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue index d2e97289d..c01729f56 100644 --- a/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue +++ b/src/pages/processCenter/pages/creatProcess/policyConsultation/index.vue @@ -362,7 +362,6 @@ export default { }, data () { return { - linkUrl:'',//调准页面 active: '1', accept: '', fileMax_M: 0, @@ -552,8 +551,8 @@ export default { methods: { //跳转到政策详情 goDeatil(){ - if(this.linkUrl) - window.open(this.linkUrl,'_blank') + if(this.dataForm.linkUrl) + window.open(this.dataForm.linkUrl,'_blank') }, handlePreview (file) { let attId = '' @@ -573,7 +572,7 @@ export default { this.dataForm.lawsNo = row.lawsNo this.dataForm.lawsName = row.lawsName this.dataForm.lawsId = row.id - this.linkUrl=row.lawsDetailLink + this.dataForm.linkUrl=row.lawsDetailLink this.dataForm = { ...this.dataForm } }, handleSearchStandard () {