Commit 0590a157 authored by leiqingsong's avatar leiqingsong

修改

parent e50dedc2
...@@ -22,7 +22,8 @@ export default { ...@@ -22,7 +22,8 @@ export default {
this.currentTitle = val.meta.title; this.currentTitle = val.meta.title;
} }
}, },
mounted() { created() {
console.log('和App开始交互');
getAuthToken().then(res => { getAuthToken().then(res => {
console.log('获取token成功', res); console.log('获取token成功', res);
}).catch(err => { }).catch(err => {
......
...@@ -55,7 +55,6 @@ ...@@ -55,7 +55,6 @@
</template> </template>
<script> <script>
import { getAuthToken } from "@/utils/bridgeToAppFun";
import { getMoneyPackage } from "@/api/wallet"; import { getMoneyPackage } from "@/api/wallet";
export default { export default {
...@@ -71,13 +70,6 @@ export default { ...@@ -71,13 +70,6 @@ export default {
}, },
mounted() { mounted() {
this.getWalletInfo(); this.getWalletInfo();
getAuthToken()
.then(res => {
console.log("success", res);
})
.catch(err => {
console.log("error", err);
});
}, },
methods: { methods: {
// 跳转到可提现界面 // 跳转到可提现界面
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment