Files
sphc/pages/my/after_sales_next/after_sales_next.wxml

44 lines
1.9 KiB
Plaintext
Raw Normal View History

2024-05-06 15:34:15 +08:00
<view class="goods">
<view class="cont display_J_B" wx:for='{{goods.goodsList}}' wx:key='index'>
<view class="cont-l">
<image src="{{item.goodsPhoto}}"></image>
</view>
<view class="cont-m">
<view class="name GStitleOne">{{item.goodsName}}</view>
<view class="specs" wx:if="{{goods.orderPayWay!=3}}">规格:{{item.wisdGoodsSpec.specName}}</view>
<view class="price" wx:if="{{goods.orderPayWay!=3}}">
{{goods.orderPayWay!=2?'¥':''}}{{item.wisdGoodsSpec.specBulyPrice==null?item.wisdGoodsSpec.specPrice:item.wisdGoodsSpec.specBulyPrice}}{{goods.orderPayWay!=2?'':'积分'}}
</view>
<view class="price" wx:if="{{goods.orderPayWay==3}}">¥0</view>
</view>
<view class="cont-r">x{{item.goodsNum}}</view>
</view>
</view>
<view class="aArice display_J_S">
<view class="aArice-l">{{goods.orderRefundType==1?'换货':'退货'}}说明:</view>
<input type="text" placeholder="必填(填写货物的信息)" bindinput="textarea1" value="{{textarea1}}" />
</view>
<view class="aArice display_J_S">
<view class="aArice-l">物流名称:</view>
<input type="text" placeholder="必填" bindinput="textRefund" value="{{textRefund}}" />
</view>
<view class="aArice display_J_S">
<view class="aArice-l">物流单号:</view>
<input type="number" placeholder="必填" bindinput="textarea" value="{{textarea}}" />
</view>
<view class="up">
<view class='title'>上传单号凭证<text>不超过4张长按删除</text></view>
<view class='photo'>
<view class='photo_cont' wx:for="{{photo}}" catchlongtap="delimg" data-index='{{index}}' wx:key="index">
<image src='{{item}}'></image>
</view>
<view class='photo_upload' catchtap='revise_img'>
<image src='/icon/my_feedback_photo.png'></image>
</view>
</view>
</view>
<view class="height100"></view>
<view class="height100"></view>
<view class='submit' catchtap='submitBut'>提交</view>