You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.8 KiB
81 lines
1.8 KiB
var util = require('../../utils/util.js');
|
|
var api = require('../../config/api.js');
|
|
|
|
Page({
|
|
data: {
|
|
navList: [],
|
|
categoryList: [],
|
|
currentCategory: {},
|
|
scrollLeft: 0,
|
|
scrollTop: 0,
|
|
goodsCount: 0,
|
|
scrollHeight: 0
|
|
},
|
|
onLoad: function (options) {
|
|
this.getCatalog();
|
|
var id = options.id;
|
|
if(id){
|
|
this.getCurrentCategory(id);
|
|
}
|
|
},
|
|
getCatalog: function () {
|
|
//CatalogList
|
|
let that = this;
|
|
wx.showLoading({
|
|
title: '加载中...',
|
|
});
|
|
util.request(api.CatalogList).then(function (res) {
|
|
console.log(res)
|
|
that.setData({
|
|
navList: res.data.categoryList,
|
|
currentCategory: res.data.currentCategory
|
|
});
|
|
wx.hideLoading();
|
|
});
|
|
util.request(api.GoodsCount).then(function (res) {
|
|
that.setData({
|
|
goodsCount: res.data.goodsCount
|
|
});
|
|
});
|
|
|
|
},
|
|
getCurrentCategory: function (id) {
|
|
let that = this;
|
|
util.request(api.CatalogCurrent, { id: id })
|
|
.then(function (res) {
|
|
that.setData({
|
|
currentCategory: res.data
|
|
});
|
|
});
|
|
},
|
|
onReady: function () {
|
|
// 页面渲染完成
|
|
},
|
|
onShow: function () {
|
|
// 页面显示
|
|
},
|
|
onHide: function () {
|
|
// 页面隐藏
|
|
},
|
|
onUnload: function () {
|
|
// 页面关闭
|
|
},
|
|
getList: function () {
|
|
var that = this;
|
|
util.request(api.ApiRootUrl + 'api/catalog/' + that.data.currentCategory.cat_id)
|
|
.then(function (res) {
|
|
that.setData({
|
|
categoryList: res.data,
|
|
});
|
|
});
|
|
},
|
|
switchCate: function (event) {
|
|
var that = this;
|
|
var currentTarget = event.currentTarget;
|
|
if (this.data.currentCategory.id == event.currentTarget.dataset.id) {
|
|
return false;
|
|
}
|
|
|
|
this.getCurrentCategory(event.currentTarget.dataset.id);
|
|
}
|
|
}) |