From d35533b1b42df7e1808a19a8ea72613e605cd6ef Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期四, 09 十一月 2023 16:49:35 +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