收藏
回答

computed watch 使用不了?

const moment = require("moment");
const {qxCloud } = require('../../../api/qxcloud');
const app = getApp();
const computedBehavior = require('miniprogram-computed');
Page({
  behaviors: [computedBehavior],
  /**
   * 页面的初始数据
   */
  data: {
    currentTab: "statistic",
    currnet:1,
    remedy:{
      rows:[],
      page:1,
      pageSize:10,
      total:0,
      loadEmpty:false,
      isLoading:false
    },
    errand:{
      rows:[],
      page:1,
      pageSize:10,
      total:0,
      loadEmpty:false,
      isLoading:false
    },
    vacations:{
      rows:[],
      page:1,
      pageSize:10,
      total:0,
      loadEmpty:false,
      isLoading:false


    },
  },
  watch: {
    'remedy.**'(remedy){
      console.log(remedy.rows);
      let self = this;
      if(self.data.currentTab == 'remedy' && self.data.batch_op.doing){
        console.log(remedy.rows);
      }
    },
    'vacations.**'(vacations){
      console.log(remedy.rows);
      let self = this;
      if(self.data.currentTab == 'vacation' && self.data.batch_op.doing){
        console.log(vacations.rows);
      }
    },
    'errand.**'(errand){
      console.log(remedy.rows);
      let self = this;
      if(self.data.currentTab == 'errand' && self.data.batch_op.doing){
        console.log(errand.rows);
      }
    },
  },
}
回答关注问题邀请回答
收藏

1 个回答

  • 柯
    2021-06-18

    构建npm了吗

    2021-06-18
    有用
    回复 6
    • 林呀林
      林呀林
      2021-06-21
      构建了,依赖安装了,不然它报错肯定是缺依赖的
      2021-06-21
      回复
    • 林呀林
      林呀林
      2021-06-21
      错误放在最上面了,搜都搜不到
      2021-06-21
      回复
    • Interesting😄
      Interesting😄
      2021-06-21
      是不是只支持组件内使用呢    你现在是在页面使用
      2021-06-21
      回复
    • 林呀林
      林呀林
      2021-06-23
      不是,官方那个demo下下来,之后,我有改成page用,可以正常用;主要我这报那错误,不知道咋解决
      2021-06-23
      回复
    • 小程序技术专员-Rom
      小程序技术专员-Rom
      2021-08-23回复林呀林
      4.0 版本之后接口出现了变更。
      如果你使用的是 4.0 版本以上可以使用以下方法。
      新的接口说明详细请查看:https://github.com/wechat-miniprogram/computed
      2021-08-23
      回复
    查看更多(1)
登录 后发表内容