
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
55 lines
2.3 KiB
Plaintext
55 lines
2.3 KiB
Plaintext
<view class="container">
|
|
<view class="post-comment">
|
|
<view class="goods">
|
|
<view class="img">
|
|
<image src="{{orderGoods.picUrl}}"></image>
|
|
</view>
|
|
<view class="info">
|
|
<view class="t">
|
|
<text class="name">{{orderGoods.goodsName}} x{{orderGoods.number}}</text>
|
|
</view>
|
|
<view class="attr">{{orderGoods.goodsSpecificationValues}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="rater">
|
|
<text class="rater-title">评分</text>
|
|
<block wx:for="{{stars}}" wx:key="*this" wx:for-item="item">
|
|
<image src="/static/images/icon_collect_checked.png" bindtap="selectRater" data-star="{{item}}" wx:if="{{item < star}}"></image>
|
|
<image src="/static/images/icon_collect.png" bindtap="selectRater" data-star="{{item}}" wx:else></image>
|
|
</block>
|
|
<text class="rater-desc">{{starText}}</text>
|
|
</view>
|
|
<view class="input-box">
|
|
<textarea class="content" focus="true" bindinput="bindInputValue" maxlength="140" placeholder="留言经过筛选后,对所有人可见" />
|
|
<text class="count">{{140 - content.length}}</text>
|
|
</view>
|
|
|
|
<view class="weui-uploader">
|
|
<view class="weui-uploader__hd">
|
|
<view class="weui-uploader__title">图片上传</view>
|
|
<view class="weui-uploader__info">{{picUrls.length}}/{{files.length}}</view>
|
|
</view>
|
|
<view class="weui-uploader__bd">
|
|
<view class="weui-uploader__files" id="uploaderFiles">
|
|
<block wx:for="{{files}}" wx:key="*this">
|
|
<view class="weui-uploader__file" bindtap="previewImage" id="{{item}}">
|
|
<image class="weui-uploader__img" src="{{item}}" mode="aspectFill" />
|
|
</view>
|
|
<!-- <view class="weui-uploader__file weui-uploader__file_status" bindtap="previewImage" id="{{item}}">
|
|
<image class="weui-uploader__img" src="{{item}}" mode="aspectFill" />
|
|
<view class="weui-uploader__file-content">50%</view>
|
|
</view> -->
|
|
</block>
|
|
<view class="weui-uploader__input-box">
|
|
<view class="weui-uploader__input" bindtap="chooseImage"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="btns">
|
|
<view class="close" bindtap="onClose">取消</view>
|
|
<view class="post" bindtap="onPost">发表</view>
|
|
</view>
|
|
</view>
|
|
</view> |