|
|
@@ -3,7 +3,7 @@
|
|
|
|
|
|
<div>
|
|
|
<el-select @change="getCurrentItem" v-model="currentItemName" filterable remote reserve-keyword placeholder="搜索花材" clearable ref="itemSearchRef"
|
|
|
- :remote-method="searchItem" style="width:260px;margin-left:30px;margin-top:15px;">
|
|
|
+ :remote-method="searchItem" style="width:280px;margin-left:30px;margin-top:15px;">
|
|
|
<el-option v-for="item in itemList" :key="item.id" :label="`${item.name}(${item.id})`" :value="item"> </el-option>
|
|
|
</el-select>
|
|
|
<el-input v-model="price" placeholder="请输入价格" style="width:130px;margin-left:10px;"></el-input>
|
|
|
@@ -11,7 +11,7 @@
|
|
|
|
|
|
<div>
|
|
|
<el-select @change="getCurrentCustom" v-model="currentCustomName" filterable remote reserve-keyword placeholder="搜索客户" clearable ref="customSearchRef"
|
|
|
- :remote-method="searchCustom" style="width:260px;margin-left:30px;margin-top:15px;">
|
|
|
+ :remote-method="searchCustom" style="width:280px;margin-left:30px;margin-top:15px;">
|
|
|
<el-option v-for="item in customList" :key="item.id" :label="`${item.name}(${item.id})`" :value="item"> </el-option>
|
|
|
</el-select>
|
|
|
|