12345678910111213141516171819202122232425262728 |
- //import * as WxJsApi from '@/utils/wxJsApi.js'
- import * as API from '@/apis/index.js'
- import TabbarJob from '@/components/TabbarJob.vue'
- export default {
- data() {
- return {
- isReady:false,
- }
- },
- components: {
- TabbarJob
- },
- onLoad(op){
- //this.id=op.id;
- },
- methods: {
-
-
- },onReady(){
-
- this.isReady=true;
- },onShow(){
- if(this.isReady){
-
- }
- },
- }
|