|
|
|
@ -126,13 +126,13 @@
|
|
|
|
|
<gDict :options="isNoList" :value="scope.row.msg"></gDict>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:jjSlot="{ scope }">
|
|
|
|
|
<div class="ybWrap" v-if="scope.row.jj == 0">
|
|
|
|
|
<div class="ybWrap" v-if="scope.row.urgencyLevel == '一般'">
|
|
|
|
|
<div class="text">一般</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="zdWrap" v-if="scope.row.jj == 1">
|
|
|
|
|
<div class="zdWrap" v-if="scope.row.urgencyLevel == '重点关注'">
|
|
|
|
|
<div class="text">重点关注</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jjWrap" v-if="scope.row.jj == 2">
|
|
|
|
|
<div class="jjWrap" v-if="scope.row.urgencyLevel == '紧急'">
|
|
|
|
|
<div class="text">紧急</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
@ -146,14 +146,26 @@
|
|
|
|
|
<gDict :options="unitList" :value="scope.row.unit"></gDict>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:stateSlot="{ scope }">
|
|
|
|
|
<div class="failWrap" v-if="scope.row.state == 0">
|
|
|
|
|
<div class="text">处理失败</div>
|
|
|
|
|
<div
|
|
|
|
|
class="failWrap"
|
|
|
|
|
v-if="scope.row.rectificationStatus == '未按要求整改'"
|
|
|
|
|
>
|
|
|
|
|
<div class="text">未按要求整改</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ingWrap" v-if="scope.row.state == 1">
|
|
|
|
|
<div class="text">进行中</div>
|
|
|
|
|
<div
|
|
|
|
|
class="ingWrap"
|
|
|
|
|
v-if="scope.row.rectificationStatus == '正在整改'"
|
|
|
|
|
>
|
|
|
|
|
<div class="text">正在整改</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="finishWrap" v-if="scope.row.state == 2">
|
|
|
|
|
<div class="text">处置完成</div>
|
|
|
|
|
<div
|
|
|
|
|
class="finishWrap"
|
|
|
|
|
v-if="
|
|
|
|
|
scope.row.rectificationStatus == '已整改' ||
|
|
|
|
|
scope.row.rectificationStatus == '按照要求整改'
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<div class="text">已整改</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:dealWaySlot="{ scope }">
|
|
|
|
@ -197,37 +209,37 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "time",
|
|
|
|
|
prop: "createTime",
|
|
|
|
|
label: "风险产生时间",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 180,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "cmy",
|
|
|
|
|
prop: "enterpriseName",
|
|
|
|
|
label: "风险关联企业",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 240,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "ysSlot",
|
|
|
|
|
prop: "ys",
|
|
|
|
|
//slot: "ysSlot",
|
|
|
|
|
prop: "elementAbnormalDetail",
|
|
|
|
|
label: "风险要素",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 160,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "date",
|
|
|
|
|
prop: "rectificationDeadline",
|
|
|
|
|
label: "整改截止日期",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 180,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "unitSlot",
|
|
|
|
|
prop: "unit",
|
|
|
|
|
//slot: "unitSlot",
|
|
|
|
|
prop: "supervisionUnit",
|
|
|
|
|
label: "监管单位",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 160,
|
|
|
|
@ -235,7 +247,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "stateSlot",
|
|
|
|
|
prop: "state",
|
|
|
|
|
prop: "rectificationStatus",
|
|
|
|
|
label: "整改状态",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 120,
|
|
|
|
@ -250,7 +262,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "remarks",
|
|
|
|
|
prop: "rectificationNoNum",
|
|
|
|
|
label: "整改结果详情",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 180,
|
|
|
|
@ -265,23 +277,23 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "gpSlot",
|
|
|
|
|
prop: "msg",
|
|
|
|
|
//slot: "gpSlot",
|
|
|
|
|
prop: "listedSupervision",
|
|
|
|
|
label: "是否挂牌督办",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 120,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "sshs",
|
|
|
|
|
prop: "appealVerificationNotNeeded",
|
|
|
|
|
label: "申诉核实",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 120,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "dealWaySlot",
|
|
|
|
|
prop: "dealWay",
|
|
|
|
|
//slot: "dealWaySlot",
|
|
|
|
|
prop: "disposalMethod",
|
|
|
|
|
label: "处置方式",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 140,
|
|
|
|
@ -289,13 +301,16 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
slot: "jjSlot",
|
|
|
|
|
prop: "jj",
|
|
|
|
|
prop: "urgencyLevel",
|
|
|
|
|
label: "紧急程度",
|
|
|
|
|
attrs: {
|
|
|
|
|
width: 140,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
url: {
|
|
|
|
|
list: "/synergism/rickdisposal",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|