1.优化首页定位问题

master
杨杰 1 year ago
parent aac6ef4e1e
commit 9ad6909d34
  1. 8
      App.vue
  2. 14
      pages/tabBar/home/home.vue
  3. 1
      pages/user/positioning/positioning.vue

@ -66,6 +66,8 @@
pelletoilList: '', pelletoilList: '',
// //
shareNum: 0, shareNum: 0,
//
isSelect: false
}, },
@ -263,6 +265,7 @@
border: solid 1px #cccccc !important; border: solid 1px #cccccc !important;
overflow: hidden; overflow: hidden;
} }
// //
checkbox.mycheck .uni-checkbox-input-checked::before, checkbox.mycheck .uni-checkbox-input-checked::before,
checkbox.mycheck .wx-checkbox-input-checked::before { checkbox.mycheck .wx-checkbox-input-checked::before {
@ -276,6 +279,7 @@
::-webkit-scrollbar { ::-webkit-scrollbar {
display: none; display: none;
} }
/* #endif */ /* #endif */
/* 解决H5 的问题 */ /* 解决H5 的问题 */
/* #ifdef H5 */ /* #ifdef H5 */
@ -283,6 +287,7 @@
/* 隐藏滚动条,但依旧具备可以滚动的功能 */ /* 隐藏滚动条,但依旧具备可以滚动的功能 */
display: none display: none
} }
/* #endif */ /* #endif */
@ -292,12 +297,13 @@
border-top-left-radius: 10px !important; border-top-left-radius: 10px !important;
border-bottom-left-radius: 10px !important; border-bottom-left-radius: 10px !important;
} }
.cart-num .uni-numbox-btns { .cart-num .uni-numbox-btns {
background-color: #f6f6f6 !important; background-color: #f6f6f6 !important;
} }
.cart-num .uni-numbox__plus { .cart-num .uni-numbox__plus {
border-top-right-radius: 10px !important; border-top-right-radius: 10px !important;
border-bottom-right-radius: 10px !important; border-bottom-right-radius: 10px !important;
} }
</style> </style>

@ -138,8 +138,7 @@
</view> </view>
</view> </view>
<!-- 大图 --> <!-- 大图 -->
<view class="width90 mart20 alijusstart" v-if="item.type == 4" <view class="width90 mart20 alijusstart" v-if="item.type == 4" @click="goGoodsList(item.jumpUrl)">
@click="goGoodsList(item.jumpUrl)">
<view class="width70 font18 fcor333"> <view class="width70 font18 fcor333">
{{item.name}} {{item.name}}
</view> </view>
@ -222,10 +221,12 @@
onShow() { onShow() {
// this.homeCateList = []; // this.homeCateList = [];
// if (app.globalData.cityName != '') { if (app.globalData.cityName != '') {
// this.city = app.globalData.qianzhuCityName; this.city = app.globalData.qianzhuCityName;
// this.getCmsContentcmsContent(); if (app.globalData.isSelect) {
// } this.getCmsContentcmsContent();
}
}
}, },
onLoad(options) { onLoad(options) {
let that = this; let that = this;
@ -338,6 +339,7 @@
getCmsContent(params).then(res => { getCmsContent(params).then(res => {
this.isdisplay = false; this.isdisplay = false;
if (res.return_code == '000000') { if (res.return_code == '000000') {
app.globalData.isSelect = false;
this.homeCateList = res.return_data; this.homeCateList = res.return_data;
} }
}); });

@ -111,6 +111,7 @@
app.globalData.qianzhuCityName = res.return_data.cityName; app.globalData.qianzhuCityName = res.return_data.cityName;
app.globalData.cityId = res.return_data.regionId; app.globalData.cityId = res.return_data.regionId;
app.globalData.companyId = res.return_data.companyId; app.globalData.companyId = res.return_data.companyId;
app.globalData.isSelect = true;
uni.navigateBack({}) uni.navigateBack({})
} else { } else {
uni.showToast({ uni.showToast({

Loading…
Cancel
Save