Files
MBTI_wang/miniprogram/pages/test-select/index.js
2026-03-17 12:01:20 +08:00

22 lines
402 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// pages/test-select/index.js - 人脸测试后的详情性格测试入口MBTI / PDP / DISC
Page({
data: {},
onLoad() {},
// 进入 MBTI 测试
goMBTI() {
wx.navigateTo({ url: '/pages/test/mbti' })
},
// 进入 PDP 测试
goPDP() {
wx.navigateTo({ url: '/pages/test/pdp' })
},
// 进入 DISC 测试
goDISC() {
wx.navigateTo({ url: '/pages/test/disc' })
}
})