12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <!-- 公共组件-每个页面必须引入 -->
- <public-module></public-module>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad(e) {
-
- },
- onShow() {
-
- },
- //方法
- methods: {
- onPageJump(url) {
- uni.navigateTo({
- url: url
- });
- }
- },
- //页面下来刷新
- onPullDownRefresh() {},
- //页面上拉触底
- onReachBottom() {},
- //用户点击分享
- onShareAppMessage(e) {
- return this.wxShare();
- }
- };
- </script>
- <style scoped>
- </style>
|