空附件上传bug修复

master
zhaoxiaolin 1 year ago
parent e77cd53df3
commit 3b7bc7dd00

@ -1085,7 +1085,7 @@ export default {
/** SAP同步按钮操作 */
handleSyncSAP() {
this.$modal.confirm('是否确认SAP同步操作步骤').then(function() {
return syncSAP(contentIds)
return syncSAP()
}).then(() => {
this.getList()
this.$modal.msgSuccess('同步成功')

@ -103,7 +103,7 @@
:disabled="multiple"
@click="handleUpdateDown"
v-hasPermi="['mes:pro:workorder:edit']"
>下达工单</el-button>
>派发工单</el-button>
</el-col>
<el-col :span="1.5">

@ -345,7 +345,7 @@ export default {
{ required: true, message: "是否启用不能为空", trigger: "blur" }
],
},
fileList:''
fileList:null
};
},
created() {
@ -379,8 +379,8 @@ export default {
createTime: null,
updateBy: null,
updateTime: null,
fileList:'',
idList:''
fileList:null,
idList:null
};
this.resetForm("form");
},

Loading…
Cancel
Save