From c87a6f7310ca992d7f058a8f286b095c9a632c90 Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期四, 21 九月 2023 16:51:58 +0800 Subject: [PATCH] 位置+产品类型的接口联调+业务类型的字段添加 --- src/api/data.js | 34 ++++++++++++++++++++++++++++++++++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/src/api/data.js b/src/api/data.js index f98678f..36a8533 100644 --- a/src/api/data.js +++ b/src/api/data.js @@ -138,6 +138,38 @@ id: 2 } ] +// 浣嶇疆 +// 浣嶇疆绫诲瀷 +const positionType=[ + { + name: "渚涘簲鍟嗕綅缃�", + id: 1 + }, + { + name: "瑙嗗浘", + id: 2 + }, + { + name: "鍐呴儴浣嶇疆", + id: 3 + }, + { + name: "瀹㈡埛浣嶇疆", + id: 4 + }, + { + name: "搴撳瓨鎹熷け", + id: 5 + }, + { + name: "鐢熶骇", + id: 6 + }, + { + name: "涓浆浣嶇疆", + id: 7 + } +] export const getDataByType = (type) => { if (type == "purchaseStatus") { return purchaseStatus @@ -157,5 +189,7 @@ return costingMethod }else if(type=='inventoryValuation'){ return inventoryValuation + }else if(type=='positionType'){ + return positionType; } } -- Gitblit v1.8.0