|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
<el-form :model="formData" :rules="formRules" ref="dataForm">
|
|
|
|
|
<el-card style="margin-top: -30px">
|
|
|
|
|
<el-button-group style="display: flex">
|
|
|
|
|
<el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px"
|
|
|
|
|
<el-button type="primary" @click.native="submitUpload" style="margin: 0 60px 10px auto; height: 35px"
|
|
|
|
|
:loading="loading">提交
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
@ -208,8 +208,8 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
draggable,
|
|
|
|
|
ElImageViewer
|
|
|
|
|
// draggable,
|
|
|
|
|
// ElImageViewer
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
submitUpload() {
|
|
|
|
@ -238,23 +238,13 @@ export default {
|
|
|
|
|
onConfirmSubmit(val) {
|
|
|
|
|
this.formData.repeatUpload = val;
|
|
|
|
|
console.log(this.formData)
|
|
|
|
|
if (this.$isNotBlank(this.formData.filePath)) {
|
|
|
|
|
if (this.$refs.upload.uploadFiles.length > 0) {
|
|
|
|
|
this.$refs.upload.submit();
|
|
|
|
|
this.onSubmit();
|
|
|
|
|
} else {
|
|
|
|
|
this.onSubmit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
console.log(this.$refs.upload.uploadFiles.length);
|
|
|
|
|
if (this.$refs.upload.uploadFiles.length > 0) {
|
|
|
|
|
this.$refs.upload.submit();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.warning(`请选择文件`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.onSubmit();
|
|
|
|
|
// this.formData.repeatUpload = val;
|
|
|
|
|
// if (this.$isNotBlank(this.formData.filePath)) {
|
|
|
|
|
// this.onSubmit();
|
|
|
|
|
// }else {
|
|
|
|
|
// this.$message.warning(`请选择文件`);
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onSubmit() {
|
|
|
|
@ -270,9 +260,11 @@ export default {
|
|
|
|
|
this.formData.manufacturerIdFk = this.inputQuery.manufacturerIdFk;
|
|
|
|
|
this.formData.productIdFk = this.inputQuery.productId;
|
|
|
|
|
}
|
|
|
|
|
if (this.formData.auditStatus != 1)
|
|
|
|
|
if (this.formData.auditStatus != 1){
|
|
|
|
|
this.formData.auditStatus = "6";
|
|
|
|
|
this.formData.filePath = this.$refs.editorRef.html
|
|
|
|
|
this.formData.filePath = this.$refs.editorRef.html
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.editTye == 1) {
|
|
|
|
|
insertCompanyCert(this.formData).then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|