Files
ai_wht_wechat/miniprogram/miniprogram/pages/profile/social-binding/social-binding.wxml
2025-12-19 22:36:48 +08:00

52 lines
2.0 KiB
Plaintext
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/profile/social-binding/social-binding.wxml-->
<view class="page-container">
<scroll-view class="content-scroll" scroll-y>
<!-- 小红书 -->
<view class="platform-item" bindtap="goToPlatformBind" data-platform="xiaohongshu">
<view class="platform-left">
<view class="platform-icon xiaohongshu"></view>
<view class="platform-info">
<text class="platform-name">小红书</text>
<text class="platform-desc">{{xiaohongshuBinded ? xiaohongshuPhone : '未绑定'}}</text>
</view>
</view>
<view class="platform-right">
<view class="bind-status {{xiaohongshuStatusClass}}">{{xiaohongshuStatusText}}</view>
<text class="item-arrow"></text>
</view>
</view>
<!-- 微博 -->
<view class="platform-item" bindtap="goToPlatformBind" data-platform="weibo">
<view class="platform-left">
<view class="platform-icon weibo"></view>
<view class="platform-info">
<text class="platform-name">微博</text>
<text class="platform-desc">{{weiboBinded ? weiboPhone : '未绑定'}}</text>
</view>
</view>
<view class="platform-right">
<view class="bind-status {{weiboBinded ? 'binded' : ''}}">{{weiboBinded ? '已绑定' : '去绑定'}}</view>
<text class="item-arrow"></text>
</view>
</view>
<!-- 抖音 -->
<view class="platform-item" bindtap="goToPlatformBind" data-platform="douyin">
<view class="platform-left">
<view class="platform-icon douyin"></view>
<view class="platform-info">
<text class="platform-name">抖音</text>
<text class="platform-desc">{{douyinBinded ? douyinPhone : '未绑定'}}</text>
</view>
</view>
<view class="platform-right">
<view class="bind-status {{douyinBinded ? 'binded' : ''}}">{{douyinBinded ? '已绑定' : '去绑定'}}</view>
<text class="item-arrow"></text>
</view>
</view>
</scroll-view>
</view>