输入框快速检索

输入框快速检索

图例
在这里插入图片描述

结构
<div>
      <div class="b"></div>
            <div class="c">
              <span class="spa-a">其他选项:</span>
              <span class="spa-b">标题:</span>
              <a-input @change="handleTitleChange" style="width: 280px" placeholder="请输入标题"></a-input>
              <!--
                <a-select @change="handleCreatorChange" style="width: 280px">
                  <a-select-option value="不限">不限</a-select-option>
                  <a-select-option
                    v-for="(item, index) in creator_all"
                    :key="String(item.ldapuser)"
                    :value="String(item.ldapuser)"
                  >{{ item.displayname}}</a-select-option>
                </a-select>
              -->
      </div>
 </div>
数据
data(){
    return{
      // 表格
      columns,
      columns_inter,
      law_list: [],
      law_title: '',
      inter_list: [],
      creator_all: [],
      creator: [],
    }
}
方法
    // 表格
    onChange,
    handleTitleChange(value) {
      this.law_title = value.target.value
      this.$http
        .get('/cms/law/list', {
          module: 'LEGAL_LAW',
          class_id: this.selectedTags,
          title: this.law_title,
        })
        .then(
          (response) => {
            if (response.code !== 200) {
              //this.$message.error(`查询分类失败,原因: ${result.message}`);
              this.law_list = []
            } else {
              let res = response.result
              this.law_list = res.map((item) => {
                //item['key'] = item['id'];
                item['visible'] = false
                return item
              })
            }
          },
          (error) => {
            this.$message.error(`获取分类失败`)
          }
        )
    },
样式
.b {
    border: 1px dotted #e9e9e9;
}
.c {
    margin-top: 16px;
    .spa-a {
        width: 70px;
        height: 22px;
        font-size: 14px;
        // font-family: PingFangSC-Regular, PingFang SC;
        // font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(51, 51, 51, 1);
        line-height: 22px;
    }
    .spa-b {
        width: 42px;
        height: 22px;
        font-size: 14px;
        // font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: rgba(85, 85, 85, 1);
        line-height: 22px;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值