personal-list.js 3.4 KB
import {
  getBindtapData
} from '../../utils/util'

let app = getApp();
Page({
  data: {
    isOverShare: true,
    authorizeVisible: false,
    total: 0,
    page: 1,
    size: 10,
    dataList: [],
    options: {},
    personInfo: {}
  },
  onShareAppMessage(res) {
    if (res.from === 'button') {
      // 来自页面内转发按钮
    } else {
      // 打点
      app.stat({
        classify: "share",
        action: "account_page_share",
        primaryCode: this.data.options.c,
      });
    }


    let opts = this.data.options;
    let path = `pages/personal-list/personal-list?c=${opts.c}`;
    return {
      path,
    }
  },
  showAuth() {
    this.setData({
      authorizeVisible: true
    })
  },
  onLoad(options) {
    let tempOptions = JSON.parse(decodeURIComponent(JSON.stringify(options)));
    this.setData({
      options: tempOptions
    });
    console.log("tempOptions:", tempOptions);
    this.initData();
    wx.aldstat.sendEvent('进入页面', {
      '页面名字': '个人列表页'
    });
  },
  initData() {
    this.resetPage();
    this.queryAccountDetail();
    this.queryVideoList();
  },
  /**
   * 到达底部
   * 做加载更多操作
   */
  onReachBottom() {
    if (this.data.dataList.length < this.data.total) {
      this.setData({
        page: this.data.page + 1
      });
      this.queryVideoList();
    }
  },

  // 重置页面列表 点击搜索条件时需要
  resetPage() {
    this.setData({
      page: 1,
      dataList: [],
      queueCode: "",
    })
  },
  onDetailHandler(evt) {
    let curItem = getBindtapData(evt);
    app.router.push({
      path: "detail",
      query: {
        c: curItem.videoCode || ""
      }
    })
  },


  onShareItem(evt){
    let curItem = getBindtapData(evt);
    app.stat({
      classify: "share",
      action: "account_page_button_share",
      primaryCode: curItem.videoCode
    });
  },

  /**
   * 账号星期
   */
  queryAccountDetail() {
    return new Promise((resolve, reject) => {
      app.post({
        url: app.api.accountDetail,
        data: {
          accountCode: this.data.options.c
        }
      }).then((result) => {
        this.setData({
          personInfo: result
        })
        resolve(result);
      }).catch((err) => {
        reject(err)
      });
    });
  },

  /**
   * 获取视频列表
   */
  queryVideoList() {
    return new Promise((resolve, reject) => {
      app.post({
        url: app.api.videoAcccout,
        data: {
          page: this.data.page,
          size: this.data.size,
          accountCode: this.data.options.c
        }
      }).then((result) => {
        let dataList = result.list;
        dataList = this.data.dataList.concat(dataList);
        this.setData({
          dataList: dataList,
          total: result.total,
        })
        resolve(result);
      }).catch((err) => {
        reject(err)
      });
    });
  },
  /**
   * 隐藏蒙层
   */
  hideMask() {
    this.setData({
      productDetailVisible: false,
      authorizeVisible: false,
    })
  },
  /**
   * 子组件事件
   * @param {*} evt
   */
  evtcomp(evt) {
    let {
      name,
      data
    } = evt.detail;
    switch (name) {

      // 隐藏蒙层
      case "_evt_hide_mask":
        this.hideMask();
        break;

        /**
         * 重拉数据已在
         */
      case "_evt_auth_complete":
        // this.initData();
        this.hideMask();
        break;

      default:
        break;
    }
  },
})