fix: 修正发货成功提示和库存显示格式
- 将发货操作的成功提示从"入库成功"改为"发货成功" - 在操作流程页面添加入库和发货操作的类型显示 - 修改库存页面产品信息的显示格式,使用方括号显示规格信息 - 完善库存数据映射,确保产品信息完整显示
This commit is contained in:
@@ -77,6 +77,8 @@
|
||||
<template slot-scope="scope">
|
||||
<span v-if="scope.row.actionType===5">移库操作已在移动端完成</span>
|
||||
<span v-else-if="scope.row.actionType===4">发货操作已在移动端完成</span>
|
||||
<span v-else-if="scope.row.actionType===401">入库操作</span>
|
||||
<span v-else-if="scope.row.actionType===402">发货操作</span>
|
||||
<dict-tag v-else :options='dict.type.action_type' :value="scope.row.actionType "></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
@@ -327,7 +327,7 @@ export default {
|
||||
remark: this.form.remark,
|
||||
actionStatus: 2,
|
||||
}).then(res => {
|
||||
this.$modal.msgSuccess("入库成功");
|
||||
this.$modal.msgSuccess("发货成功");
|
||||
this.getList()
|
||||
})
|
||||
}).finally(() => {
|
||||
|
||||
Reference in New Issue
Block a user