修改 83397,国内外政策-重点认证项目审查流程,标准状态建议改成:标准/政策状态

This commit is contained in:
baoyu
2024-04-09 17:50:28 +08:00
parent 9dc68af97b
commit c3b48951cb
@@ -399,8 +399,8 @@
<el-table-column <el-table-column
show-overflow-tooltip show-overflow-tooltip
prop="standStatusShow" prop="standStatusShow"
label="标准状态" :label="standardStatusName"
width="110" width="125"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.standStatusShow === '作废'" style="color: #F56C6C"> <span v-if="scope.row.standStatusShow === '作废'" style="color: #F56C6C">
@@ -573,6 +573,11 @@ export default {
selectedList: [], selectedList: [],
} }
}, },
computed: {
standardStatusName () {
return this.searchForm.standType === 'FOREIGN_LAWS' ? '标准/政策状态' : '标准状态'
}
},
created () { created () {
this.getDicTypeListCode() this.getDicTypeListCode()
this.getData() this.getData()
@@ -630,6 +635,8 @@ export default {
this.searchForm = JSON.parse(JSON.stringify(this.initSearchForm)) this.searchForm = JSON.parse(JSON.stringify(this.initSearchForm))
this.searchForm.dataSource = standType this.searchForm.dataSource = standType
this.searchForm.standType = standType this.searchForm.standType = standType
this.standType = standType
console.log(this.standType)
this.getData() this.getData()
}, },
onSearch () { onSearch () {