fix: 修正发货成功提示和库存显示格式

- 将发货操作的成功提示从"入库成功"改为"发货成功"
- 在操作流程页面添加入库和发货操作的类型显示
- 修改库存页面产品信息的显示格式,使用方括号显示规格信息
- 完善库存数据映射,确保产品信息完整显示
This commit is contained in:
砂糖
2025-11-18 11:45:44 +08:00
parent a13b7058b0
commit 3d8ad35a3d
3 changed files with 32 additions and 4 deletions

View File

@@ -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>