From 05159702c718d8661eb457f1362b115beeaa421d Mon Sep 17 00:00:00 2001 From: zuozhengqing <a13193816592@163.com> Date: 星期五, 03 十一月 2023 09:51:26 +0800 Subject: [PATCH] 新增补货页面,库存报表列表状态修改 --- src/views/reportForm/inboundOutboundDetail/index.vue | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/views/reportForm/inboundOutboundDetail/index.vue b/src/views/reportForm/inboundOutboundDetail/index.vue index a38bdc0..c6ee050 100644 --- a/src/views/reportForm/inboundOutboundDetail/index.vue +++ b/src/views/reportForm/inboundOutboundDetail/index.vue @@ -212,6 +212,20 @@ pageSize: this.pagerOptions.pageSize }).then((res) => { if (res.code === 200) { + // let arr=[] + res.data.map((item)=>{ + if(item.baseOperationType===1){ + item.baseOperationType="鏀惰揣" + }else if(item.baseOperationType===2){ + item.baseOperationType="浜よ揣" + }else if(item.baseOperationType===3){ + item.baseOperationType="鍐呴儴璋冩嫧" + }else if(item.baseOperationType===4){ + item.baseOperationType="鎶ュ簾" + }else if(item.baseOperationType===5){ + item.baseOperationType="搴撳瓨鐩樼偣" + } + }) this.tableList.tableInfomation = res.data this.pagerOptions.totalCount = res.total } -- Gitblit v1.8.0