1.新增首页菜单配置

yj-dev
杨杰 3 years ago
parent 29e46fa74a
commit f26b59d360
  1. 16
      App.vue
  2. 55
      pages/tabBar/home/home.vue

@ -5,15 +5,15 @@
// brestUrl: 'http://192.168.3.4:9302/brest', // brestUrl: 'http://192.168.3.4:9302/brest',
// imgUrl: 'https://192.168.3.4:9301/filesystem/', // imgUrl: 'https://192.168.3.4:9301/filesystem/',
// //
url: 'https://hsg.dctpay.com/crest', // url: 'https://hsg.dctpay.com/crest',
imgUrl: 'https://hsg.dctpay.com/filesystem/', // imgUrl: 'https://hsg.dctpay.com/filesystem/',
brestUrl : 'https://hsg.dctpay.com/brest', // brestUrl : 'https://hsg.dctpay.com/brest',
imageWxImg:'https://hsg.dctpay.com/filesystem/wxApplets/', // imageWxImg:'https://hsg.dctpay.com/filesystem/wxApplets/',
// //
// url: 'https://hsgcs.dctpay.com/crest', url: 'https://hsgcs.dctpay.com/crest',
// brestUrl : 'https://hsgcs.dctpay.com/brest', brestUrl : 'https://hsgcs.dctpay.com/brest',
// imgUrl: 'https://hsgcs.dctpay.com/filesystem/', imgUrl: 'https://hsgcs.dctpay.com/filesystem/',
// imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/', imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/',
userInfo: "", userInfo: "",
brestUserInfo : '', brestUserInfo : '',
openId: '', openId: '',

@ -49,9 +49,9 @@
<view class="category-list"> <view class="category-list">
<view class="category" v-for="(row, index) in categoryList" :key="index" @tap="toCategory(row)"> <view class="category" v-for="(row, index) in categoryList" :key="index" @tap="toCategory(row)">
<view class="img"> <view class="img">
<image :src="imagewxUrl+row.img"></image> <image :src="imageUrl+row.imgData"></image>
</view> </view>
<view class="text">{{ row.name }}</view> <view class="text">{{ row.title }}</view>
</view> </view>
</view> </view>
@ -253,29 +253,8 @@
pageNum: 1, pageNum: 1,
pageSize: 6, pageSize: 6,
// //
categoryList: [{ categoryList: [
id: 1,
name: '在线加油',
img: 'user/home1.png',
src: '/pages/goods/refuel/refuel'
},
{
id: 2,
name: '电影票',
img: 'user/home2.png',
src: '/pages/tabBar/order/order'
},
{
id: 3,
name: '肯德基',
img: 'user/home3.png',
src: '/pages/tabBar/order/order'
},
{
id: 4,
name: '话费充值',
img: 'user/home4.png'
}
], ],
// //
cpStuats: 1 cpStuats: 1
@ -299,7 +278,7 @@
this.getCouponListArea(); this.getCouponListArea();
this.getCouponListgold(); this.getCouponListgold();
this.getCmsContent(); this.getCmsContent();
// this.getCmsAactibity(); this.getCmsContentcmshome();
} }
}, },
onLoad() { onLoad() {
@ -348,7 +327,18 @@
// #endif // #endif
}, },
methods: { methods: {
//
getCmsContentcmshome() {
let params = {
regionId: app.globalData.cityId,
categoryCode: 'CMS_HOME_NAV'
}
getCmsContent(params).then(res => {
if (res.return_code == '000000') {
this.categoryList = res.return_data;
}
});
},
// //
getCmsContent() { getCmsContent() {
let params = { let params = {
@ -430,6 +420,7 @@
uni.hideLoading(); uni.hideLoading();
that.getCmsContent(); that.getCmsContent();
that.getCmsAactibity(); that.getCmsAactibity();
that.getCmsContentcmshome();
}, },
fail() { fail() {
uni.hideLoading() uni.hideLoading()
@ -685,11 +676,11 @@
}, },
// //
toCategory(item) { toCategory(item) {
if (item.name == '在线加油') { if (item.title == '在线加油') {
uni.navigateTo({ uni.navigateTo({
url: item.src url: item.ext1
}) })
} else if (item.name == '肯德基') { } else if (item.title == '肯德基') {
if (!app.globalData.userInfo) { if (!app.globalData.userInfo) {
uni.navigateTo({ uni.navigateTo({
url:'../../userLogin/userLogin' url:'../../userLogin/userLogin'
@ -705,7 +696,7 @@
uni.navigateTo({ uni.navigateTo({
url: '/pages/tabBar/order/order?id=1' url: '/pages/tabBar/order/order?id=1'
}) })
} else if (item.name == '电影票') { } else if (item.title == '电影票') {
if (!app.globalData.userInfo) { if (!app.globalData.userInfo) {
uni.navigateTo({ uni.navigateTo({
url:'../../userLogin/userLogin' url:'../../userLogin/userLogin'
@ -721,7 +712,7 @@
uni.navigateTo({ uni.navigateTo({
url: '/pages/tabBar/order/order?id=2' url: '/pages/tabBar/order/order?id=2'
}) })
} else if (item.name == '话费充值') { } else if (item.title == '话费充值') {
if (!app.globalData.userInfo) { if (!app.globalData.userInfo) {
uni.navigateTo({ uni.navigateTo({
url:'../../userLogin/userLogin' url:'../../userLogin/userLogin'

Loading…
Cancel
Save