This commit is contained in:
weipengfei 2024-01-31 18:35:35 +08:00
parent 97ba913d7d
commit 6b1c9700d6
2 changed files with 7 additions and 3 deletions

View File

@ -49,7 +49,7 @@
.a_c_home{
width: 600rpx;
/* #ifdef H5 */
height: 65vh;
height: 75vh;
/* #endif */
/* #ifndef H5 */
height: 90vh;

View File

@ -1786,7 +1786,7 @@
},
//
openTipsRef(){
if(this.source!=103&&this.source!=105) this.$refs.tipsRef.open();
if(this.source!=103&&this.source!=105&&this.totalPrice>=100) this.$refs.tipsRef.open();
else this.SubOrder();
},
//
@ -1799,8 +1799,12 @@
//
gotoCloud(){
this.closeTipsRef();
let street_id = this.$store.state.storage.address.street_id;
let townName = this.$store.state.storage.address.townName;
let lat = this.$store.state.storage.location.lat;
let long = this.$store.state.storage.location.long;
uni.navigateTo({
url: '/pages/nongKe/cloud_entrepot/indexh'
url: `/pages/nongKe/cloud_entrepot/indexh?street_id=${street_id}&townName=${townName}&source=103&location=${lat},${long}`
})
}
}