index.js 416 B

12345678910111213141516171819202122232425262728
  1. //import * as WxJsApi from '@/utils/wxJsApi.js'
  2. import * as API from '@/apis/index.js'
  3. import TabbarJob from '@/components/TabbarJob.vue'
  4. export default {
  5. data() {
  6. return {
  7. isReady:false,
  8. }
  9. },
  10. components: {
  11. TabbarJob
  12. },
  13. onLoad(op){
  14. //this.id=op.id;
  15. },
  16. methods: {
  17. },onReady(){
  18. this.isReady=true;
  19. },onShow(){
  20. if(this.isReady){
  21. }
  22. },
  23. }