diff --git a/src/config/getData2.js b/src/config/getData2.js
index f6c8b76..a335da0 100644
--- a/src/config/getData2.js
+++ b/src/config/getData2.js
@@ -113,3 +113,32 @@ export const unqualReport = (id, nqty, rqty) => post('api/produceshiftorder/unqu
// 状态查询
export const orderStatus = () => get('api/produceshiftorder/orderStatus', '')
+
+/**
+ * 半成品入库
+ */
+
+// 1.1仓库下拉框
+export const getBcpStor = () => post('api/pda/bcp/in/getBcpStor', {})
+// 1.2单据类型下拉框
+export const getBillType = () => post('api/pda/bcp/in/getBillType', {})
+// 1.3物料选择页面
+export const getMaterial = (code) => post('api/pda/bcp/in/getMaterial', {
+ material_code: code
+})
+// 1.4入库点下拉框
+export const getPoint = () => post('api/pda/bcp/in/getPoint', {})
+// 1.5呼叫空载具(按钮)
+export const callVehicle = () => post('api/pda/bcp/in/callVehicle', {})
+// 1.6确认入库(按钮)
+export const createIn = (from) => post('api/pda/bcp/in/createIn', {
+ from: from
+})
+
+/**
+ * 半成品入库管理查询
+ */
+// 2.1半成品入库查询
+export const getAll = () => post('api/pda/bcp/in/getAll', {})
+// 2.2强制确认(按钮)
+export const bcpInConfirm = () => post('api/pda/bcp/in/confirm', {})
diff --git a/src/pages/modules/semifinished/index.vue b/src/pages/modules/semifinished/index.vue
index 9db507a..1120cda 100644
--- a/src/pages/modules/semifinished/index.vue
+++ b/src/pages/modules/semifinished/index.vue
@@ -23,7 +23,7 @@ export default {
},
computed: {
title () {
- let res = ['半成品入库', '半成品入库查询', '半成品出库', '半成品出库查询', '半成品盘点', '半成品盘点查询', '半成品拼盘', '半成品拼盘查询'][Number(this.$route.meta.guidePath) - 1]
+ let res = ['半成品入库', '半成品入库查询', '半成品出库', '半成品出库查询', '半成品盘点', '半成品盘点查询', '半成品拼盘查询', '物料查询'][Number(this.$route.meta.guidePath) - 1]
return res
}
},
diff --git a/src/pages/modules/semifinished/mater-search.vue b/src/pages/modules/semifinished/mater-search.vue
new file mode 100644
index 0000000..eefd3e2
--- /dev/null
+++ b/src/pages/modules/semifinished/mater-search.vue
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+ 序号
+ 物料编号
+ 物料名称
+ 物料类别
+ 重量单位
+
+
+
+ {{ i+1 }}
+ {{e.material_code}}
+ {{e.material_name}}
+ {{e.class_code}}
+ {{e.unit_name}}
+