|
@@ -193,6 +193,7 @@ import api from "@/server/home";
|
193
|
193
|
import vanList from "vant/lib/list";
|
194
|
194
|
import minePupop from "../../components/minePupop/index.vue";
|
195
|
195
|
import "vant/lib/list/style";
|
|
196
|
+import { log } from 'console';
|
196
|
197
|
export default {
|
197
|
198
|
data() {
|
198
|
199
|
return {
|
|
@@ -247,8 +248,10 @@ export default {
|
247
|
248
|
// 美妆产品核销
|
248
|
249
|
goodsPickUp() {
|
249
|
250
|
api.goodsPickUp({ code: this.goodsCode }).then((res) => {
|
250
|
|
- this.goodsList = res.data;
|
251
|
|
- this.isGoodsPanel = true;
|
|
251
|
+ if(res.code==200){
|
|
252
|
+ this.goodsList = res.data;
|
|
253
|
+ this.isGoodsPanel = true;
|
|
254
|
+ }
|
252
|
255
|
});
|
253
|
256
|
},
|
254
|
257
|
// 美妆产品取货
|