|
|
|
@ -106,6 +106,11 @@
|
|
|
|
|
>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="enterpriseName"
|
|
|
|
|
label="企业名称"
|
|
|
|
|
header-align="center"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="district"
|
|
|
|
|
label="行政区划"
|
|
|
|
@ -117,12 +122,7 @@
|
|
|
|
|
<span>{{ componendDistrict(scope.row.district) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="enterpriseName"
|
|
|
|
|
label="企业名称"
|
|
|
|
|
header-align="center"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="checkStatus"
|
|
|
|
|
label="检查状态"
|
|
|
|
@ -131,22 +131,32 @@
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<div
|
|
|
|
|
style="font-family: 'Alibaba PuHuiTi'"
|
|
|
|
|
:class="scope.row.checkStatus == '2' ? 'isStyle' : 'isStyle1'"
|
|
|
|
|
:class="scope.row.checkStatus == '1' ? 'isStyle1' : 'isStyle'"
|
|
|
|
|
>
|
|
|
|
|
{{ scope.row.checkStatus == 2 ? "未检查" : "已检查" }}
|
|
|
|
|
{{ scope.row.checkStatus == 1 ? "已检查" : "未检查" }}
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="examineEndTime" label="检查结束时间" header-align="center" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="examineEndTime"
|
|
|
|
|
label="检查结束时间"
|
|
|
|
|
header-align="center"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="checkAgeing"
|
|
|
|
|
label="检查时效"
|
|
|
|
|
header-align="center"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span style="color:green" v-if="scope.row.checkAgeing == 1">{{ scope.row.checkAgeing | checkAgeing }}</span>
|
|
|
|
|
<span style="color:blue" v-else-if="scope.row.checkAgeing == 2">{{ scope.row.checkAgeing | checkAgeing }}</span>
|
|
|
|
|
<span style="color:red" v-else-if="scope.row.checkAgeing == 3">{{ scope.row.checkAgeing | checkAgeing }}</span>
|
|
|
|
|
<span style="color: green" v-if="scope.row.checkAgeing == 1">{{
|
|
|
|
|
scope.row.checkAgeing | checkAgeing
|
|
|
|
|
}}</span>
|
|
|
|
|
<span style="color: blue" v-else-if="scope.row.checkAgeing == 2">{{
|
|
|
|
|
scope.row.checkAgeing | checkAgeing
|
|
|
|
|
}}</span>
|
|
|
|
|
<span style="color: red" v-else-if="scope.row.checkAgeing == 3">{{
|
|
|
|
|
scope.row.checkAgeing | checkAgeing
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" header-align="center">
|
|
|
|
@ -289,6 +299,7 @@ export default {
|
|
|
|
|
//检测状态
|
|
|
|
|
checkStatus: "",
|
|
|
|
|
enterpriseName: "",
|
|
|
|
|
status: 1,
|
|
|
|
|
},
|
|
|
|
|
plannedMonth: "",
|
|
|
|
|
checkList: [""],
|
|
|
|
|