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