1、修复了结果页、测试页与 test-select 的跳转上下文丢失问题。 2、调整 api/Test 与小程序 app/share 逻辑,补全第三方/企业场景参数透传。 3、优化 DISC/MBTI/PDP/SBTI 结果页样式与按钮交互,一致化微信与抖音端。 Made-with: Cursor
56 lines
2.1 KiB
Plaintext
56 lines
2.1 KiB
Plaintext
<!--pages/test-select/index.wxml - 详细性格测试入口(MBTI / SBTI / PDP / DISC)-->
|
||
<view class="container">
|
||
<view class="card intro-card">
|
||
<text class="intro-title">选择一项详细性格测试</text>
|
||
<text class="intro-desc">完成问卷即可获得对应维度的专业性格报告</text>
|
||
</view>
|
||
|
||
<view class="card entry-card" bindtap="goMBTI" wx:if="{{permMbti}}">
|
||
<view class="entry-icon-wrap mbti">
|
||
<text class="entry-emoji">🧠</text>
|
||
</view>
|
||
<view class="entry-content">
|
||
<text class="entry-name">MBTI 性格测试</text>
|
||
<text class="entry-brief">16型人格 · 发现你的认知与决策风格</text>
|
||
</view>
|
||
<text class="entry-arrow">→</text>
|
||
</view>
|
||
|
||
<view class="card entry-card" bindtap="goSBTI" wx:if="{{permSbti}}">
|
||
<view class="entry-icon-wrap sbti">
|
||
<text class="entry-emoji">🎭</text>
|
||
</view>
|
||
<view class="entry-content">
|
||
<text class="entry-name">SBTI 性格测试</text>
|
||
<text class="entry-brief">15 维等级匹配 · 闸口题(与标准计分一致)</text>
|
||
</view>
|
||
<text class="entry-arrow">→</text>
|
||
</view>
|
||
|
||
<view class="card entry-card" bindtap="goPDP" wx:if="{{permPdp}}">
|
||
<view class="entry-icon-wrap pdp">
|
||
<text class="entry-emoji">🦁</text>
|
||
</view>
|
||
<view class="entry-content">
|
||
<text class="entry-name">PDP 行为偏好测试</text>
|
||
<text class="entry-brief">老虎 / 孔雀 / 无尾熊 / 猫头鹰 / 变色龙 · 行为风格</text>
|
||
</view>
|
||
<text class="entry-arrow">→</text>
|
||
</view>
|
||
|
||
<view class="card entry-card" bindtap="goDISC" wx:if="{{permDisc}}">
|
||
<view class="entry-icon-wrap disc">
|
||
<text class="entry-emoji">📊</text>
|
||
</view>
|
||
<view class="entry-content">
|
||
<text class="entry-name">DISC 性格测试</text>
|
||
<text class="entry-brief">D/I/S/C 四维 · 沟通与行为倾向</text>
|
||
</view>
|
||
<text class="entry-arrow">→</text>
|
||
</view>
|
||
|
||
<view class="card perm-disabled-hint" wx:if="{{allTestsDisabled}}">
|
||
<text class="perm-disabled-text">当前环境下暂未开放问卷测试,请联系管理员或从首页进入。</text>
|
||
</view>
|
||
</view>
|