Files
MBTI_wang/miniprogram/components/cooperation-mode-dialog/cooperation-mode-dialog.wxml
Ghost 830e3611d7 feat: 企业版合作模式(后端、管理端、小程序)
- API:合作模式配置、用户选择、企业版入口与迁移 SQL

- 管理端:合作方式管理、企业/用户侧设置与 CSV 导出等

- 小程序:合作模式弹窗与结果/简历等页对接;开发脚本小调整

Made-with: Cursor
2026-04-23 16:08:13 +08:00

21 lines
959 B
Plaintext

<view class="cmd-mask" wx:if="{{visible}}" catchtouchmove="noop" catchtap="onMask">
<view class="cmd-panel" catchtap="noop">
<text class="cmd-title">请选择合作模式</text>
<text class="cmd-desc">三项测评已完成,请选择与您更契合的合作方式(提交后可在企业侧活动中使用)。</text>
<radio-group class="cmd-list" bindchange="onRadioChange">
<label class="cmd-item" wx:for="{{modes}}" wx:key="code">
<radio value="{{item.code}}" checked="{{selected === item.code}}" color="#ff6b8a" />
<view class="cmd-item-main">
<text class="cmd-item-title">{{item.title}}</text>
<text class="cmd-item-desc">{{item.description}}</text>
</view>
</label>
</radio-group>
<view class="cmd-actions">
<button class="cmd-btn cmd-btn--primary" hover-class="none" loading="{{submitting}}" bindtap="onConfirm">确认提交</button>
</view>
</view>
</view>