table表格条件判断, 选中按钮置灰

 <el-button
            v-permission="['admin', 'buSrmCoopPo:close']"
            size="mini"
            type="primary"
            class="filter-item"
            plain
            :disabled="checkOpd()"
            @click="close()"
          >
            关闭
          </el-button>

=================================

/*关闭开启检测*/
      checkOpd() {
        if (this.mainSelections.length == 0) {
          return true;
        } else {
          const obj = this.mainSelections[0];
          if (obj.billStatus == "7") {
            return false;
          } else {
            return true;
          }
        }
      },
Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐