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; +} 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" > @@ -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)" > 点击上传 @@ -369,7 +370,7 @@ export default { nodeList: [], formRules: { lawsNo: [ - { required: true, message: '请输入政策文号', trigger: 'change' }, + // { required: true, message: '请输入政策文号', trigger: 'change' }, ], lawsName: [ { required: true, message: '请输入政策名称', trigger: 'change' }, @@ -548,6 +549,11 @@ export default { } }, methods: { + //跳转到政策详情 + goDeatil(){ + if(this.dataForm.linkUrl) + window.open(this.dataForm.linkUrl,'_blank') + }, handlePreview (file) { let attId = '' if (file && file.id) { @@ -566,6 +572,7 @@ export default { this.dataForm.lawsNo = row.lawsNo this.dataForm.lawsName = row.lawsName this.dataForm.lawsId = row.id + this.dataForm.linkUrl=row.lawsDetailLink this.dataForm = { ...this.dataForm } }, handleSearchStandard () { @@ -1067,4 +1074,10 @@ export default { .addButton { display: inline-block; } + .cursor-poin { + /deep/ .el-input .el-input__inner{ + cursor: pointer !important; + color: #0c91e5 !important; + } + }