123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- const app = getApp()
- const WXAPI = require('apifm-wxapi')
- const AUTH = require('../../../utils/auth')
- const wxpay = require('../../../utils/pay.js')
- const APP = getApp()
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- level:0,
- description:''
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- var level = options.level;
- if(level==0){
- wx.setNavigationBarTitle({
- title: '团队长列表',
- })
- this.setData({
- description:'暂无团队长'
- })
- }
- if(level==1){
- wx.setNavigationBarTitle({
- title: '团员列表',
- })
- this.setData({
- description:'暂无团员'
- })
- }
- AUTH.checkHasLogined().then(isLogined => {
- console.log("用到了1")
- this.setData({
- wxlogin: isLogined
- })
- if (isLogined) {
- this.fxMembers(level)
- }
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
-
- },
- getUserApiInfo: function () {
- var that = this;
- WXAPI.userDetail(wx.getStorageSync('token')).then(function (res) {
- if (res.code == 0) {
- let _data = {}
- _data.apiUserInfoMap = res.data
- if (res.data.base.mobile) {
- _data.userMobile = res.data.base.mobile
- }
- if (that.data.order_hx_uids && that.data.order_hx_uids.indexOf(res.data.base.id) != -1) {
- _data.canHX = true // 具有扫码核销的权限
- }
- const adminUserIds = wx.getStorageSync('adminUserIds')
- if (adminUserIds && adminUserIds.indexOf(res.data.base.id) != -1) {
- _data.isAdmin = true
- }
- if (res.data.peisongMember && res.data.peisongMember.status == 1) {
- _data.memberChecked = false
- } else {
- _data.memberChecked = true
- }
- that.setData(_data);
- that.commision();
- }
- })
- },
- cancelLogin() {
- wx.switchTab({
- url: '/pages/my/index'
- })
- },
- processLogin(e) {
- if (!e.detail.userInfo) {
- wx.showToast({
- title: '已取消',
- icon: 'none',
- })
- return;
- }
- AUTH.register(this);
- },
- async fxMembers(level){
- const res = await WXAPI.partnerMembers({
- token:wx.getStorageSync('token'),
- type:level
- })
- if(res.code==0){
- this.setData({
- memberList:res.data
- })
- }
- console.log("fxmenber",res)
- }
- })
|