diff --git a/api/watchGoods/watchGoods.js b/api/watchGoods/watchGoods.js new file mode 100644 index 0000000..30892ad --- /dev/null +++ b/api/watchGoods/watchGoods.js @@ -0,0 +1,27 @@ +import request from '@/utils/request' + + +/** +* 短批次号 +* @param {查询条件} data +*/ +export function GetGoodsNowProduction_List(query) { + return request({ + url: '/mes/wm/WmGoodsNowProduction/shortPatchsearch', + method: 'get', + params: query, + }) +} + +/** +* 查询详细信息 +* @param {查询条件} data +*/ +export function GetGoodsNowProduction_detail(query) { + return request({ + url: '/mes/wm/WmGoodsNowProduction/patchsearchdetail', + method: 'get', + params: query, + }) +} + diff --git a/pages.json b/pages.json index 6d01e68..b22c19a 100644 --- a/pages.json +++ b/pages.json @@ -122,6 +122,22 @@ "navigationBarTitleText" : "创建AGV任务", "enablePullDownRefresh" : false } + }, + { + "path" : "pages/watchGoods/watchGoods", + "style" : + { + "navigationBarTitleText" : "货物查看", + "enablePullDownRefresh" : false + } + }, + { + "path" : "pages/watchGoods/goodsdetail/goodsdetail", + "style" : + { + "navigationBarTitleText" : "货物详情", + "enablePullDownRefresh" : false + } } ] diff --git a/pages/index/index.vue b/pages/index/index.vue index 5d5f844..538402e 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -23,182 +23,190 @@ \ No newline at end of file +.text { + font-size: 24px; + color: white; +} + diff --git a/pages/login/login.vue b/pages/login/login.vue index b634c58..48802be 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -1,5 +1,6 @@