diff --git a/src/components/mechanismTree/index.vue b/src/components/mechanismTree/index.vue index 935bac6b1..02d5fdd7a 100644 --- a/src/components/mechanismTree/index.vue +++ b/src/components/mechanismTree/index.vue @@ -49,7 +49,6 @@ 确定 - 取消 diff --git a/src/components/roleTree/index.vue b/src/components/roleTree/index.vue index 7650873aa..34cae976d 100644 --- a/src/components/roleTree/index.vue +++ b/src/components/roleTree/index.vue @@ -162,6 +162,11 @@ this.nodeList2.splice(b, 1) } } + for (let c = 0; c < this.roleList.length; c++) { + if (tag.id === this.roleList[c].id) { + this.roleList.splice(c, 1) + } + } }, handleCloseAll () { this.$msgbox({ diff --git a/src/pages/details/otherBussStandardDetails/index.vue b/src/pages/details/otherBussStandardDetails/index.vue index 15c7e1866..f06032758 100644 --- a/src/pages/details/otherBussStandardDetails/index.vue +++ b/src/pages/details/otherBussStandardDetails/index.vue @@ -363,14 +363,14 @@ title="下载" @click="downloadFile(file.id)" class="icon-download" - v-btn-permission="QFTP ? '9d42af4ee6d03b028eaa0c417532d79e' : '9882f477aad895ec56a7464f3e9c0b11'" + v-btn-permission="QFTP ? '7f13a22a53f9f76f56f5193f9a04389d' : '9882f477aad895ec56a7464f3e9c0b11'" /> @@ -384,13 +384,13 @@ title="下载" @click="downloadFile(file.id)" class="icon-download" - v-btn-permission="QFTP ? '9d42af4ee6d03b028eaa0c417532d79e' : '9882f477aad895ec56a7464f3e9c0b11'" + v-btn-permission="QFTP ? '7f13a22a53f9f76f56f5193f9a04389d' : '9882f477aad895ec56a7464f3e9c0b11'" /> diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index a2d73c309..16579d0bd 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -954,7 +954,6 @@ 数据加载中... - 0) { - this.editResolveListShowflag = true - let editItem = JSON.parse(JSON.stringify(this.selectedItemList[0])) - this.resolveListForm = editItem + this.resolveListForm = JSON.parse(JSON.stringify(this.selectedItemList[0])) this.resolveListForm.termsConditions = this.resolveListForm.termsConditions ? this.resolveListForm.termsConditions.replace(/<.*?>/ig, ' ') : '' // this.resolveListForm.readContent = this.readContent?this.readContent.replace(/<.*?>/ig, ' '):'' this.resolveListForm.xccssrq = this.resolveListForm.xccssrq ? this.resolveListForm.xccssrq.split(',') : '' this.resolveListForm.zccssrq = this.resolveListForm.zccssrq ? this.resolveListForm.zccssrq.split(',') : '' + this.editResolveListShowflag = true } else { this.$message.warning('请选择一条数据') } @@ -2832,6 +2829,8 @@ export default { ) }, resetEditResolveListForm() { + this.resolveListForm.applyArctic = '' + this.resolveListForm.dutyEngineer = '' this.editResolveListShowflag = false }, // 分页点击后方法 @@ -2851,7 +2850,6 @@ export default { this.$http.get('sarStandardsInfo/sar-standards-info/getStandInfoById', {id: this.sarStandardsInfoEO.id}, { _this: this }, res => { - console.log(res.data); this.sarStandardsInfoEO = res.data || {} this.itemExistList = this.sarStandardsInfoEO.attrInfoMap.itemExistList; if (this.sarStandardsInfoEO.issueTime != null && this.sarStandardsInfoEO.issueTime !== '') { @@ -3114,7 +3112,9 @@ export default { } }, showItemsModel(attField) { - this.fileType = attField + if (attField) { + this.fileType = attField + } this.getOrgTreeSource() this.selectedItemList = [] this.selectSarStandItems() @@ -3846,7 +3846,6 @@ export default { } }) this.dynamicFormField = displayLocation - console.log(displayLocation); }) sessionStorage.setItem('displayLocation', JSON.stringify(displayLocation)) this.loading = false diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index 2059cd1d5..fcc7c33b0 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -71,8 +71,7 @@
- + @@ -965,8 +964,7 @@ - + @@ -1080,19 +1078,18 @@
- + {{ opt.label }} - - @@ -1621,15 +1618,13 @@ + :maxlength="100"> + :maxlength="500"> @@ -1641,8 +1636,7 @@ + clearable> {{ opt.label }} @@ -1654,11 +1648,10 @@ + @click.native="BZTXhandle"> - + @@ -1681,7 +1674,6 @@ @@ -1689,8 +1681,7 @@ + :placeholder="$t('m.searchAccordingToStandardEnglishName')" clearable :maxlength="500"> @@ -1706,8 +1697,7 @@ - + {{ opt.label }} @@ -1779,8 +1769,7 @@ - + {{ opt.label }} @@ -1788,8 +1777,7 @@ - + {{ opt.label }} @@ -1863,30 +1851,26 @@ + placeholder=" 关联模块--乘用车VPPS编码"> + placeholder="关联模块--乘用车VPPS中文名称"> + placeholder="模块结构单元名称"> - + {{ opt.label }} @@ -1965,21 +1949,18 @@ + placeholder="关联模块--卡车VPPS编码"> + placeholder="关联模块--卡车VPPS中文名称"> + placeholder="模块结构单元变型号"> @@ -1994,13 +1975,11 @@ + clearable :maxlength="100"> - + @@ -2012,14 +1991,12 @@ - + + placeholder="根据被引用标准查找"> diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue index d8089bb40..9fe8e825a 100644 --- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue +++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue @@ -72,17 +72,17 @@ - + - + - + @@ -96,12 +96,12 @@ - + - + @@ -143,7 +143,7 @@ - + {{ opt.label }} @@ -152,14 +152,14 @@ - + - + {{ opt.label }} @@ -168,7 +168,7 @@ - + {{ opt.label }} @@ -188,10 +188,10 @@ - + - + --> - @@ -858,7 +858,7 @@ - + + placeholder="请输入企标编号">
- + + width="150"> diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue index cb73424f5..2acea0c66 100644 --- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue @@ -67,7 +67,7 @@
- + + :maxlength="100"> + :maxlength="500"> @@ -503,8 +501,7 @@ - + {{ opt.label }} @@ -527,20 +524,17 @@ + :placeholder="$t('m.searchAccordingToStandardEnglishName')" clearable :maxlength="500"> - + {{ opt.label }} @@ -557,8 +551,7 @@ + placeholder="根据被标签查找"> @@ -694,20 +687,17 @@ + placeholder="关联模块--乘用车VPPS中文名称"> + placeholder="关联模块--卡车VPPS中文名称"> + placeholder="模块结构单元名称"> @@ -778,20 +768,17 @@ + placeholder=" 关联模块--乘用车VPPS编码"> + placeholder="关联模块--卡车VPPS编码"> + placeholder="模块结构单元变型号"> @@ -806,13 +793,11 @@ + clearable :maxlength="100"> - + @@ -824,8 +809,7 @@ + placeholder="根据被引用标准查找"> @@ -1339,8 +1323,7 @@ - + @@ -1452,15 +1435,14 @@
- + {{ opt.label }} -