12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!--nova-tourism/pages/my/my-order/my-refund/refund-detail/index.wxml-->
- <nav type="back" background-color="#ffffff" frontColor="#000000" title="退款/售后" />
- <view class="all" style="height: {{contentHeight}}rpx;">
- <view class="title">订单已完成</view>
- <view class="cardbox">
- <view class="title2">确认退换信息</view>
- <view class="roombox">
- <image src="https://file-cloud.fmode.cn//tmp/mqHkA2qV3Q8nca3dc59bad49de6e5ae57afa81d78ae8.jpeg?imageView2/1/w/200/h/200"></image>
- <view class="room">
- <view class="room-name">房间描述房间描述</view>
- <view class="room-text2">紫色经典款</view>
- </view>
- </view>
- <van-divider customStyle="margin: 20rpx;border-color:'#B1B1B1' " />
- <view class="text1">
- <view class="tex1">退换方式</view>
- <view class="tex3">
- 退货退款
- <van-icon name="arrow" custom-style='margin-left:10rpx' />
- </view>
- </view>
- <view class="text1">
- <view class="tex1">退货退款的原因</view>
- <view class="tex3">
- 商品瑕疵
- <van-icon name="arrow" custom-style='margin-left:10rpx' />
- </view>
- </view>
- <view class="text1">
- <view class="tex1">
- 描述和凭证
- <view class="tex1-1">*</view>
- </view>
- <view class="tex2">
- 上传有助于处理问题
- </view>
- </view>
- <view class="areabox">
- <textarea auto-height model:value='{{text}}' bindinput='' maxlength='200'></textarea>
- <view class="number">{{text.length}}/200</view>
- </view>
- <view class="uploadbox">
- <upload bind:onChangeFile="picture" accept="image" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}" maxCount="9" />
- </view>
- </view>
- <view class="submitbox">
- <view class="submit">提交</view>
- </view>
- </view>
|