fix: 解决冲突
This commit is contained in:
commit
b5c0c58ca7
@ -98,7 +98,7 @@
|
||||
></el-input
|
||||
>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<!-- <el-form-item>
|
||||
<el-select v-model="companyTypeId" placeholder="请选择项目类型">
|
||||
<el-option
|
||||
v-for="item in companyTypeList"
|
||||
@ -107,7 +107,7 @@
|
||||
:value="item.id">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-form-item> -->
|
||||
|
||||
<el-form-item>
|
||||
<!-- 查询 -->
|
||||
|
||||
@ -562,7 +562,7 @@ export default {
|
||||
},
|
||||
];
|
||||
this.infoEnterpriseId = res.result.id;
|
||||
this.getDataDateils();
|
||||
// this.getDataDateils();
|
||||
console.log(this.enterpriseInfo,666777888)
|
||||
}
|
||||
});
|
||||
|
||||
@ -2055,7 +2055,7 @@
|
||||
<el-col :span="24">
|
||||
<div class="grid-content">
|
||||
<span class="label" style="width: 90px"
|
||||
><span style="color: red">* </span
|
||||
><span v-if="detailData.status == 2" style="color: red">* </span
|
||||
>{{
|
||||
detailData.status == 2
|
||||
? "整改照片:"
|
||||
@ -2580,7 +2580,7 @@ export default {
|
||||
if (
|
||||
this.replyData.rectifyTime == "" ||
|
||||
this.replyData.additionalRemarks == "" ||
|
||||
this.fileListRectification.length == 0
|
||||
(this.fileListRectification.length == 0 && this.replyData.type == 1)
|
||||
) {
|
||||
this.$message.error("请将回复内容输入完整");
|
||||
return;
|
||||
|
||||
@ -878,7 +878,7 @@
|
||||
<el-col :span="24">
|
||||
<div class="grid-content">
|
||||
<span class="label" style="width: 90px"
|
||||
><span style="color: red">* </span
|
||||
><span v-if="detailData.status == 2" style="color: red">* </span
|
||||
>{{
|
||||
detailData.status == 2
|
||||
? '整改照片:'
|
||||
@ -1243,7 +1243,7 @@ export default {
|
||||
} else {
|
||||
this.replyData.fileUrl = ""
|
||||
}
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || this.fileListRectification.length == 0) {
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || (this.fileListRectification.length == 0 && this.replyData.type == 1)) {
|
||||
this.$message.error('请将回复内容输入完整')
|
||||
return;
|
||||
}
|
||||
|
||||
@ -2036,7 +2036,7 @@
|
||||
<el-col :span="24">
|
||||
<div class="grid-content">
|
||||
<span class="label" style="width: 90px"
|
||||
><span style="color: red">* </span
|
||||
><span v-if="detailData.status == 2" style="color: red">* </span
|
||||
>{{
|
||||
detailData.status == 2
|
||||
? '整改照片:'
|
||||
@ -2538,7 +2538,7 @@ export default {
|
||||
} else {
|
||||
this.replyData.fileUrl = "";
|
||||
}
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || this.fileListRectification.length == 0) {
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || (this.fileListRectification.length == 0 && this.replyData.type == 1)) {
|
||||
this.$message.error('请将回复内容输入完整')
|
||||
return;
|
||||
}
|
||||
|
||||
@ -878,7 +878,7 @@
|
||||
<el-col :span="24">
|
||||
<div class="grid-content">
|
||||
<span class="label" style="width: 90px"
|
||||
><span style="color: red">* </span
|
||||
><span v-if="detailData.status == 2" style="color: red">* </span
|
||||
>{{
|
||||
detailData.status == 2
|
||||
? '整改照片:'
|
||||
@ -1243,7 +1243,7 @@ export default {
|
||||
} else {
|
||||
this.replyData.fileUrl = ""
|
||||
}
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || this.fileListRectification.length == 0) {
|
||||
if (this.replyData.rectifyTime == "" || this.replyData.additionalRemarks == "" || (this.fileListRectification.length == 0 && this.replyData.type == 1)) {
|
||||
this.$message.error('请将回复内容输入完整')
|
||||
return;
|
||||
}
|
||||
@ -1259,6 +1259,7 @@ export default {
|
||||
this.replyData.qualityId = valId
|
||||
this.replyData.createUser = this.userIdInfo
|
||||
console.log('整改提交的表单数据:::', this.replyData);
|
||||
|
||||
addSafeQualityRectifyRecordApi(this.replyData).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.$message.success('提交成功')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user