diff --git a/common/style/layout.css b/common/style/layout.css index 1df8924..0fdb623 100644 --- a/common/style/layout.css +++ b/common/style/layout.css @@ -71,7 +71,7 @@ uni-button:after { } .content { width: 100%; - height: 100%; + height: auto; padding: 92rpx 15rpx 82rpx 14rpx; } .wrapper { @@ -198,11 +198,12 @@ uni-button:after { margin: 0 20rpx 10rpx 0; border-radius: 30rpx; } -.btn-disabled { +.btn-disabled, .submit-button:disabled { background-color: #c9c9c9; border: 1px solid #c9c9c9; color: #fff; } + /** 弹窗 */ .msg_wrapper { diff --git a/components/SearchBox.vue b/components/SearchBox.vue index ee6c2ce..4f94d35 100644 --- a/components/SearchBox.vue +++ b/components/SearchBox.vue @@ -35,6 +35,7 @@ handleChange ($event) { if ($event.target.value) { this.cur = $event.target.value + this.$emit('input', this.cur) } }, toSearch () { diff --git a/pages/ProductManage/EmptyPipeInStore.vue b/pages/ProductManage/EmptyPipeInStore.vue index d941ae4..5dbf869 100644 --- a/pages/ProductManage/EmptyPipeInStore.vue +++ b/pages/ProductManage/EmptyPipeInStore.vue @@ -10,14 +10,13 @@ 物料 - + @@ -26,34 +25,30 @@ + + 数量 + + + + - - - - - - - - - + + + + - - - - - - - - - - + + + + +
任务号指令号起点终点状态agv车号物料类型优先级时间点位物料编码物料名称数量
{{e.task_no}}{{e.inst_no}}{{e.start_devicecode}}{{e.next_devicecode}}{{e.inst_status_name}}{{e.carno}}{{e.material_type_name}}{{e.priority}}{{e.create_time}}
{{e.point_code}}{{e.material_code}}{{e.material_name}}{{e.qty}}
@@ -61,8 +56,8 @@
- - + + @@ -70,6 +65,7 @@ diff --git a/utils/getData2.js b/utils/getData2.js index e69de29..bb105d8 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -0,0 +1,28 @@ +import request from './request.js' + +/** + * 空管入库 + */ +// 1.1生产区域下拉框查询 +export const queryProductArea = () => request({ + url:'api/pda/raw/queryProductArea', + data: {} +}) +// 1.2空纸管库设备物料初始化查询 +export const queryMaterialInfo = (code, mcode, area) => request({ + url:'api/pda/empty/queryMaterialInfo', + data: { + point_code: code, + material_code: mcode, + product_area: area + } +}) +// 1.3入库确认 +export const emptyConfirm = (jo, qty, code) => request({ + url:'api/pda/empty/confirm', + data: { + raw_jo: jo, + qty: qty, + material_code: code + } +}) \ No newline at end of file