重点认证标准/政策合规性项目审查流程 实施日期 实施要求 回显
This commit is contained in:
+15
-13
@@ -45,7 +45,8 @@
|
|||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
width="120"
|
width="120"
|
||||||
align="center"
|
align="center"
|
||||||
label="产品类型">
|
label="产品类型"
|
||||||
|
>
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<span>{{ trackingChecklistProductTypeMap[row.productType] || '-' }}</span>
|
<span>{{ trackingChecklistProductTypeMap[row.productType] || '-' }}</span>
|
||||||
</template>
|
</template>
|
||||||
@@ -62,7 +63,8 @@
|
|||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
align="center"
|
align="center"
|
||||||
width="180"
|
width="180"
|
||||||
label="实施要求">
|
label="实施要求"
|
||||||
|
>
|
||||||
<template slot-scope="{row}">
|
<template slot-scope="{row}">
|
||||||
<span>{{ trackingChecklistPutDemandMap[row.implRequire] || '-' }}</span>
|
<span>{{ trackingChecklistPutDemandMap[row.implRequire] || '-' }}</span>
|
||||||
</template>
|
</template>
|
||||||
@@ -140,20 +142,20 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
trackingChecklistProductTypeMap () {
|
trackingChecklistProductTypeMap () {
|
||||||
return this.dict.trackingChecklistProductType
|
return this.dict.trackingChecklistProductType
|
||||||
? this.dict.trackingChecklistProductType.reduce((obj, item) => {
|
? this.dict.trackingChecklistProductType.reduce((obj, item) => {
|
||||||
obj[item.value] = item.label
|
obj[item.value] = item.label
|
||||||
return obj
|
return obj
|
||||||
}, {})
|
}, {})
|
||||||
: []
|
: []
|
||||||
},
|
},
|
||||||
trackingChecklistPutDemandMap () {
|
trackingChecklistPutDemandMap () {
|
||||||
return this.dict.trackingChecklistPutDemand
|
return this.dict.trackingChecklistPutDemand
|
||||||
? this.dict.trackingChecklistPutDemand.reduce((obj, item) => {
|
? this.dict.trackingChecklistPutDemand.reduce((obj, item) => {
|
||||||
obj[item.value] = item.label
|
obj[item.value] = item.label
|
||||||
return obj
|
return obj
|
||||||
}, {})
|
}, {})
|
||||||
: []
|
: []
|
||||||
}
|
},
|
||||||
showInput () {
|
showInput () {
|
||||||
if (this.taskKey == 'PolicyComplianceProgramReviewProcessKey8' ||
|
if (this.taskKey == 'PolicyComplianceProgramReviewProcessKey8' ||
|
||||||
this.taskKey == 'PolicyComplianceProgramReviewProcessKey9') {
|
this.taskKey == 'PolicyComplianceProgramReviewProcessKey9') {
|
||||||
|
|||||||
Reference in New Issue
Block a user