You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
guoxinyu_project/src/map/miniprogram/pages/ModifyInformation/ModifyInformation.js

32 lines
713 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

Page({
check() {
wx.navigateToMiniProgram({
appId: 'wx5e77d1bb9e24f179', // 小程序B的appid**
path: 'pages/index/index', //小程序B的页面路径**
extraData: {},
envVersion: 'release', //打开版本 开发版 develop体验版trial 正式版release
success(res) {
// 打开成功
},
fail(res){
//打开失败
}
})
},
data: {
loginOK: false
},
//information
information() {
wx.navigateTo({
url: '/pages/ModifyInformation/ModifyInformation',
})
},
//account
account() {
wx.navigateTo({
url: '/pages/index/index'
})
}
})