Commit 0d21ecbc by LJM

增加分货登记记录页(按操作时间倒序排列)

parent da2d0d9a
...@@ -421,7 +421,24 @@ ...@@ -421,7 +421,24 @@
}, { }, {
"path": "pages/arrivalRegister/splitGoods", "path": "pages/arrivalRegister/splitGoods",
"style": { "style": {
"navigationBarTitleText": "分货" "navigationBarTitleText": "分货",
"app-plus": {
"titleNView": {
"buttons": [{
"index": "0",
"text": "分货登记记录",
"fontSize": "15px",
"color": "#1969F9",
"float": "right",
"width": "100px"
}]
}
}
}
}, {
"path": "pages/arrivalRegister/splitGoodsRecord",
"style": {
"navigationBarTitleText": "分货登记记录"
} }
}, { }, {
"path": "pages/preCheck/list", "path": "pages/preCheck/list",
......
...@@ -261,6 +261,13 @@ ...@@ -261,6 +261,13 @@
} }
}; };
}, },
onNavigationBarButtonTap(e) {
if (e.index == 0) {
uni.navigateTo({
url: '/pages/arrivalRegister/splitGoodsRecord'
});
}
},
watch: { watch: {
image_list(arr) { image_list(arr) {
if (arr.length > 0) { if (arr.length > 0) {
......
...@@ -369,6 +369,15 @@ const API = { ...@@ -369,6 +369,15 @@ const API = {
* */ * */
getStockPreCheckList: API_BASE + '/api/stockIn/stockPreCheck/getStockPreCheckList', getStockPreCheckList: API_BASE + '/api/stockIn/stockPreCheck/getStockPreCheckList',
/** /**
* 获取分货登记列表
* */
separateStockInRegisterList: API_BASE + '/api/stockIn/stockInRegister/separateStockInRegisterList',
/**
* 作废分货登记
* */
delSeparateStockInRegister: API_BASE + '/api/stockIn/stockInRegister/delSeparateStockInRegister',
/**
/**
* 预检单-取消理货 * 预检单-取消理货
* */ * */
stockPreCheckCancelTally: API_BASE + '/api/stockIn/stockPreCheck/stockPreCheckCancelTally', stockPreCheckCancelTally: API_BASE + '/api/stockIn/stockPreCheck/stockPreCheckCancelTally',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment