|
@@ -69,7 +69,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</scroll-view>
|
|
|
- <view @click="toChooseProduct" class="nodata" v-else>
|
|
|
+ <view class="nodata" v-else>
|
|
|
<image :src="`/static/${$config('themePath')}/def_no_data@3x.png`"></image>
|
|
|
<view class="nodataTip">
|
|
|
暂无产品,请点击
|
|
@@ -137,9 +137,9 @@ export default {
|
|
|
_this.theme = getApp().globalData.theme;
|
|
|
_this.shelfSn = options.shelfSn;
|
|
|
_this.shelfName = options.shelfName;
|
|
|
- _this.queryParam.shelfSn = options.shelfSn
|
|
|
- // _this.recallBillList = _this.$store.state.vuex_tempBackData || []
|
|
|
+ _this.recallBillList=_this.$store.state.shuntBackList || []
|
|
|
uni.$on("chooseBackProduct",function(data){
|
|
|
+
|
|
|
_this.recallBillList = _this.recallBillList.concat(data).sort(function(a,b){
|
|
|
return (a.shelfPlaceCode+'').localeCompare(b.shelfPlaceCode+'');
|
|
|
});
|
|
@@ -169,7 +169,8 @@ export default {
|
|
|
ret.push(item.id)
|
|
|
})
|
|
|
return ret
|
|
|
- }
|
|
|
+ },
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
toChooseProduct(){
|