|
@@ -241,8 +241,8 @@
|
|
|
>
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="序号" align="center" type="index" />
|
|
|
- <el-table-column label="受检单位" align="center" :key="inspectedUnit" prop="inspectedUnit" />
|
|
|
- <el-table-column label="类型" align="center" :key="inspectionType" prop="inspectionType">
|
|
|
+ <el-table-column label="受检单位" align="center" key="inspectedUnit" prop="inspectedUnit" />
|
|
|
+ <el-table-column label="类型" align="center" key="inspectionType" prop="inspectionType">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag
|
|
|
:options="dict.type.inspectionType"
|
|
@@ -255,14 +255,14 @@
|
|
|
align="center"
|
|
|
prop="unitCheck"
|
|
|
width="150"
|
|
|
- :key="unitCheck"
|
|
|
+ key="unitCheck"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="检查时间"
|
|
|
align="center"
|
|
|
prop="inspectionTime"
|
|
|
width="150px"
|
|
|
- :key="inspectionTime"
|
|
|
+ key="inspectionTime"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
width="250"
|
|
@@ -270,9 +270,9 @@
|
|
|
label="检查地点"
|
|
|
align="center"
|
|
|
prop="inspectionSite"
|
|
|
- :key="inspectionSite"
|
|
|
+ key="inspectionSite"
|
|
|
/>
|
|
|
- <el-table-column label="分值" align="center" :key="score" prop="score">
|
|
|
+ <el-table-column label="分值" align="center" key="score" prop="score">
|
|
|
<template slot-scope="scope">
|
|
|
<div style="color: rgb(255 106 0)" v-if="queryParams.caoZuoType == 0">
|
|
|
{{ scope.row.score }}
|
|
@@ -287,7 +287,7 @@
|
|
|
align="center"
|
|
|
prop="currentState"
|
|
|
v-if="queryParams.caoZuoType == 0"
|
|
|
- :key="currentState"
|
|
|
+ key="currentState"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
<div
|
|
@@ -318,7 +318,7 @@
|
|
|
show-overflow-tooltip
|
|
|
align="center"
|
|
|
prop="question"
|
|
|
- :key="question"
|
|
|
+ key="question"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="整改时间"
|
|
@@ -326,7 +326,7 @@
|
|
|
prop="rectificationTime"
|
|
|
v-if="queryParams.caoZuoType == 0"
|
|
|
width="150px"
|
|
|
- :key="rectificationTime"
|
|
|
+ key="rectificationTime"
|
|
|
/>
|
|
|
<el-table-column
|
|
|
label="操作"
|
|
@@ -1074,7 +1074,7 @@ export default {
|
|
|
|
|
|
if (this.$route.query.id) {
|
|
|
bumenlist(this.$route.query.id).then(res => {
|
|
|
- console.log(1);
|
|
|
+
|
|
|
this.regularinfoList = res.rows;
|
|
|
this.total = res.total;
|
|
|
this.loading = false;
|
|
@@ -1119,7 +1119,7 @@ export default {
|
|
|
this.queryParams.currentState = to.query.obj.name + "";
|
|
|
|
|
|
listRegularinfos(this.queryParams).then(res => {
|
|
|
- console.log(res);
|
|
|
+
|
|
|
this.regularinfoList = res.rows;
|
|
|
this.total = res.total;
|
|
|
this.loading = false;
|
|
@@ -1133,7 +1133,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log(0);
|
|
|
+
|
|
|
// this.danWiess()
|
|
|
},
|
|
|
methods: {
|
|
@@ -1141,7 +1141,7 @@ export default {
|
|
|
// 获取当前用户接口
|
|
|
getUserProfile().then(response => {
|
|
|
this.user = response.data;
|
|
|
- console.log(this.user);
|
|
|
+
|
|
|
// console.log(response.data.dept.deptId+"这是")
|
|
|
// if(response)
|
|
|
this.danWies = response.data.dept.deptId;
|
|
@@ -1253,7 +1253,6 @@ export default {
|
|
|
// },
|
|
|
/** 整改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
- console.log(row);
|
|
|
this.reset();
|
|
|
const id = row.id || this.ids;
|
|
|
getRegularinfo(id).then(response => {
|
|
@@ -1430,7 +1429,6 @@ export default {
|
|
|
},
|
|
|
//负责人
|
|
|
chargePeoplefun(val) {
|
|
|
- console.log(val);
|
|
|
this.form.chargePeopleId = val.id;
|
|
|
this.form.chargePeople = val.name;
|
|
|
},
|