diff --git a/pages.json b/pages.json
index 39b35c3..64697b7 100644
--- a/pages.json
+++ b/pages.json
@@ -81,7 +81,13 @@
}
},
{
- "path": "pages/management/HalfFinishedInStore",
+ "path": "pages/management/DeliveryConfirm",
+ "style": {
+ "navigationStyle": "custom"
+ }
+ },
+ {
+ "path": "pages/management/MaterList",
"style": {
"navigationStyle": "custom"
}
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 9b5f3ca..abea9b4 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -147,8 +147,9 @@
flex-direction column
.sec_menu_w
_fj()
- _wh(100%, calc(100% - 50px))
+ _wh(calc(100% - 30px), calc(100% - 50px))
padding 0 12px
+ margin 0 auto
flex-wrap wrap
align-content center
&::after
diff --git a/pages/management/DeliveryConfirm.vue b/pages/management/DeliveryConfirm.vue
new file mode 100644
index 0000000..1a87cf1
--- /dev/null
+++ b/pages/management/DeliveryConfirm.vue
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/management/FinishedInStore.vue b/pages/management/FinishedInStore.vue
index 2cf0684..687c801 100644
--- a/pages/management/FinishedInStore.vue
+++ b/pages/management/FinishedInStore.vue
@@ -4,39 +4,24 @@
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
+
@@ -44,9 +29,11 @@
| 选择 |
- 缓存线编码 |
- 缓存线位置编码 |
- 料箱码 |
+ 订单行号 |
+ 规格 |
+ 入库数量 |
+ 物料编码 |
+ 物料名称 |
@@ -57,6 +44,8 @@
{{e.cacheline_code}} |
{{e.position_code}} |
{{e.vehicle_code}} |
+ |
+ |
@@ -77,10 +66,6 @@
return {
options1: [{text: 'A1', value: 'A1'}, {text: 'A2', value: 'A2'}],
index1: 'A1',
- options2: [],
- index2: '',
- options3: [{text: '对接位', value: '1'}, {text: '准备位', value: '2'}],
- index3: '1',
val1: '',
dataList: [],
pkId: '',
@@ -88,24 +73,11 @@
};
},
created() {
- this._getCacheLine('A1')
},
methods: {
/** 选择器1 */
selectChange1(e) {
this.index1 = e
- if (this.index1) {
- this._getCacheLine(e)
- }
- this.index2 = ''
- },
- /** 选择器2 */
- selectChange2(e) {
- this.index2 = e
- },
- /** 选择器3 */
- selectChange3(e) {
- this.index3 = e
},
toSearch () {
this.dataList = []
@@ -168,12 +140,14 @@
},
toRadio (e) {
this.pkId = this.pkId === e.position_code ? '' : e.position_code
+ },
+ toSelect () {
+ if (!this.pkId) {
+ uni.navigateTo({
+ url: '/pages/management/MaterList'
+ })
+ }
}
}
}
-
-
\ No newline at end of file
diff --git a/pages/management/HcxErrorHandle.vue b/pages/management/HcxErrorHandle.vue
index e1fcdcd..45b282a 100644
--- a/pages/management/HcxErrorHandle.vue
+++ b/pages/management/HcxErrorHandle.vue
@@ -1,25 +1,27 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
-
-
-
-
@@ -89,6 +91,23 @@
\ No newline at end of file
diff --git a/pages/management/HalfFinishedInStore.vue b/pages/management/MaterList.vue
similarity index 58%
rename from pages/management/HalfFinishedInStore.vue
rename to pages/management/MaterList.vue
index 741d0cb..91e60b7 100644
--- a/pages/management/HalfFinishedInStore.vue
+++ b/pages/management/MaterList.vue
@@ -1,42 +1,18 @@
-
+
-
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -44,9 +20,12 @@
| 选择 |
- 缓存线编码 |
- 缓存线位置编码 |
- 料箱码 |
+ 订单行号 |
+ 规格 |
+ 订单数量 |
+ 入库数量 |
+ 物料编码 |
+ 物料名称 |
@@ -57,6 +36,9 @@
{{e.cacheline_code}} |
{{e.position_code}} |
{{e.vehicle_code}} |
+ |
+ |
+ |
@@ -75,38 +57,13 @@
},
data() {
return {
- options1: [{text: 'A1', value: 'A1'}, {text: 'A2', value: 'A2'}],
- index1: 'A1',
- options2: [],
- index2: '',
- options3: [{text: '对接位', value: '1'}, {text: '准备位', value: '2'}],
- index3: '1',
val1: '',
dataList: [],
pkId: '',
disabled: false
};
},
- created() {
- this._getCacheLine('A1')
- },
methods: {
- /** 选择器1 */
- selectChange1(e) {
- this.index1 = e
- if (this.index1) {
- this._getCacheLine(e)
- }
- this.index2 = ''
- },
- /** 选择器2 */
- selectChange2(e) {
- this.index2 = e
- },
- /** 选择器3 */
- selectChange3(e) {
- this.index3 = e
- },
toSearch () {
this.dataList = []
this.pkId = ''
@@ -168,6 +125,11 @@
},
toRadio (e) {
this.pkId = this.pkId === e.position_code ? '' : e.position_code
+ },
+ goIn () {
+ uni.redirectTo({
+ url: '/pages/management/FinishedInStore'
+ })
}
}
}
@@ -175,5 +137,5 @@
\ No newline at end of file
diff --git a/utils/getData2.js b/utils/getData2.js
index 205ef2b..424fbd3 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -39,7 +39,7 @@ export const authority = () => {
},
{menu_id: '3', path: 'RF03', name: '出入库管理', sonTree: [
{menu_id: '1', name: '成品入库', path: '/pages/management/FinishedInStore'},
- {menu_id: '2', name: '半成品入库', path: '/pages/management/HalfFinishedInStore'}
+ {menu_id: '2', name: '发货确认', path: '/pages/management/DeliveryConfirm'}
]
}
]