jsy-app/pages/index-list.vue

37 lines
565 B
Vue

<template>
<view>横向列表页面111</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();
},
change(e) {
console.log('change', e);
},
toList() {
uni.navigateTo({
url: `/pages/index-list/index-list`
})
},
toQRCode() {},
},
}
</script>
<style>
</style>