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