diff --git a/pages.json b/pages.json index 58e5c2d..a550ed3 100644 --- a/pages.json +++ b/pages.json @@ -176,6 +176,12 @@ "navigationStyle": "custom" } } + ,{ + "path" : "pages/WarehouseManage/Details", + "style": { + "navigationStyle": "custom" + } + } ,{ "path" : "pages/ProductManage/EmptyPipeOutStore", "style" : diff --git a/pages/WarehouseManage/CheckDtl.vue b/pages/WarehouseManage/CheckDtl.vue index 13bedd1..b1a3536 100644 --- a/pages/WarehouseManage/CheckDtl.vue +++ b/pages/WarehouseManage/CheckDtl.vue @@ -7,36 +7,38 @@ - + + - - + - - + + - - + + + - - + - - + +
单据号选择箱号 状态数量盘点数量 盘点库区 盘点货位箱号 物料编码 物料名称单位备注 盘点结果 盘点人 盘点时间单据号
{{el.check_code}}
{{el.storagevehicle_code}} {{el.status}}{{el.base_qty}} {{el.sect_name}} {{el.struct_name}}{{el.storagevehicle_code}} {{el.material_code}} {{el.material_name}}{{el.qty_unit_name}} {{el.check_result}} {{el.check_optname}} {{el.check_time}}{{el.check_code}}
@@ -44,15 +46,17 @@ - - + + + + + + diff --git a/utils/getData1.js b/utils/getData1.js index 7bdc5f1..c3ef6f6 100644 --- a/utils/getData1.js +++ b/utils/getData1.js @@ -265,4 +265,27 @@ export const confirmCheck = (crows, ccode) => request({ export const checkgetStor = (crows, ccode) => request({ url: 'api/pda/check/getStor', data: {} -}) \ No newline at end of file +}) +// 1.6详情信息 +export const checkQueryDetails = (scode) => request({ + url: 'api/pda/check/checkQueryDetails', + data: { + storagevehicle_code: scode + } +}) +// 1.7异常(盘点单明细查询页面按钮)备注:可多选 +export const checkexception = (crows, ccode) => request({ + url: 'api/pda/check/exception', + data: { + check_rows: crows, + check_code: ccode + } +}) +// 1.8正常(盘点单明细查询页面按钮)备注:可多选 +export const checknormal = (crows, ccode) => request({ + url: 'api/pda/check/normal', + data: { + check_rows: crows, + check_code: ccode + } +}) diff --git a/vuex/modules/user.js b/vuex/modules/user.js index 09c22a9..0e7ef54 100644 --- a/vuex/modules/user.js +++ b/vuex/modules/user.js @@ -1,6 +1,6 @@ import * as types from '../types' -const baseUrl = process.env.NODE_ENV === 'development' ? 'http://192.168.81.198:8010' : 'http://localhost:8010' +const baseUrl = process.env.NODE_ENV === 'development' ? 'http://10.1.3.90:8010' : 'http://localhost:8010' const state = { baseUrl: uni.getStorageSync('baseUrl') || baseUrl, setTime: uni.getStorageSync('setTime') || 5000,