This commit is contained in:
DESKTOP-GMUNQ1B\k 2024-04-20 14:32:35 +08:00
parent dc02874f9a
commit 5fea00c827
5 changed files with 78 additions and 41 deletions

View File

@ -82,6 +82,10 @@
returnUrl: {
type: String,
default: ''
},
sale_type: {
type: String,
default: ''
}
},
data() {
@ -235,7 +239,7 @@
icon: 'success'
}, {
tab: 5,
url: goPages + '?status=1'
url: goPages + '?status=1&sale_type=' + that.sale_type
});
break;
case 'alipay':
@ -267,7 +271,7 @@
icon: 'success'
}, {
tab: 5,
url: goPages + 'status=1'
url: goPages + 'status=1&sale_type=' + that.saleType
});
}).catch(res => {
console.log('测试支付数据无效的catch' + res.data)
@ -281,7 +285,7 @@
title: '取消支付'
}, {
tab: 5,
url: goPages + '?status=0'
url: goPages + '?status=0&sale_type=' + that.sale_type
});
}
}
@ -306,7 +310,7 @@
icon: 'success'
}, {
tab: 5,
url: goPages + 'status=1'
url: goPages + 'status=1&sale_type=' + that.sale_type
});
},
fail: (e) => {
@ -319,7 +323,8 @@
title: '取消支付'
}, {
tab: 5,
url: goPages + '?status=0'
url: goPages + '?status=0&sale_type=' + that
.sale_type
});
}
},
@ -354,7 +359,8 @@
icon: 'success'
}, {
tab: 5,
url: goPages + '?status=1'
url: goPages + '?status=1&sale_type=' + that
.sale_type
});
return that.$util.Tips({
@ -362,7 +368,8 @@
icon: 'success'
}, {
tab: 5,
url: goPages + '?status=1'
url: goPages + '?status=1&sale_type=' + that
.sale_type
});
},
fail: function(e) {
@ -434,7 +441,8 @@
icon: 'success'
}, {
tab: 5,
url: goPages + 'status=1'
url: goPages + 'status=1&sale_type=' + that
.sale_type
});
},

View File

@ -521,27 +521,20 @@
overflow: false,
diyId: 0,
preview: false,
isSupport: true
isSupport: true,
};
},
onTabItemTap(e) {
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
},
//
onPageScroll(e) {
this.isFixed = e.scrollTop > 40;
// uni.setTabBarItem({
// index: 0,
// text: "123",
// selectedIconPath: "/static/tabbar_icon/b-a.png"
// })
// this.$forceUpdate();
if (this.isHeaderSerch) {
let isScroll = false
isScroll = e.scrollTop > 50
@ -551,6 +544,21 @@
}
// scrollTopeasy-loadimage
uni.$emit('scroll');
if (e.scrollTop >= 100) {
uni.setTabBarItem({
index: 0,
text: "首页",
selectedIconPath: "/static/tabbar_icon/back_a.png"
})
} else {
uni.setTabBarItem({
index: 0,
text: "首页",
selectedIconPath: "/static/tabbar_icon/a-a.png"
})
}
},
/**
@ -627,9 +635,7 @@
onHide() {
uni.setStorageSync('isIntegral', false)
},
onReady() {
},
watch: {
globalDatas(nVal, oVal) {
// #ifdef H5

View File

@ -73,7 +73,8 @@
<view class='num'>{{orderData.noComment || 0}}</view>
</view>
</view> -->
<navigator class="search acea-row row-middle" :url="`/pages/users/order_list/search?sale_type=${sale_type}`" hover-class="none">
<navigator class="search acea-row row-middle" :url="`/pages/users/order_list/search?sale_type=${sale_type}`"
hover-class="none">
<text class="iconfont icon-sousuo"></text>
搜索我的订单
</navigator>
@ -345,7 +346,7 @@
</view>
<!-- <home></home> -->
<payment :payMode='payMode' :pay_close="pay_close" @onChangeFun='onChangeFun' :order_id="pay_order_id"
:totalPrice='totalPrice'></payment>
:totalPrice='totalPrice' :sale_type="sale_type"></payment>
<addInvoicing ref="addInvoicing" @changeInvoiceClose="changeInvoiceClose" :invoice='invoice'></addInvoicing>
@ -523,9 +524,7 @@
toLogin()
}
},
onShow() {
},
onReady: function() {
// #ifdef H5
this.$nextTick(() => {
@ -731,11 +730,13 @@
uni.hideLoading();
if (self.orderStatus == 0) {
uni.navigateTo({
url: '/pages/order_details/stay?order_id=' + order_id + '&sale_type=' + this.sale_type
url: '/pages/order_details/stay?order_id=' + order_id + '&sale_type=' +
this.sale_type
})
} else {
uni.navigateTo({
url: '/pages/order_details/index?order_id=' + order_id + '&sale_type=' + this.sale_type
url: '/pages/order_details/index?order_id=' + order_id + '&sale_type=' +
this.sale_type
})
}
}).catch(() => {

View File

@ -571,8 +571,30 @@
this.getNav();
this.initData();
},
onPageScroll() {
onTabItemTap(e) {
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
},
onPageScroll(e) {
uni.$emit('scroll');
if (e.scrollTop >= 100) {
uni.setTabBarItem({
index: 1,
text: "批发",
selectedIconPath: "/static/tabbar_icon/back_a.png"
})
} else {
uni.setTabBarItem({
index: 1,
text: "批发",
selectedIconPath: "/static/tabbar_icon/b-a.png"
})
}
},
onPullDownRefresh() {
this.initData(true, true);

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB