Commit 15e7f47e by liangjianmin

fix(stockRecheck): 修正跳转链接参数和环境配置

- 在跳转至排序页面时添加了 warehouse_id 参数
- 将环境配置从开发环境切换到生产环境
parent aafdd4cc
Showing with 2 additions and 2 deletions
......@@ -192,7 +192,7 @@
this.getData((data) => {
if (data.length == 1) {
uni.navigateTo({
url: '/pages/stockRecheck/sort?stock_out_id=' + this.list[0].stock_out_id + '&stock_out_sn=' + this.list[0].stock_out_sn
url: '/pages/stockRecheck/sort?stock_out_id=' + this.list[0].stock_out_id + '&stock_out_sn=' + this.list[0].stock_out_sn + '&warehouse_id=' + this.list[0].warehouse_id
});
}
});
......
// 环境配置:'production' 正式环境 | 'development' 测试环境
const ENV = 'development';
const ENV = 'production';
// 环境配置映射
var ENV_CONFIG = {
......
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