jsy-app/pages/index-list.vue

49 lines
959 B
Vue
Raw Normal View History

2024-09-19 10:34:33 +08:00
<template>
2024-09-24 11:58:11 +08:00
<view>横向列表页面111222(o)33</view>
2024-09-25 18:47:15 +08:00
<button @click="openLand">选择地块</button>
<!-- 弹窗 -->
<view>
<!-- 地块选择 -->
2024-09-26 12:42:59 +08:00
<custom-select-land ref="refLand" @select="selectLand"></custom-select-land>
2024-09-25 18:47:15 +08:00
<!-- 角度 -->
<custom-angle-slider ref="refAngleSlider" mode="bottom" @close="" @confirm="angleSliderConfirm" />
</view>
2024-09-19 10:34:33 +08:00
</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();
},
2024-09-26 12:42:59 +08:00
selectLand(e) {
console.error('selectLand', e);
},
2024-09-19 10:34:33 +08:00
change(e) {
console.log('change', e);
},
toList() {
uni.navigateTo({
url: `/pages/index-list/index-list`
})
},
2024-09-26 12:42:59 +08:00
angleSliderConfirm() {},
2024-09-19 10:34:33 +08:00
},
}
</script>
<style>
</style>