index.js 388 B

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