123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //import * as WxJsApi from '@/utils/wxJsApi.js'
- import * as API from '@/apis/index.js'
- export default {
- data() {
- return {
- list: []
- }
- },
- components: {
- },
- onLoad(op) {
- //this.id=op.id;
- },
- methods: {
- clear(){
- window.localStorage.clear();
- },
- mygoto( url){
- window.location=url
- //location.href=url
- },
- test1() {
- uni.showLoading({
- title: '加载中'
- });
- // uni.hideLoading();
- },
- },
- onReady() {
- this.carhelp.setToken("");
- this.carhelp.set("token_tdate","")
- this.carhelp.setPersonInfo("");
-
- this.isReady = true;
- },
- onShow() {
- if (this.isReady) {
- }
- },
- }
|