实现换床位号的功能。

2020-01-15  本文已影响0人  冬天的_太阳
 selectCode(codeid) {
      // 获得已经选中的床位
   // dormAddStuList  右侧的列表
      var shopMs = this.dormAddStuList.reduce((list, item) => {
        list.push(item.nums); ///
        return list;
      }, []);

      // 获得列表返回的床位
      shopMs = shopMs.concat(...this.getActiveList);

      // 上一次已经选中的床位,现在又重新修改。
      let gg;
      this.activeList.forEach(item => {
        if (shopMs.indexOf(item) < 0) {
          gg = item;
        }
      });
      //  如果是上一次选过的床位
      if (gg) {
        this.bedList[gg].disabled = false;
      }
      // 所有不能选的床位号  为true
      shopMs.map((item, i) => {
        if (item !== "") {
          let a = this.bedList[item];
          this.bedList[item].disabled = true;
        }
      });

      this.activeList = shopMs; ///

      // this.bedList.map((item, index) => {
      //   if (item.value == codeid ) {
      //     this.num = item.num;
      //     item.disabled = true;

      //   } else {
      //     item.disabled = false;
      //   }

      // });
    },
  watch: {
    getActiveList(val) {
      this.getActiveList.map((item, i) => {
        if (item !== "") {
          let a = this.bedList[item];
          this.bedList[item].disabled = true;
        }
      });
    }
  },
上一篇下一篇

猜你喜欢

热点阅读