commit
This commit is contained in:
+13
-1
@@ -173,6 +173,7 @@
|
|||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
border
|
border
|
||||||
:height="sarProStateTableHeight"
|
:height="sarProStateTableHeight"
|
||||||
|
:default-sort = "{prop: 'specificItem', order: 'ascending'}"
|
||||||
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
||||||
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}">
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -200,6 +201,7 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="specificItem"
|
prop="specificItem"
|
||||||
|
sortable
|
||||||
label="具体章条">
|
label="具体章条">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
@@ -208,12 +210,13 @@
|
|||||||
label="解读内容">
|
label="解读内容">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
|
v-if="itemType"
|
||||||
prop="coreTechnicalRequirement"
|
prop="coreTechnicalRequirement"
|
||||||
label="核心技术要求(简述、请勿抄写标准)">
|
label="核心技术要求(简述、请勿抄写标准)">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
v-if="sarProject.position === '1'"
|
v-if="sarProject.position === '1' && !itemType"
|
||||||
prop="comparedWithPrevious"
|
prop="comparedWithPrevious"
|
||||||
label="相对于上一版本变化点">
|
label="相对于上一版本变化点">
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@@ -258,6 +261,8 @@
|
|||||||
name: "technologyInvolveProject",
|
name: "technologyInvolveProject",
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
itemType: false,
|
||||||
|
interpretationTime: '',
|
||||||
riskDegreeModal: false,
|
riskDegreeModal: false,
|
||||||
editData: {},
|
editData: {},
|
||||||
riskDegree: '',
|
riskDegree: '',
|
||||||
@@ -392,6 +397,7 @@
|
|||||||
}, // 外层清空条件查询
|
}, // 外层清空条件查询
|
||||||
handleProjectCompliance (row) {
|
handleProjectCompliance (row) {
|
||||||
this.standId = row.standId
|
this.standId = row.standId
|
||||||
|
this.interpretationTime = row.interpretationTime
|
||||||
this.querySarProStateZero()
|
this.querySarProStateZero()
|
||||||
},
|
},
|
||||||
querySarProStateZeroBtn(){
|
querySarProStateZeroBtn(){
|
||||||
@@ -405,6 +411,7 @@
|
|||||||
form.standId = this.standId
|
form.standId = this.standId
|
||||||
form.current = this.sarProStateTotalPage
|
form.current = this.sarProStateTotalPage
|
||||||
form.size = this.sarProStatePageSize
|
form.size = this.sarProStatePageSize
|
||||||
|
form.interpretationTime = this.interpretationTime
|
||||||
this.$http.get('sarStandardComplianceAssessResult/interpretation', form, {
|
this.$http.get('sarStandardComplianceAssessResult/interpretation', form, {
|
||||||
_this: this,
|
_this: this,
|
||||||
loading: 'loading'
|
loading: 'loading'
|
||||||
@@ -412,6 +419,11 @@
|
|||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
this.sarProStateListDatas = res.data.records
|
this.sarProStateListDatas = res.data.records
|
||||||
this.sarProStateTotal = res.data.total
|
this.sarProStateTotal = res.data.total
|
||||||
|
if (res.data.records[0].coreTechnicalRequirement) {
|
||||||
|
this.itemType = true
|
||||||
|
} else {
|
||||||
|
this.itemType = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.showSarProStateModal = true
|
this.showSarProStateModal = true
|
||||||
|
|||||||
Reference in New Issue
Block a user