master
loveflow 11 months ago
parent fc212c8f2b
commit 5d17a45beb

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

Loading…
Cancel
Save