12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="content">
- <view class="order-item">
- <view class="goods-box-single">
- <image class="goods-img" mode="aspectFill" src="{{productInfo.image}}"></image>
- <view class="right position-relative">
- <view class="flex">
- <text class="title">{{productInfo.store_name}}</text>
- <view class="title-right">
- <view class="price">{{productInfo.price}}</view>
- <view class="attr-box">{{'x'+list.cart_num}}</view>
- </view>
- </view>
- </view>
- </view>
- <view>
- <view class="flex_item zhil">
- <view style="width:100%;height:40rpx;line-height:40rpx;margin-bottom:16rpx;">商品质量</view>
- <view>
- <uni-rate bind:__l="__l" bind:change="__e" data-event-opts="{{[ [ '^change',[ ['rateChange1'] ] ] ]}}" margin="10" size="20" text="1" value="{{rateValue1}}" vueId="58568d73-1"></uni-rate>
- </view>
- </view>
- <view class="flex_item zhil">
- <view style="width:100%;height:40rpx;line-height:40rpx;margin-bottom:16rpx;">服务态度</view>
- <view>
- <uni-rate bind:__l="__l" bind:change="__e" data-event-opts="{{[ [ '^change',[ ['rateChange2'] ] ] ]}}" margin="10" size="20" text="1" value="{{rateValue2}}" vueId="58568d73-2"></uni-rate>
- </view>
- </view>
- <view class="equity_box">
- <view class="text-box uni-textarea">
- <textarea bindblur="__e" data-event-opts="{{[ [ 'blur',[ [ 'bindTextAreaBlur',['$event'] ] ] ] ]}}" placeholder="{{placeholder}}" placeholderStyle="color:#999"></textarea>
- </view>
- <view>
- <view class="add-img-box flex_item">
- <view class="add-img-item" wx:for="{{imgList}}" wx:key="index">
- <image catchtap="__e" class="add-img" data-event-opts="{{[ [ 'tap',[ [ 'imgInfo',[index] ] ] ] ]}}" mode="aspectFill" src="{{item.url}}"></image>
- <image catchtap="__e" class="add-img-del" data-event-opts="{{[ [ 'tap',[ [ 'delImg',[index] ] ] ] ]}}" src="/static/img/delete.png"></image>
- </view>
- <view catchtap="__e" class="add-img-item" data-event-opts="{{[ [ 'tap',[ ['scImg'] ] ] ]}}" wx:if="{{imgList.length<9}}">
- <image class="add-img" src="/static/img/add.png"></image>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view catchtap="__e" class="address-box submit-box" data-event-opts="{{[ [ 'tap',[ [ 'submit',['$event'] ] ] ] ]}}">
- <text class="submit-btn">提交评论</text>
- </view>
- </view>
|