123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- var app = getApp();
- var util = require('../../utils/util.js');
- var wcache = require('../../utils/wcache.js');
- var status = require('../../utils/index.js');
- Page({
- mixins: [require('../../mixin/cartMixin.js'), require('../../mixin/globalMixin.js')],
- /**
- * 页面的初始数据
- */
- data: {
- list: [],
- info: [],
- cartNum: 0
- },
- supplyId: 0,
- page: 1,
- is_only_distribution: 0,
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- app.setShareConfig();
- this.supplyId = options.id || 0;
- this.is_only_distribution = options.is_only_distribution || 0;
- if (options.share_id != 'undefined' && options.share_id > 0) wcache.put('share_id', options.share_id);
- this.getData();
- },
- /**
- * 授权成功回调
- */
- authSuccess: function () {
- this.getData();
- this.setData({
- needAuth: false
- })
- },
- getData: function () {
- wx.showLoading();
- var token = wx.getStorageSync('token');
- var that = this;
- var cur_community = wx.getStorageSync('community');
- app.util.request({
- 'url': 'entry/wxapp/index',
- 'data': {
- controller: 'supply.get_details',
- token: token,
- page: that.page,
- is_random: 1,
- head_id: cur_community.communityId,
- id: that.supplyId,
- is_only_distribution: this.is_only_distribution
- },
- dataType: 'json',
- success: function (res) {
- wx.hideLoading();
- if (res.data.code == 0) {
- let oldList = that.data.list;
- let info = res.data.data || [];
- let list = oldList.concat(res.data.list);
- let noData = false;
- if(that.page == 1) {
- wx.setNavigationBarTitle({
- title: info.storename || info.shopname || '供应商'
- })
- if (list.length==0) noData = true;
- }
- let noMore = false;
- if (res.data.list.length == 0) noMore = true;
- that.setData({ list, info, noMore, noData })
- } else {
- that.setData({ noMore: true })
- }
- }
- })
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- let that = this;
- util.check_login_new().then((res) => {
- if (res) {
- this.setData({ needAuth: false });
- (0, status.cartNum)('', true).then((res) => {
- res.code == 0 && that.setData({ cartNum: res.data })
- });
- } else {
- let id = this.specialId;
- this.setData({ needAuth: true, navBackUrl: `/lionfish_comshop/pages/supply/home?id=${id}` });
- }
- })
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- this.data.noMore || (this.page++, this.getData());
- },
- onShareAppMessage: function (res) {
- var share_title = this.data.info.storename || '供应商主页';
- var share_id = wx.getStorageSync('member_id');
- var id = this.supplyId;
- var share_path = `lionfish_comshop/pages/supply/home?id=${id}&share_id=${share_id}`;
- return {
- title: share_title,
- path: share_path,
- success: function (res) {
- // 转发成功
- },
- fail: function (res) {
- // 转发失败
- }
- }
- },
- onShareTimeline: function (res) {
- var share_title = this.data.info.storename || '供应商主页';
- var share_id = wx.getStorageSync('member_id');
- var id = this.supplyId;
- var query = `id=${id}&share_id=${share_id}`;
- return {
- title: share_title,
- query,
- success: function (res) {
- // 转发成功
- },
- fail: function (res) {
- // 转发失败
- }
- }
- }
- })
|