排班bug

This commit is contained in:
2025-01-03 09:04:21 +08:00
parent 466c822b0f
commit dfc8110410
5 changed files with 26 additions and 9 deletions

View File

@@ -211,6 +211,9 @@ export default {
this.$modal.msgSuccess('操作成功');
this.$emit('successSubmit');
});
}else{
this.$modal.msgSuccess('操作成功');
this.$emit('successSubmit');
}
}
});
@@ -226,6 +229,9 @@ export default {
this.$modal.msgSuccess('操作成功');
this.$emit('successSubmit');
});
}else{
this.$modal.msgSuccess('操作成功');
this.$emit('successSubmit');
}
}
});

View File

@@ -176,7 +176,7 @@ export default {
if (res.code === 0 && res.data.list && res.data.list.length > 0) {
res.data.list.forEach(item => {
if(item.isProduction){
item.str = item.strList?item.strList.join(','):'-'
item.str = item.strList?item.strList.join(''):'-'
}
});
this.list = res.data.list;