12345678910111213141516171819202122232425262728293031323334353637383940 |
-
-
-
- //import * as WxJsApi from '@/utils/wxJsApi.js'
- import * as API from '@/apis/index.js'
- import TabbarHr from '@/components/TabbarHr.vue'
-
- export default {
- data() {
- return {
- isReady:false,
- background: {
- backgroundColor: '#2295ff',
- },
- src1:'/static/img/news1.png',
- src2:'/static/img/news2.png',
- src3:'/static/img/news3.png',
- src4:'/static/img/news4.png',
- src5:'/static/img/news5.png'
- }
- },
- components: {
- TabbarHr
- },
- onLoad(op){
- //this.id=op.id;
- },
- methods: {
-
-
- },onReady(){
-
- this.isReady=true;
- },onShow(){
- if(this.isReady){
-
- }
- },
- }
|