查询条件

This commit is contained in:
2022-10-13 17:00:05 +08:00
parent 06995ac3d7
commit a8ba06e10e
2 changed files with 15 additions and 4 deletions

View File

@@ -8,7 +8,10 @@
<span class="filter_label">点位</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val1" />
<search-box
v-model="val1"
@input="handleChange1"
/>
</view>
</view>
<view class="filter_item">
@@ -16,7 +19,10 @@
<span class="filter_label">空轴/母卷</span>
</view>
<view class="filter_input_wraper">
<search-box v-model="val2" />
<search-box
v-model="val2"
@input="handleChange2"
/>
</view>
</view>
<view class="filter_item">
@@ -52,8 +58,13 @@
};
},
methods: {
handleChange (e) {
handleChange1 (e) {
console.log(e)
// this._pointStatusQuery()
},
handleChange2 (e) {
console.log(e)
// this._pointStatusQuery()
},
/** 查询 */
async _pointStatusQuery () {