|
@@ -219,7 +219,7 @@ export default {
|
|
|
this.recallBillList.map(item=>{
|
|
|
item.isChecked = true;
|
|
|
})
|
|
|
- this.chooseArr = this.chooseArr.concat(this.recallBillList);
|
|
|
+ this.chooseArr = this.recallBillList
|
|
|
}else{
|
|
|
this.recallBillList.map(item=>{
|
|
|
item.isChecked = false;
|
|
@@ -387,18 +387,18 @@ export default {
|
|
|
detailList: arr
|
|
|
}
|
|
|
insert(params).then(res => {
|
|
|
- uni.hideLoading()
|
|
|
+
|
|
|
if (res.status == 200) {
|
|
|
uni.showToast({
|
|
|
title:res.message
|
|
|
})
|
|
|
setTimeout(()=>{
|
|
|
uni.navigateTo({
|
|
|
- url:'/pages/shuntBackManage/cancellingStocks?sn='+res.data.sn
|
|
|
+ url:'/pages/shuntBackManage/cancellingStocks?sn='+res.data
|
|
|
})
|
|
|
},800)
|
|
|
}
|
|
|
-
|
|
|
+ uni.hideLoading()
|
|
|
});
|
|
|
},
|
|
|
// 校验滞销天数数值范围
|