修复bug

This commit is contained in:
weipengfei 2023-11-08 09:31:10 +08:00
parent 6480227fd3
commit 228e515985
4 changed files with 11 additions and 6 deletions

View File

@ -466,8 +466,8 @@
category_id: this.cloudList[this.current]?.category_id || "",
order: this.type,
keyword: this.keyword,
page_num: this.page_num,
location: this.location
page: this.page_num,
location: this.location
}).then(res => {
if (res.data.list.length == 0) {
this.status = "nomore"
@ -748,7 +748,7 @@
category_id: this.cloudList[this.current]?.category_id || "",
order: this.type,
keyword: this.keyword,
page_num: this.page_num,
page: this.page_num,
location: this.location
}).then(res => {
this.goodsList = res.data.list;

View File

@ -555,7 +555,7 @@
category_id: this.cloudList[this.current]?.category_id || "",
order: this.type,
keyword: this.keyword,
page_num: this.page_num,
page: this.page_num,
location: this.location
}).then(res => {
if (res.data.list.length == 0) {
@ -837,7 +837,7 @@
category_id: this.cloudList[this.current]?.category_id || "",
order: this.type,
keyword: this.keyword,
page_num: this.page_num,
page: this.page_num,
location: this.location
}).then(res => {

View File

@ -479,6 +479,10 @@
this.street_id = options.street_id
this.street = options.townName
this.product_type = options.product_type ?? 0
if(this.$store.state.storage.location.lat){
this.latitude = this.$store.state.storage.location.lat;
this.longitude = this.$store.state.storage.location.long;
}
if (options.street_id != undefined) {
this.sotreParam.street_id = options.street_id
}
@ -819,7 +823,7 @@
category_id: this.sotreParam.category_id,
type_id: this.sotreParam.type_id,
street_id: this.sotreParam.street_id,
credit_buy: this.credit_buy
credit_buy: this.credit_buy,
}
if (this.latitude) {
rqData.location = this.latitude + ',' + this.longitude

View File

@ -606,6 +606,7 @@
this.isshow = true
uni.setStorageSync('loction', true);
}
// console.log(this.$store.state.storage.location);
if(this.$store?.state?.storage?.location?.lat){
this.isshow = false
this.latitude = this.$store.state.storage.location.lat;