lipengtao 6 years ago
parent
commit
9081098768
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/searchBar/index.vue

+ 1 - 1
src/components/searchBar/index.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
  <el-form-item :label="relevant.label" :prop="relevant.prop">
3
    <el-select v-model="input" filterable remote reserve-keyword :placeholder="relevant.placeholder" :remote-method="remoteMethod"
3
    <el-select v-model="input" clearable filterable remote reserve-keyword :placeholder="relevant.placeholder" :remote-method="remoteMethod"
4 4
      :loading="loading" @change='change(input)'>
5 5
      <el-option v-for="item in optionsList" :key="item.value" :label="item.label" :value="item.value">
6 6
        <span>{{item.label}}</span><span style="float:right;" v-if="item.title">{{item.title}}</span>