商城首页index.js

  • • 发表于 8年前
  • • 作者 喀左商城客服
  • • 1365 人浏览
  • • 0 条评论
  • • 最后编辑时间 8年前
  • • 来自 [其它]

原创声明:本文为作者原创,未经允许不得转载,经授权转载需注明作者和出处

const AV = require(‘../../utils/av-weapp.js’)
Page({
data: {
banner: [],
goods: [],
bannerHeight: Math.ceil(290.0 / 750.0 * getApp().screenWidth)
},
onLoad: function (options) {
this.loadBanner();
this.loadMainGoods();
this.getInviteCode(options);
},
getInviteCode: function (options) {
if (options.uid != undefined) {
wx.showToast({
title: ‘来自用户:’ + options.uid + ‘的分享’,
icon: ‘success’,
duration: 2000
})
}
},
loadBanner: function () {
var that = this;
var query = new AV.Query(‘Banner’);
// query.include(‘image’);
query.find().then(function (bannerObjects) {
var banner = [];
for (var i = 0; i < bannerObjects.length; i++) {
banner.push(bannerObjects[i].get(‘image’).get(‘url’));
}
that.setData({
banner: banner
});
});
},
loadMainGoods: function () {
var that = this;
var query = new AV.Query(‘Goods’);
query.equalTo(‘isHot’, true);
query.find().then(function (goodsObjects) {
that.setData({
goods: goodsObjects
});
});
},
showDetail: function (e) {
var index = e.currentTarget.dataset.index;
var goodsId = this.data.goods[index].id;
wx.navigateTo({
url: “../goods/detail/detail?objectId=” + goodsId
});
},
showCategories: function () {
// wx.navigateTo({
// url: “../category/category”
// });
wx.switchTab({
url: “../category/category”
});
},
showOrders: function () {
wx.navigateTo({
url: “../order/list/list?status=1”
});
},
onShareAppMessage: function () {
return {
title: ‘灵动开源电商系统’,
desc: ‘一个基于LeanCloud开发的开源电商系统’,
path: ‘/pages/index/index?uid=4719784’
}
},
showGoods: function () {
wx.navigateTo({
url: ‘../goods/detail/detail?objectId=5816e3b22e958a0054a1d711’
});
}
})

分享到:
0条评论
Ctrl+Enter
作者

喀左商城客服

喀左商城客服

APP:5 帖子:2 回复:85 积分:178

已加入社区[2846]天

好东西和大家一起分享

作者详情》
Top