jsy-app/pages/index-list.vue
2024-09-26 12:42:59 +08:00

49 lines
959 B
Vue

<template>
<view>横向列表页面111222(o)33</view>
<button @click="openLand">选择地块</button>
<!-- 弹窗 -->
<view>
<!-- 地块选择 -->
<custom-select-land ref="refLand" @select="selectLand"></custom-select-land>
<!-- 角度 -->
<custom-angle-slider ref="refAngleSlider" mode="bottom" @close="" @confirm="angleSliderConfirm" />
</view>
</template>
<script>
import store from "@/store"
export default {
data() {
return {}
},
onLoad() {
// #ifdef APP-PLUS
plus.screen.lockOrientation('landscape-primary');
plus.navigator.setFullscreen(true);
// #endif
},
onShow() {},
methods: {
openLand() {
this.$refs.refLand.open();
},
selectLand(e) {
console.error('selectLand', e);
},
change(e) {
console.log('change', e);
},
toList() {
uni.navigateTo({
url: `/pages/index-list/index-list`
})
},
angleSliderConfirm() {},
},
}
</script>
<style>
</style>