| xqd
@@ -66,10 +66,13 @@
|
|
|
<FileUpload
|
|
|
v-model="tableData.templateServiceContract"
|
|
|
accept=".doc, .docx"
|
|
|
+ :limit=1
|
|
|
+ :preview='false'
|
|
|
/>
|
|
|
<!-- <FileShow
|
|
|
:files="form.templateServiceContract"
|
|
|
/> -->
|
|
|
+ <span style=" color: #d05c39;text-align: center;">*只支持上传一个Word文档</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-form-item>
|
| xqd
@@ -114,10 +117,13 @@
|
|
|
<FileUpload
|
|
|
v-model="form.templateServiceContract"
|
|
|
accept=".doc, .docx"
|
|
|
+ :limit=1
|
|
|
+ :preview='false'
|
|
|
/>
|
|
|
<!-- <FileShow
|
|
|
:files="form.templateServiceContract"
|
|
|
/> -->
|
|
|
+ <span style=" color: #d05c39;text-align: center;">*只支持上传一个Word文档</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-form-item>
|
| xqd
@@ -535,11 +541,14 @@
|
|
|
this.oldTableData = {
|
|
|
...this.tableData
|
|
|
};
|
|
|
+ console.log(JSON.stringify(this.oldTableData),"旧")
|
|
|
});
|
|
|
this.dialogVisible1 = true;
|
|
|
},
|
|
|
// 弹窗修改
|
|
|
onSubmit() {
|
|
|
+ console.log(JSON.stringify(this.oldTableData),"旧")
|
|
|
+ console.log(JSON.stringify(this.tableData),"新")
|
|
|
if (
|
|
|
JSON.stringify(this.oldTableData) === JSON.stringify(this.tableData)
|
|
|
) {
|