Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -795,6 +795,7 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
this.$refs.filterTable.clearSelection()
|
||||
this.PLmodalshowflag = false
|
||||
},
|
||||
cancleUserInfo2 () {
|
||||
|
||||
@@ -88,20 +88,17 @@
|
||||
prop="itemsNum"
|
||||
label="条款号"
|
||||
width="70"
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itemsName"
|
||||
label="条款名称"
|
||||
show-overflow-tooltip
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itermsConditions"
|
||||
label="条款内容"
|
||||
fixed
|
||||
width="200"
|
||||
show-overflow-tooltip
|
||||
align="center">
|
||||
@@ -172,14 +169,11 @@
|
||||
<!-- align="center">-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column
|
||||
prop="complianceRequir"
|
||||
prop="complianceRequirShow"
|
||||
width="150"
|
||||
label="符合项状态"
|
||||
show-overflow-tooltip
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.complianceRequir === '1' ? '符合' : '不符合' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="complianceState"
|
||||
@@ -505,6 +499,13 @@
|
||||
this.sarType = data.standInData || data.sarType
|
||||
this.json = data
|
||||
this.itemList = data.itemList
|
||||
this.itemList.forEach(item => {
|
||||
if(item.complianceRequir === '1'){
|
||||
item.complianceRequirShow = '符合'
|
||||
}else{
|
||||
item.complianceRequirShow = '不符合'
|
||||
}
|
||||
})
|
||||
this.loading = false
|
||||
}).catch(e => {
|
||||
})
|
||||
|
||||
@@ -88,20 +88,17 @@
|
||||
prop="itemsNum"
|
||||
label="条款号"
|
||||
width="70"
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itemsName"
|
||||
label="条款名称"
|
||||
show-overflow-tooltip
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itermsConditions"
|
||||
label="条款内容"
|
||||
fixed
|
||||
width="200"
|
||||
show-overflow-tooltip
|
||||
align="center">
|
||||
@@ -172,14 +169,11 @@
|
||||
<!-- align="center">-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column
|
||||
prop="complianceRequir"
|
||||
prop="complianceRequirShow"
|
||||
width="150"
|
||||
label="符合项状态"
|
||||
show-overflow-tooltip
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.complianceRequir === '1' ? '符合' : '不符合' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="complianceState"
|
||||
@@ -502,6 +496,13 @@
|
||||
this.sarType = data.standInData || data.sarType
|
||||
this.json = data
|
||||
this.itemList = data.itemList
|
||||
this.itemList.forEach(item => {
|
||||
if(item.complianceRequir === '1'){
|
||||
item.complianceRequirShow = '符合'
|
||||
}else{
|
||||
item.complianceRequirShow = '不符合'
|
||||
}
|
||||
})
|
||||
this.loading = false
|
||||
}).catch(e => {
|
||||
})
|
||||
|
||||
@@ -88,20 +88,17 @@
|
||||
prop="itemsNum"
|
||||
label="条款号"
|
||||
width="70"
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itemsName"
|
||||
label="条款名称"
|
||||
show-overflow-tooltip
|
||||
fixed
|
||||
align="center">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="itermsConditions"
|
||||
label="条款内容"
|
||||
fixed
|
||||
width="200"
|
||||
show-overflow-tooltip
|
||||
align="center">
|
||||
@@ -172,7 +169,7 @@
|
||||
<!-- align="center">-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column
|
||||
prop="complianceRequir"
|
||||
prop="complianceRequirShow"
|
||||
width="150"
|
||||
label="符合项状态"
|
||||
show-overflow-tooltip
|
||||
@@ -500,6 +497,13 @@
|
||||
this.sarType = data.standInData || data.sarType
|
||||
this.json = data
|
||||
this.itemList = data.itemList
|
||||
this.itemList.forEach(item => {
|
||||
if(item.complianceRequir === '1'){
|
||||
item.complianceRequirShow = '符合'
|
||||
}else{
|
||||
item.complianceRequirShow = '不符合'
|
||||
}
|
||||
})
|
||||
this.loading = false
|
||||
}).catch(e => {
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user