123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- const api = require('../../../utils/api.js');
- const util = require('../../../utils/util.js');
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- index: 0,
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- this.req()
- },
- req(){
- let that=this
- wx.request({
- url: api.findProposeList,
- data: { loginId: wx.getStorageSync('loginId'), page: 1, rows:1000},
- success(res){
- let yesData=0,noData=0
- for(let index in res.data.data.data){
- if (res.data.data.data[index].newreply){
- yesData++
- }
- if (!res.data.data.data[index].newreply){
- noData++
- }
- }
- if (that.data.index==0){//全部
- if (res.data.data.Total<20){
- that.data.nodata=false
- }
- that.data.allMsg = res.data.data.data
- that.setData({
- ['allMsg']: res.data.data.data,
- ['yesMsg']: yesData>0?res.data.data.data:'',
- ['noMsg']: noData>0?res.data.data.data:'',
- })
- }
- // if (that.data.index == 1){//已回复
- // if (res.data.data.Total < 20) {
- // that.data.nodata = false
- // }
- // that.data.yesMsg = res.data.data.data
- // that.setData({
- // ['yesMsg']: res.data.data.data
- // })
- // }
- // if (that.data.index == 1) {//未回复
- // if (res.data.data.Total < 20) {
- // that.data.nodata = false
- // }
- // that.data.noMsg = res.data.data.data
- // that.setData({
- // ['noMsg']: res.data.data.data
- // })
- // }
- }
- })
- },
- // 左右滑动切换
- swiper: function (e) {
- this.setData({
- index: e.detail.current
- })
- },
- // tab切换
- tab: function (e) {
- let that = this
- that.setData({
- index: e.currentTarget.dataset.index,
- current_index: e.currentTarget.dataset.index,
- })
- },
- detail:function(e){
- wx.navigateTo({
- url: '../proposalDetails/proposalDetails?id='+e.currentTarget.dataset.id,
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|