Checkbox多选框

2019-11-08  本文已影响0人  兰夏天

1 模板事件中用到$event能 不改变默认返回值

1.1 事件 change 复选框状态改变时触发,且回调返回当前复选框的状态为true还是false

  <a-col
            :xl="4"
            :lg="6"
            :md="6"
            :sm="24"
            class="btninput-check">
            <a-checkbox
              @change="checkchange ($event, 'ups')"
              defaultChecked>上规格 </a-checkbox>
            <a-input-number
              placeholder="请输入"
              size="small"
              :disabled="!ups"
              v-model="upSpecification"
            />
          </a-col>
          <a-col
            :xl="5"
            :lg="6"
            :md="6"
            :sm="24"
            class="btninput-check textright">
            <a-checkbox
              @change="checkchange ($event, 'tar')"
              defaultChecked>目标值</a-checkbox>
            <a-input-number
              placeholder="请输入"
              size="small"
              :disabled="!tar"
              v-model="targetvalue"
            />
          </a-col>
          <a-col
            :xl="5"
            :lg="6"
            :md="6"
            :sm="24"
            class="btninput-check textright">
            <a-checkbox
              @change="checkchange ($event, 'low')"
              defaultChecked>下规格</a-checkbox>
            <a-input-number
              placeholder="请输入"
              size="small"
              :disabled="!low"
              v-model="lowSpecification"
            />         
          </a-col>
  checkchange (e, para2) {
      var that = this
      switch (para2) {
        case 'ups':
          that.ups = e.target.checked
          that.inputNum.upSpecification = e.target.checked ? that.upSpecification : undefined
          break
        case 'tar':
          that.tar = e.target.checked
          that.inputNum.targetvalue = e.target.checked ? that.targetvalue : undefined
          break
        case 'low':
          that.low = e.target.checked
          that.inputNum.lowSpecification = e.target.checked ? that.lowSpecification : undefined
          break
        default:
      }
    },

上一篇 下一篇

猜你喜欢

热点阅读