缺接口

This commit is contained in:
liuye
2021-12-17 17:31:12 +08:00
parent 66d1229420
commit 0f945fe56e
8 changed files with 247 additions and 101 deletions

View File

@@ -3,7 +3,10 @@
<div class="grid-select" @click="show=true">
<span class="label">网格选择</span>
<div class="value">
<span>新里程社区居委会</span>
<!-- <span>新里程社区居委会</span> -->
<ai-tree-picker :ops="treeList" v-model="form.postFunctionId" @select="handerSelect">
<div :style="{ color: form.postFunction ? '' : '#c0c4cc' }" v-text="form.postFunction || '请选择社区居委会'" />
</ai-tree-picker>
<u-icon name="arrow-right" color="#cccccc" size="14"></u-icon>
</div>
</div>
@@ -43,8 +46,9 @@ export default {
ops: {},
lib: '',
map: null,
markerArr: [],
show: false
show: false,
form: {},
treeList: []
}
},
computed: { ...mapState(['user']) },
@@ -54,6 +58,9 @@ export default {
},
methods: {
handerSelect() {
},
initMap() {
//初始化地图
@@ -120,9 +127,12 @@ export default {
</script>
<style lang="scss" scoped>
uni-page-body{
::v-deep uni-page-body{
height: 100%;
}
ai-tree-picker{
display: inline-block;
}
.detail {
height: 100%;
.grid-select{