Browse Source

搜索

master
赵鹏 1 month ago
parent
commit
8ab1c73f4f
  1. 13
      pages/enterprise.vue
  2. 16
      sub/owner/policy.vue

13
pages/enterprise.vue

@ -4,9 +4,9 @@
<van-search <van-search
:value="queryParams.enterprisesName" :value="queryParams.enterprisesName"
placeholder="输入企业名称或类型查询" placeholder="输入企业名称或类型查询"
@sreach="handleSearch"
@clear="resetQuery('enterpriseName')" @clear="resetQuery('enterpriseName')"
id="sreach" id="sreach"
@change="handleSearch"
/> />
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <van-dropdown-menu safe-area-tab-bar active-color="#17C653">
<van-dropdown-item <van-dropdown-item
@ -224,16 +224,19 @@ export default {
return data return data
}, },
querySelect(v, key) { querySelect(v, key) {
this.queryParams.pageNo = 1 //
this.queryParams[key] = v.detail this.queryParams[key] = v.detail
this.queryEnterprise() this.queryEnterprise()
}, },
handleSearch(e) { handleSearch(e) {
this.queryParams.pageNum = 1 // if(e.detail && e.detail.length > 1){
this.queryParams.name = e.detail // this.queryParams.pageNo = 1 //
this.getPolicyList() this.queryParams.enterprisesName = e.detail //
this.queryEnterprise()
}
}, },
queryEnterprise() { queryEnterprise() {
this.queryParams.pageNo = 1
this.load = 'loadmore' this.load = 'loadmore'
this.list = [] this.list = []
this.queryParams.tagList = [ this.queryParams.tagList = [

16
sub/owner/policy.vue

@ -6,9 +6,9 @@
<van-search <van-search
:value="abc" :value="abc"
placeholder="输入关键字查询" placeholder="输入关键字查询"
@search="handleSearch"
id="sreach" id="sreach"
@clear="handleClear" @clear="handleClear"
@change="handleSearch"
/> />
</view> </view>
@ -131,14 +131,20 @@ export default {
finally { finally {
this.loadMoreStatus = this.policyList.length >= this.total? 'noMore' :'more' this.loadMoreStatus = this.policyList.length >= this.total? 'noMore' :'more'
// //
this.isRefreshing = false //
setTimeout(() => {
this.isRefreshing = false
}, 300) //
} }
}, },
// //
handleSearch(e) { handleSearch(e) {
this.pageNum = 1 // if(e.detail && e.detail.length > 1){
this.searchValue = e.detail // this.pageNum = 1 //
this.getPolicyList() this.searchValue = e.detail //
this.getPolicyList()
}
}, },
// //
handleClear() { handleClear() {

Loading…
Cancel
Save