69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
<!--pages/member/addevaluate/addevaluate.wxml-->
|
||
|
||
<view class="addevaluate">
|
||
<view class="shop">
|
||
<!-- <view class="goods">
|
||
<view class="img">
|
||
<image src="{{good.thumb}}" mode='widthFix' />
|
||
</view>
|
||
<view class="inner">
|
||
<view class="name">已好评<br />
|
||
<van-rate value="{{value}}" disabled-color="#ff9900" disabled />
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="option">{{comment}}</view> -->
|
||
|
||
<view class="goods">
|
||
<view class="img">
|
||
<image src="{{good.thumb}}" mode='widthFix' />
|
||
</view>
|
||
<view class="warp">
|
||
<view class="ul inner">
|
||
<view class="li name">{{good.title}}</view>
|
||
<view class="li product_price"><text class="small">{{language['money']}}</text>{{good.goods_price}}</view>
|
||
</view>
|
||
<view class="ul price">
|
||
<view class="li option">规格: {{good.goods_option_title}}</view>
|
||
<view class="li option"> ×{{good.total}}</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<view style="margin: 10rpx 0;">
|
||
<view class="name">已好评</view>
|
||
<van-rate value="{{value}}" disabled-color="#ff9900" disabled />
|
||
</view>
|
||
<view>{{comment}}</view>
|
||
</view>
|
||
<view class="pjall">
|
||
<view class="pj"><text class="span">追加评价:</text></view>
|
||
<van-cell-group>
|
||
<van-field autosize="{{true}}" input-class="textareainp" value="{{reComment}}" type="textarea" placeholder="这次买的商品满意吗?不满意可意追加评价内容。长度在5-100字之间"
|
||
border="{{ false }}" bind:change="commentChange" />
|
||
</van-cell-group>
|
||
<view class="section otherphoto">
|
||
<view class="top">
|
||
<view class="span">晒图:</view>
|
||
</view>
|
||
<view class="imgflex">
|
||
<block wx:for-item="val" wx:for="{{fileList4}}" wx:key="index">
|
||
<view class="photobox">
|
||
<image src="{{val.url}}" mode='widthFix' />
|
||
<view class="i" data-index="{{index}}" catchtap="removeImg_1"></view>
|
||
</view>
|
||
</block>
|
||
<view class="photoshow" catchtap="onRead_2">
|
||
<image src="https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/up_icon.png" mode='widthFix' />
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
<view class="submit-tbn">
|
||
<van-button type="danger" size="large" bind:click="toReComment">发表追评</van-button>
|
||
</view>
|
||
</view>
|
||
<shopfoot></shopfoot>
|