diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/businessDetails.vue b/src/pages/regulatoryRepository/nonConfomity/pages/businessDetails.vue index 8563f747d..075d19a30 100644 --- a/src/pages/regulatoryRepository/nonConfomity/pages/businessDetails.vue +++ b/src/pages/regulatoryRepository/nonConfomity/pages/businessDetails.vue @@ -9,62 +9,82 @@
- + - - - + - - - -
- - -
-
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + size="mini" + v-btn-permission="'aff4a409c3c3856986c535a5f4782b13'" + @click="searchSarAccessBtn('')"> 查询 清空 @@ -74,15 +94,14 @@
数据获取中 - - - - - + + prop="timeoutSituation" + width="150" + label="SOP时间超过法规时限的空档期的业务应对方案"> - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + +
- + { + let arr = res.data.records; + this.sarAccessListDatas = arr + this.tableLoading = false + this.sarAccessListTotal = res.data.total + }, e => { + }); + }, openFileInPdf(attId, oldFileName) { // 缺少文件 if (this.$hasPermission('ZWBGBNTL11')) { @@ -574,12 +631,13 @@ export default { }, // 分页事件 pageChange(page) { - this.pageNo = page - this.getTableBtn() + this.sarSarAccessEOSearch.page = page + this.searchSarAccess() }, pageSizeChange(pageSize) { - this.pageSize = this.$store.getters.userInfo.configContent - this.getTableBtn() + this.sarSarAccessEOSearch.page = 1 + this.sarSarAccessEOSearch.pageSize = this.$store.getters.userInfo.configContent + this.searchSarAccess() }, back() { this.$router.push({ @@ -627,15 +685,24 @@ export default { this.historySearch.responseUnit = treeNode.id this.historySearch.responseUnitShow = treeNode.name }, - // 点击清空按钮事件 - clearAllSearch() { - this.historySearch = { - standNumOrName: '', - quesType: '', - productName: '', - responseUnit: '' +// 清空 查询条件 + clearAllSearch(search = true) { + this.sarSarAccessEOSearch = { + lawNumOrName: '', // 编号/名称 + productType: '', // 产品类型 + responseDept: '', // 责任部门 + lawNumber: '', + lawName: '', + accessContent: '', + energyKind: '', + applyArctic: '', + region: '', + page: 1, + pageSize: this.$store.getters.userInfo.configContent, + validFlag: 0 } - this.getTableBtn() + this.searchSarAccessBtn() + console.log(this.sarSarAccessEOSearch) }, /** * @Description: 跳转流程 @@ -651,8 +718,10 @@ export default { } }, mounted() { - this.getTableBtn() - this.getOrgTreeSource() + // this.getTableBtn() + // this.getOrgTreeSource() + // 分页查询数据 + this.searchSarAccess() } }