diff --git a/api/warehouse/wmGoodsAction.js b/api/warehouse/wmGoodsAction.js
index 19dc127..2d7880e 100644
--- a/api/warehouse/wmGoodsAction.js
+++ b/api/warehouse/wmGoodsAction.js
@@ -6,7 +6,7 @@ import request from '@/utils/request'
*/
export function doConsolidationGoods(data) {
return request({
- url: '/mes/wm/doConsolidationGoods',
+ url: '/mes/wm/WmGoodsAction/doConsolidationGoods',
method: 'post',
data: data,
})
@@ -18,7 +18,7 @@ export function doConsolidationGoods(data) {
*/
export function doUnpackingGoods(data) {
return request({
- url: '/mes/wm/doUnpackingGoods',
+ url: '/mes/wm/WmGoodsAction/doUnpackingGoods',
method: 'post',
data: data,
})
diff --git a/pages/consolidation/consolidation.vue b/pages/consolidation/consolidation.vue
index c110b21..0fe61bc 100644
--- a/pages/consolidation/consolidation.vue
+++ b/pages/consolidation/consolidation.vue
@@ -21,7 +21,8 @@
拼箱清单
-
+
@@ -35,270 +36,283 @@
+ .title-box {
+ margin-top: 54px;
+ margin-bottom: 20px;
+ height: 60px;
+ font-size: 26px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .warehoseInfo-box {
+ font-size: 20px;
+ width: 94%;
+ margin: 0 auto;
+ padding-left: 10px;
+ padding-right: 10px;
+ background-color: aliceblue;
+ border-radius: 10px;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .warehoseInfo-box .row {
+ display: flex;
+ flex-direction: row;
+ }
+
+ .warehoseInfo-box .row .col {
+ width: 50%;
+ }
+
+ .aciton-box {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .color1 {
+ color: yellowgreen;
+ }
+
+ .color2 {
+ color: orange;
+ }
+
+ .pda-search-box {
+ margin-bottom: 5px;
+ }
+
+ .list-box {
+ width: 100%;
+ }
+
+ .scroll-view-title {
+ font-size: 24px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .scroll-view-box {
+ width: 94%;
+ margin: 0 auto;
+ margin-top: 50px;
+ height: 360px;
+ padding: 10px;
+ background-color: rgba(179, 179, 179, 0.7);
+ border-radius: 5px;
+ }
+
+ .scroll-view-last {
+ width: 100%;
+ height: 60px;
+ font-size: 20px;
+ color: rgba(0, 9, 0, 0.7);
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ margin-top: 10px;
+ padding-left: 10px;
+ padding-right: 10px;
+ border-radius: 10px;
+ background-color: white;
+ }
+
+ .button-box {
+ width: 80%;
+ margin: 10px auto;
+ display: flex;
+ flex-direction: row;
+ }
+
+ .changeInput {
+ font-size: 20px;
+ background-color: gainsboro;
+ border: 1px solid grey;
+ }
+
\ No newline at end of file