| 1234567891011121314151617181920212223242526272829303132333435 |
- <t-popup
- placement="bottom"
- visible="{{visible}}"
- show-overlay="{{true}}"
- close-on-overlay-click="{{true}}"
- bind:visible-change="onPopupVisibleChange"
- z-index="12000"
- style="--td-popup-z-index: 12000;"
- >
- <view class="refund-reason-popup">
- <view class="refund-reason-popup__header">
- <view class="title">选择退款原因</view>
- <text class="refund-reason-popup__close" catchtap="onClose">×</text>
- <view class="refund-reason-popup__header-spacer" />
- </view>
- <scroll-view class="refund-reason-popup__content" scroll-y>
- <t-radio-group value="{{selectedReason}}" bind:change="onSelectReason">
- <t-radio
- wx:for="{{reasons}}"
- wx:key="value"
- value="{{item.value}}"
- label="{{item.label}}"
- placement="right"
- icon="circle"
- class="custom-radio"
- />
- </t-radio-group>
- </scroll-view>
- <view class="refund-reason-popup__footer">
- <view class="refund-reason-popup__next-btn" bindtap="onNext">下一步</view>
- </view>
- </view>
- </t-popup>
|