|
@@ -531,6 +531,7 @@
|
|
|
<el-table-column label="采取或要采取的措施" align="center" prop="actions" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="用户" align="center" prop="userDeptId" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="数据来源" align="center" prop="source" :show-overflow-tooltip="true"/>
|
|
|
+ <!--<el-table-column label="检查人" align="center" prop="applicantName" :show-overflow-tooltip="true"/>-->
|
|
|
</el-table>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="submitSaiForm">确 定</el-button>
|
|
@@ -1332,7 +1333,7 @@ export default {
|
|
|
submitSaiForm() {
|
|
|
for (let i = 0; i < this.saiList.length; i++) {
|
|
|
this.saiList[i].plantId = 103;
|
|
|
- this.saiList[i].userDeptId = 103;
|
|
|
+ this.saiList[i].userDept = 103;
|
|
|
addSai(this.saiList[i]);
|
|
|
}
|
|
|
this.msgSuccess("提交成功");
|
|
@@ -1368,6 +1369,8 @@ export default {
|
|
|
sai.source = "装置";
|
|
|
sai.deptId = 103;
|
|
|
sai.saiLevel = "1";
|
|
|
+ // sai.applicant = apply.applicant;
|
|
|
+ // sai.applicantName = apply.applicantName;
|
|
|
this.saiList.push(sai);
|
|
|
});
|
|
|
}
|