master
loveflow 11 months ago
parent fc212c8f2b
commit 5d17a45beb

@ -119,10 +119,16 @@
</span>
</template>
<template v-slot:cqSlot="{ scope }">
<gDict :options="isNoList" :value="scope.row.msg"></gDict>
<gDict
:options="isNoList"
:value="scope.row.isOverdueReminder"
></gDict>
</template>
<template v-slot:gpSlot="{ scope }">
<gDict :options="isNoList" :value="scope.row.msg"></gDict>
<gDict
:options="isNoList"
:value="scope.row.isListedSupervision"
></gDict>
</template>
<template v-slot:jjSlot="{ scope }">
<div class="ybWrap" v-if="scope.row.urgencyLevel == '一般'">
@ -261,23 +267,23 @@ export default {
},
},
{
prop: "rectificationNoNum",
prop: "rectificationResultDefult",
label: "整改结果详情",
attrs: {
width: 180,
},
},
{
//slot: "cqSlot",
prop: "overdueReminder",
slot: "cqSlot",
prop: "isOverdueReminder",
label: "是否超期整改",
attrs: {
width: 120,
},
},
{
//slot: "gpSlot",
prop: "listedSupervision",
slot: "gpSlot",
prop: "isListedSupervision",
label: "是否挂牌督办",
attrs: {
width: 120,
@ -314,8 +320,9 @@ export default {
};
},
methods: {
openPage(val) {
window.open(val);
openPage(val, obj) {
console.log(obj);
window.open(val + "?procInsId=" + obj.definitionId);
},
gotoPage(val, obj) {
if (obj) {

Loading…
Cancel
Save