index.js 354 B

123456789101112131415161718192021222324252627
  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. }
  8. },
  9. components: {
  10. },
  11. onLoad(op){
  12. //this.id=op.id;
  13. },
  14. methods: {
  15. },onReady(){
  16. this.isReady=true;
  17. },onShow(){
  18. if(this.isReady){
  19. }
  20. },
  21. }