From a44b2a4a0ab4f9aff6242de4ecaf2f8caf44ed9d Mon Sep 17 00:00:00 2001 From: zhutianqi Date: Wed, 8 Dec 2021 10:39:40 +0800 Subject: [PATCH] commit --- .../pages/technologyInvolveProject.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/technologyInvolveProject.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/technologyInvolveProject.vue index 6f7adfa0b..ccf456ccf 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/technologyInvolveProject.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/technologyInvolveProject.vue @@ -173,6 +173,7 @@ style="width: 100%" border :height="sarProStateTableHeight" + :default-sort = "{prop: 'specificItem', order: 'ascending'}" :header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px', fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}"> @@ -258,6 +261,8 @@ name: "technologyInvolveProject", data () { return { + itemType: false, + interpretationTime: '', riskDegreeModal: false, editData: {}, riskDegree: '', @@ -392,6 +397,7 @@ }, // 外层清空条件查询 handleProjectCompliance (row) { this.standId = row.standId + this.interpretationTime = row.interpretationTime this.querySarProStateZero() }, querySarProStateZeroBtn(){ @@ -405,6 +411,7 @@ form.standId = this.standId form.current = this.sarProStateTotalPage form.size = this.sarProStatePageSize + form.interpretationTime = this.interpretationTime this.$http.get('sarStandardComplianceAssessResult/interpretation', form, { _this: this, loading: 'loading' @@ -412,6 +419,11 @@ if (res.ok) { this.sarProStateListDatas = res.data.records this.sarProStateTotal = res.data.total + if (res.data.records[0].coreTechnicalRequirement) { + this.itemType = true + } else { + this.itemType = false + } } }) this.showSarProStateModal = true