From 04489cc3864aa38fde8b539aee6c4c9eed6ab1d4 Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期四, 28 九月 2023 14:35:35 +0800
Subject: [PATCH] 解决产品列表报错
---
src/api/data.js | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 171 insertions(+), 1 deletions(-)
diff --git a/src/api/data.js b/src/api/data.js
index baf311a..8e0ad06 100644
--- a/src/api/data.js
+++ b/src/api/data.js
@@ -17,9 +17,179 @@
id: 4
}
]
-
+// 浠撳簱
+// 鍏ュ悜杩愯緭
+const inboundTransportation = [
+ {
+ name: "鐩存帴鎺ユ敹浜у搧锛�1姝ユ敹璐э級",
+ id: 1,
+ disabled: false
+ },
+ {
+ name: "鎺ュ埌浜у搧鍒版敹鏂欏尯锛屽啀鍏ュ簱锛�2姝ユ敹璐э級",
+ id: 2,
+ disabled: true
+ },
+ {
+ name: "鎺ユ敹浜у搧鍒版敹鏂欏尯锛屾楠岋紝鐒跺悗鍏ュ簱锛�3姝ユ敹璐э級",
+ id: 3,
+ disabled: true
+ }
+]
+// 鍑哄簱杩愯緭
+const outboundTransportation = [
+ {
+ name: "鐩存帴鍑哄簱锛�1姝ワ級",
+ id: 1,
+ disabled: false
+ },
+ {
+ name: "閫佸埌寰呭嚭搴撳尯锛屽啀閫佽揣锛�2姝ュ彂璐э級",
+ id: 2,
+ disabled: true
+ },
+ {
+ name: "鍖呰浜у搧锛屽彂閫佸埌寰呭嚭搴撳尯锛屽啀閫佽揣锛�3姝ュ彂璐э級",
+ id: 3,
+ disabled: true
+ }
+]
+// 涓氬姟绫诲瀷
+// 浣滀笟绫诲瀷
+const baseOperationType = [
+ {
+ name: "鍏ュ簱",
+ id: 1
+ },
+ {
+ name: "鍑哄簱",
+ id: 2
+ },
+ {
+ name: "鍐呴儴璋冩嫧",
+ id: 3
+ }
+]
+//鍒涘缓娆犲崟
+const createBackorder = [
+ {
+ name: "鎻愰棶",
+ id: 1
+ },
+ {
+ name: "鎬绘槸",
+ id: 2
+ },
+ {
+ name: "浠庝笉",
+ id: 3
+ }
+]
+//淇濈暀鏂瑰紡 鍦ㄩ瀹氭棩鏈熶箣鍓�=3
+const reservationMethod = [
+ {
+ name: "纭鏃�",
+ id: 1
+ },
+ {
+ name: "鎵嬪伐",
+ id: 2
+ }
+]
+// 浜у搧绫诲埆
+// 寮哄埗涓嬫灦绛栫暐
+const forceRemovalStrategy = [
+ {
+ name: "First In First Out (FIFO)",
+ id: 1
+ },
+ {
+ name: "Last In First Out (LIFO)",
+ id: 2
+ },
+ {
+ name: "Closest Location",
+ id: 3
+ }
+]
+//鎴愭湰鏂规硶
+const costingMethod = [
+ {
+ name: "鏍囧噯浠锋牸",
+ id: 1
+ },
+ {
+ name: "鍏堣繘鍏堝嚭 (FIFO)",
+ id: 2
+ },
+ {
+ name: "骞冲潎鎴愭湰锛圓VCO锛�",
+ id: 3
+ }
+]
+// 搴撳瓨璁′环
+const inventoryValuation = [
+ {
+ name: "鎵嬪姩",
+ id: 1
+ },
+ {
+ name: "鑷姩",
+ 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
+ } else if (type == "inboundTransportation") {
+ return inboundTransportation
+ } else if (type == "outboundTransportation") {
+ return outboundTransportation
+ } else if (type == "baseOperationType") {
+ return baseOperationType
+ } else if (type == "createBackorder") {
+ return createBackorder
+ } else if (type == "reservationMethod") {
+ return reservationMethod
+ } else if (type == "forceRemovalStrategy") {
+ return forceRemovalStrategy
+ } else if (type == "costingMethod") {
+ return costingMethod
+ } else if (type == "inventoryValuation") {
+ return inventoryValuation
+ } else if (type == "positionType") {
+ return positionType
}
}
--
Gitblit v1.8.0