优化 查询

This commit is contained in:
java110 2021-08-09 19:36:27 +08:00
parent 1e498e9249
commit 8c7728d536

View File

@ -9,32 +9,36 @@
<button class="cu-btn bg-gradual-green shadow-blur round" @tap="_searchCommunity()">搜索</button>
</view>
</view>
<view>
<view class="padding">小区信息</view>
<view class="cu-list menu ">
<view class="cu-item" v-for="(item,sub) in communitys" :key="sub" @tap="_doChangeCommunity(item)">
<view class="content padding-tb-sm">
<view>
<text class="lg cuIcon-homefill text-blue margin-right-xs"></text> {{item.name}}</view>
<text class="lg cuIcon-homefill text-blue margin-right-xs"></text> {{item.name}}
</view>
<view class="text-gray text-sm">
<text class="lg text-gray cuIcon-location margin-right-xs"></text> {{item.address}}</view>
<text class="lg text-gray cuIcon-location margin-right-xs"></text> {{item.address}}
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import {getCommunity} from '../../api/community/community.js'
import {
getCommunity
} from '../../api/community/community.js'
import mapping from '../../constant/mapping.js'
export default {
data() {
return {
communityName:'',
communitys:[]
communityName: '',
communitys: []
}
},
onLoad() {
@ -42,23 +46,25 @@
this._loadCommunitys();
},
methods: {
_loadCommunitys:function(){
_loadCommunitys: function() {
let _that = this;
let _condition = {
name:this.communityName
name: this.communityName
}
getCommunity(function(_communitys){
_that.communitys = _communitys;
console.log('_communitys',_communitys);
},true,_condition);
getCommunity(true, _condition)
.then(_communitys => {
_that.communitys = _communitys;
console.log('_communitys', _communitys);
});
},
_searchCommunity:function(){
this._loadCommunitys();
_searchCommunity: function() {
this._loadCommunitys();
},
_doChangeCommunity:function(_community){
_doChangeCommunity: function(_community) {
uni.setStorageSync(mapping.CURRENT_COMMUNITY_INFO, JSON.stringify(_community));
uni.navigateBack({
delta:1
delta: 1
})
}
}