12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="container">
- </view>
- </template>
- <script>
- // import { userinfo } from '@/api/user.js';
- export default {
- data() {
- return {
-
- };
- },
- onLoad(option){},
- onShow() {
-
- },
- //下拉刷新
- onPullDownRefresh() {
- this.loadData();
- },
- methods: {}
- };
- </script>
- <style lang="scss">
- page {
- min-height: 100%;
- background-color: #ffffff;
- .container {
- width: 100%;
-
- }
- }
- </style>
|