jsy-app/pages/index-map.vue
2024-11-27 18:46:21 +08:00

36 lines
920 B
Vue

<template>
<!-- <u-popup mode="bottom" :show="show" @close="close">
<scroll-view scroll-y="true" style="height: 90vh;">
<view v-for="item in companyOptions" style="display: block;">
<view v-if="item.children">
<uni-icons type="uni-icon uniui-right" size="20" />
</view>
<view></view>
<span>{{item.label}}</span>
<view v-for="item2 in item.children" style="padding-left: 20px;">
<uni-icons type="uni-icon uniui-right" size="20" v-if="item2.children" />
<span style="padding-left: 20px;">{{item2.label}}</span>
</view>
</view>
</scroll-view>
</u-popup> -->
<!-- <custom-select-land ref="landRef"></custom-select-land> -->
</template>
<script>
import store from "@/store"
export default {
data() {
return {}
},
created() {
console.error("地块列表");
// this.$refs.landRef.open();
},
methods: {}
}
</script>
<style lang="scss" scoped>
</style>