feat: There is no way the, 56810 解读流程完结之后,标准详情页面的条款没有了,需要手动关联
56806 解读流程跑完之后,分解单不归档,见附件 20220727091736846
This commit is contained in:
@@ -880,6 +880,9 @@
|
|||||||
label="适用车型"
|
label="适用车型"
|
||||||
width="90"
|
width="90"
|
||||||
>
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{filterApplyArctic(scope.row)}}
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column-->
|
<!-- <el-table-column-->
|
||||||
<!-- prop="responsibleUnit"-->
|
<!-- prop="responsibleUnit"-->
|
||||||
@@ -2096,6 +2099,14 @@ export default {
|
|||||||
props: {},
|
props: {},
|
||||||
watch: {},
|
watch: {},
|
||||||
methods: {
|
methods: {
|
||||||
|
filterApplyArctic(row){
|
||||||
|
console.log(row)
|
||||||
|
if(row.applyArctic){
|
||||||
|
return row.applyArctic.replaceAll('\"', '').replaceAll('\[', '').replaceAll('\]', '')
|
||||||
|
}else {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
},
|
||||||
handleChangeList(data){
|
handleChangeList(data){
|
||||||
this.handleList = data
|
this.handleList = data
|
||||||
},
|
},
|
||||||
@@ -3139,28 +3150,19 @@ export default {
|
|||||||
},
|
},
|
||||||
// 分解单----查看标准条款相关
|
// 分解单----查看标准条款相关
|
||||||
selectSarStandItems(id, flag) {
|
selectSarStandItems(id, flag) {
|
||||||
|
this.tableLoading = true
|
||||||
this.standItemSearch.standId = this.sarStandardsInfoEO.id
|
this.standItemSearch.standId = this.sarStandardsInfoEO.id
|
||||||
this.standItemSearch.fileType = this.fileType
|
this.standItemSearch.fileType = this.fileType
|
||||||
|
console.log("---------------------------------------------")
|
||||||
this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', {
|
this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', {
|
||||||
...this.standItemSearch,
|
...this.standItemSearch,
|
||||||
pageSize: this.pageSize7, page: this.page7, order: this.order, orderBy: this.orderBy
|
pageSize: this.pageSize7, page: this.page7, order: this.order, orderBy: this.orderBy
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
this.selectedItemList = []
|
this.selectedItemList = []
|
||||||
if (res.ok) {
|
if (res.data) {
|
||||||
res.data.list.forEach(item => {
|
|
||||||
let k = (item.applyArctic || "").split(',')
|
|
||||||
for (let i in this.applyArcticOptions.options) {
|
|
||||||
for (let m = 0; m < k.length; m++) {
|
|
||||||
if (this.applyArcticOptions.options[i].value === k[m]) {
|
|
||||||
k[m] = this.applyArcticOptions.options[i].label
|
|
||||||
}
|
|
||||||
item.applyArctic = k.join(',')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
item.applyArctic = item.applyArctic.replaceAll('\"', '').replaceAll('\[', '').replaceAll('\]', '')
|
|
||||||
})
|
|
||||||
this.standItemList = res.data.list;
|
this.standItemList = res.data.list;
|
||||||
this.total7 = res.data.count // 分页需要
|
this.total7 = res.data.count // 分页需要
|
||||||
|
this.tableLoading = false
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user