37 lines
562 B
Vue
37 lines
562 B
Vue
|
<template>
|
||
|
<view>横向列表页面</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>
|