jsy-app/pages/index-list.vue

37 lines
568 B
Vue
Raw Normal View History

2024-09-19 10:34:33 +08:00
<template>
2024-09-24 11:54:06 +08:00
<view>横向列表页面111222</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();
},
change(e) {
console.log('change', e);
},
toList() {
uni.navigateTo({
url: `/pages/index-list/index-list`
})
},
toQRCode() {},
},
}
</script>
<style>
</style>