diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
index 688a29fde..303d501de 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
@@ -503,16 +503,16 @@
+ v-model="sarAccessInfo.seniorStandNumber"
+ :placeholder="'请输入' + standLabelNum"/>
+ v-model="sarAccessInfo.seniorLawsNumber"
+ :placeholder="'请输入' + standLabelNum"/>
+ v-model="sarAccessInfo.seniorStandCode"
+ :placeholder="'请输入' + standLabelNum"/>
@@ -845,9 +845,14 @@ export default {
id: '',
standName: '',
standNumber: '',
+ lawsNumber: '',
standCode: '', // 政策编号
textStatus: '',
+ seniorStandNumber: '',
+ seniorLawsNumber: '',
+ seniorStandCode: '',
+
textStatusBuss: '',
CLLX: '',
SYRZ: '',
@@ -1032,7 +1037,7 @@ export default {
}*/
this.sarAccessInfo = formData
this.showQueryMore = false
- this.selectLawsStands()
+ this.selectLawsStands(1)
},
// 删除上传的文件
@@ -1508,9 +1513,20 @@ export default {
}
})
},
- pageInfo() {
+ pageInfo(type) {
if (this.sarAccessInfo.dataSource === 'INLAND_STAND' || this.sarAccessInfo.dataSource === 'FOREIGN_STAND') {
- StandardsInfoPage((this.sarAccessInfo)).then(res => {
+ if (type === 1) {
+ delete this.sarAccessInfo.standNumber
+ delete this.sarAccessInfo.lawsNumber
+ delete this.sarAccessInfo.standCode
+ }
+ console.log('this.sarAccessInfo===' , this.sarAccessInfo)
+ StandardsInfoPage(type === 1 ? ({...this.sarAccessInfo, standNumber: this.sarAccessInfo.seniorStandNumber, lawsNumber: this.sarAccessInfo.seniorLawsNumber, standCode: this.sarAccessInfo.seniorStandCode}) : (this.sarAccessInfo)).then(res => {
+ // if (type === 1) {
+ // this.sarAccessInfo.standNumber = ''
+ // this.sarAccessInfo.lawsNumber = ''
+ // this.sarAccessInfo.standCode = ''
+ // }
this.sarAccessInfoSearchList = res.data.list
this.sarAccessInfoSearchList.forEach(item => {
if (item.standYear === null) {
@@ -1544,20 +1560,20 @@ export default {
})
}
},
- // 查询数据搜索 table 数据
- selectLawsStands() {
+ // 查询数据搜索 table 数据 type === 1为高级搜索
+ selectLawsStands(type) {
if (this.sarAccessInfo.dataSource === 'INLAND_STAND') {
this.sarAccessInfo.standType = 'INLAND'
- this.pageInfo()
+ this.pageInfo(type)
} else if (this.sarAccessInfo.dataSource === 'FOREIGN_STAND') {
this.sarAccessInfo.standType = 'FOREIGN'
- this.pageInfo()
+ this.pageInfo(type)
} else if (this.sarAccessInfo.dataSource === 'FOREIGN_LAWS') {
this.sarAccessInfo.standType = 'LAWS'
- this.pageInfo()
+ this.pageInfo(type)
} else if (this.sarAccessInfo.dataSource === 'BUSINESS') {
this.sarAccessInfo.standType = 'BUSINESS'
- this.pageInfo()
+ this.pageInfo(type)
}
},