1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/returnofmoney/returnofmoney.wxml-->
- <nav-bar navbar-data="{{navbarData}}"></nav-bar>
- <view class="cont">
- <van-image style="margin-top: 40rpx;" round fit="cover" width="60px" height="60px " src="{{user_info.headimg}}" />
- <p style="margin-top: 40rpx;font-size: 32rpx;color:#464646;font-weight: 600;">{{user_info.name}}申请退款</p>
- <view class="body">
- <view>
- <p>退款金额</p>
- <p style="color:#464646;font-size:32rpx;font-weight:600;">C${{billdata.payment_amount}}</p>
- </view>
- <view>
- <p>拼团名称</p>
- <p>{{billdata.gang_name}}</p>
- </view>
- <view>
- <p>退款原因</p>
- <p>{{billdata.refund_reason}}</p>
- </view>
- <view>
- <p>退款编号</p>
- <view class="bianhao">
- <p style="color: #656565;font-size: 28rpx;">{{billdata.refund_number}}</p>
- <button class="fuzhi" bindtap="fuzhi">复制</button>
- </view>
- </view>
- </view>
- <view class="userinfo">
- <view>团员信息</view>
- <view>
- <van-image round fit="cover" width="43px" height="43px " src="{{user_info.headimg}}" />
- <p>{{user_info.name}}</p>
- <button catchtap="callUser">
- <image src="/images/telphone.png"></image>联系团员
- </button>
- </view>
- </view>
- <view class="goods">
- <view class="goods-title">
- <p>退款商品</p>
- <p>共{{billdata.commodity_list.length}}件</p>
- </view>
- <view class="goods-info" wx:for="{{billdata.commodity_list}}">
- <van-image fit="cover" width="64px" height="64px " src="{{item.commodity_img}}" />
- <view class="goods-name">
- <p>{{item.commodity_name}}</p>
- <p>×{{item.commodity_number}}</p>
- </view>
- <view class="goods-price">
- <p>c$</p>
- <p>{{item.commodity_price}}</p>
- </view>
- </view>
- </view>
- </view>
- <view style="height: 200rpx;"></view>
- <view class="foots">
- <button catchtap="disagree">不同意</button>
- <button catchtap="agree">同意</button>
- </view>
|