2024-02-21 17:43:11 +08:00

54 lines
2.1 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.

<view class="view">
<view style="background:white">
<view>
<view class="padding-box b-f">
<view bindtap="goodsDetail" class="dis-flex flow-shopList b-f" data-id="{{item.productId}}"
wx:for="{{order.ordersItemList}}" wx:key="this">
<view class="flow-list-left">
<image mode="scaleToFill" src="{{IMG_NAME+item.product.productImages[0].name}}"></image>
</view>
<view class="flow-list-right">
<text class="h4 twolist-hidden">{{item.product.productName}}</text>
<text class="p f-22 col-7">{{item.product.goods_attr}}</text>
<view class="flow-list-cont">
<text class="flow-cont">¥{{item.product.productPrice}}</text>
<text class="small">×{{item.quantity}}</text>
</view>
</view>
</view>
</view>
</view>
<view class='padding flow-cont' style="border-top: 1rpx solid #f7f7f7;border-bottom: 1rpx solid #F7F7F7;">退款金额:
<text style="color: #ff495e;">{{order.amount}}</text>
</view>
<view>
<view class='padding'>
<view class='title'>退款原因:</view>
<view class='text-input'>
<textarea placeholder="请输入退款原因" bindinput='textareaInput'></textarea>
</view>
</view>
</view>
<!-- <view class='padding'>
<view class='title'>添加图片最多4张</view>
<view class='image-input'>
<view
class='image-list'
wx:if="{{tempFilePaths.length}}"
wx:for="{{tempFilePaths}}"
wx:key="key">
<zan-badge catchtap='deleltImage' data-id='{{index}}'>x</zan-badge>
<view class='add-image' catchtap='previewImage' data-id='{{index}}'>
<image class='up-img' src="{{item}}" mode="aspectFill"/>
</view>
</view>
<view class='add-image' catchtap='addImage'> + </view>
</view>
</view> -->
<view>
<view class='padding'>
<button class="zan-btn zan-btn--info" catchtap='send' type="info">提交申请</button>
</view>
</view>
</view>
</view>