diff --git a/pages/index/index.vue b/pages/index/index.vue
index c951c45..a328445 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -83,7 +83,7 @@
{{item.name}}
-
+
@@ -264,7 +264,7 @@
-
+
@@ -537,14 +537,12 @@
num: 10
}
},
-
onPullDownRefresh() {
this.getGoods(true)
uni.stopPullDownRefresh()
},
onLoad() {
-
this.list1()
this.Fheight = uni.getSystemInfoSync().windowHeight + 'px';
},
@@ -668,6 +666,10 @@
}
},
+ changePopup(e){
+ if(e.show)uni.hideTabBar();
+ else uni.showTabBar();
+ },
//备注弹窗
refundModify(item) {
this.refundInfo = item;
@@ -679,7 +681,6 @@
agree() {
this.$refs.popup.open()
this.isFshow = false
-
},
//拒绝
refuse() {
diff --git a/pages/trading_hall/adddiscounts/index.vue b/pages/trading_hall/adddiscounts/index.vue
index 8a85112..7395266 100644
--- a/pages/trading_hall/adddiscounts/index.vue
+++ b/pages/trading_hall/adddiscounts/index.vue
@@ -609,7 +609,9 @@
},
/*获取选中的宝贝*/
getProduct(data) {
- this.productList = []
+ console.log(data);
+ this.productList = [];
+ this.formData.product_info=[];
this.price = 0;
if (data.length > 0) {
this.productList = data;
@@ -639,6 +641,7 @@
let that = this,
value = that.formData;
+ console.log(value, value.product_info[0].deliver_method);
if (value.image.length == 0) return that.$util.Tips({
title: '请添加图文图片'
});