1234567891011121314151617181920212223242526272829303132 |
- const Parse = getApp().Parse;
- const company = getApp().globalData.company
- const login = require("../../../utils/login");
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- },
- data: {
- },
- lifetimes: {
- created() {},
- attached: function () {
- },
- },
- /**
- * 组件的方法列表
- */
- methods: {
- onH5Url(){
- const token = Parse.User.current()?.getSessionToken()
- console.log(token);
- wx.navigateTo({
- url: `/common-page/pages/web-view/index?path=https://ai.fmode.cn&token=${token}`,
- })
- }
- }
- })
|