43 lines
1.8 KiB
Plaintext
43 lines
1.8 KiB
Plaintext
<view class="dialog__multiple" catchtouchmove="return" >
|
|
<!-- catchtouchmove="return" -->
|
|
<view class="dialog__content">
|
|
<!-- <image src="https://ltf.yijiesudai.com/pre/h5/icon/icon_close_grey.png" /> -->
|
|
<!-- <view class="close_img">
|
|
<image
|
|
src="https://ltf.yijiesudai.com/online/h5/icon/icon_close_grey_nobg.png"
|
|
bindtap="onClose"
|
|
class="icon_close" />
|
|
</view> -->
|
|
<view class="tips">
|
|
<text class="tips_text">检测到您实名的身份证存在绑定多个手机号,请选择其中一个手机号作为唯一绑定手机号,其他账号将自动注销,同时账号下的积分、红包、会员、优惠券等将会被清空且无法恢复。</text>
|
|
</view>
|
|
<view class="phone">
|
|
<image class="phone_icon" src="https://ltf-pub.yijiesudai.com/test/20240820/file/00dbcade297d6ace.png" />
|
|
<text class="phone_text">请选择一个您要绑定的手机号</text>
|
|
<scroll-view
|
|
scroll-y
|
|
enhanced
|
|
show-scrollbar
|
|
class="phonelist_container">
|
|
<view
|
|
wx:for="{{ mulPhonesData.userNames }}"
|
|
wx:key="index"
|
|
data-item="{{ item }}"
|
|
data-index="{{ index }}"
|
|
bindtap="onSelect"
|
|
class="phone_item {{ item.userId === chooseUserId ? 'phone_item_selected' : '' }}">{{ item.userName }}</view>
|
|
</scroll-view>
|
|
|
|
<!-- <view class="phonelist_container">
|
|
<view
|
|
wx:for="{{ phoneList }}"
|
|
wx:key="index"
|
|
data-item="{{ item }}"
|
|
data-index="{{ index }}"
|
|
bindtap="onSelect"
|
|
class="phone_item {{ item.id === chooseUserId ? 'phone_item_selected' : '' }}">{{ item.value }}</view>
|
|
</view> -->
|
|
</view>
|
|
<view bindtap="onBind" class="btn">确定绑定</view>
|
|
</view>
|
|
</view> |