46 lines
726 B
Vue
46 lines
726 B
Vue
<template>
|
|
<view class="container">
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { request, picUrl, NavgateTo, menuButtonInfo } from '../../../utils/index';
|
|
import { apiArr } from '../../../api/reservation';
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
top: "",
|
|
localHeight: ""
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
onReady() {
|
|
|
|
},
|
|
|
|
onload(options) {
|
|
const meun = menuButtonInfo();
|
|
this.top = meun.top;
|
|
this.localHeight = meun.height;
|
|
},
|
|
onShow() {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom() {
|
|
|
|
},
|
|
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import url("./index.css");
|
|
</style> |