空附件上传bug修复

master
zhaoxiaolin 1 year ago
parent e77cd53df3
commit 3b7bc7dd00

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

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

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

Loading…
Cancel
Save