123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <!--<view class="container">
- <view class="tui-header">商品好评度 <text>98%</text></view>
- <view class="tui-attr-box">
- <view class="tui-attr-item tui-attr-active">全部 <text>90+</text></view>
- <view class="tui-attr-item">最新</view>
- <view class="tui-attr-item">好评<text>80+</text></view>
- <view class="tui-attr-item">差评<text>1</text></view>
- <view class="tui-attr-item">有图<text>8</text></view>
- <view class="tui-attr-item">追加评价<text>8</text></view>
- </view>
- <view class="tui-evaluate__box" v-for="(item,index) in evaluateList" :key="index">
- <view class="tui-flex__center">
- <image src="/static/images/news/avatar_1.jpg" class="tui-avatar"></image>
- <view class="tui-nickname">zmh06721</view>
- </view>
- <view class="tui-content__box">
- <view class="tui-rate__box">
- <tui-rate :current="item.star" :size="14"></tui-rate>
- <text>2020-06-21</text>
- </view>
- <view class="tui-desc">
- 收到大大惊喜了下,真的好可爱,很温顺,给兽医检查了下,猫很正常,店家打好了防疫针,这点很赞,很满意!
- </view>
- <view class="tui-img__box" v-if="item.imgs && item.imgs.length>0">
- <block v-for="(src,subIndex) in item.imgs" :key="subIndex">
- <image @tap.stop="previewImage(index,subIndex)" :class="{'tui-image':item.imgs.length===1}" :src="webURL+src"
- :mode="item.imgs.length===1?'widthFix':'aspectFill'"></image>
- </block>
- </view>
- <view class="tui-op__box tui-flex__center">
- <view class="tui-specs">双血统;公母随机</view>
- <view class="tui-flex__center">
- <view class="tui-op-item">
- <text :class="{'tui-color-red':item.zan}">12</text>
- <tui-icon :name="item.zan?'agree-fill':'agree'" :size="34" unit="rpx" :color="item.zan?'#EB0909':'#333'"></tui-icon>
- </view>
- <view class="tui-op-item" @tap="evaluateDetail">
- <text>1</text>
- <tui-icon name="message" :size="40" unit="rpx" color="#333"></tui-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- <tui-divider gradual width="50%">没有更多了</tui-divider>
- </view>-->
- </template>
- <script>
- export default {
- data() {
- return {
- webURL: 'https://thorui.cn/images/mall/',
- evaluateList: [{
- star: 5,
- imgs: ['cat_1.jpg', 'cat_2.jpg', 'cat_1.jpg', 'cat_2.jpg', 'cat_2.jpg'],
- zan: false
- }, {
- star: 4,
- imgs: ['cat_1.jpg'],
- zan: true
- }, {
- star: 5,
- imgs: [],
- zan: false
- }, {
- star: 5,
- imgs: ['cat_1.jpg', 'cat_2.jpg', 'cat_2.jpg'],
- zan: false
- }, {
- star: 5,
- imgs: ['cat_1.jpg', 'cat_2.jpg'],
- zan: false
- }]
- }
- },
- methods: {
- previewImage(index, current) {
- let imgs = this.evaluateList[index].imgs
- let urls = imgs.map(item => {
- return this.webURL + item
- })
- uni.previewImage({
- current: current,
- urls: urls
- })
- },
- evaluateDetail(){
- this.tui.href('/pages/evaluateDetail/evaluateDetail')
- }
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 200);
- },
- }
- </script>
- <style>
- .tui-header {
- font-size: 24rpx;
- color: #999;
- padding: 16rpx 30rpx;
- }
- .tui-header text {
- font-weight: bold;
- padding-left: 12rpx;
- color: #333;
- }
- .tui-attr-box {
- width: 100%;
- padding: 24rpx 25rpx 0;
- box-sizing: border-box;
- font-size: 0;
- background-color: #fff;
- border-radius: 24rpx;
- }
- .tui-attr-item {
- max-width: 100%;
- min-width: 128rpx;
- height: 64rpx;
- display: -webkit-inline-flex;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- background: #fcedea;
- padding: 0 26rpx;
- box-sizing: border-box;
- border-radius: 32rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- font-size: 26rpx;
- border: 1rpx solid #fcedea;
- }
- .tui-attr-active {
- color: #e41f19;
- border: 1rpx solid #e41f19;
- }
- .tui-attr-item text {
- font-weight: bold;
- padding-left: 12rpx;
- }
- .tui-evaluate__box {
- width: 100%;
- padding: 25rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- box-shadow: 0 3rpx 20rpx rgba(183, 183, 183, 0.1);
- overflow: hidden;
- margin-top: 20rpx;
- border-radius: 24rpx;
- }
- .tui-flex__center {
- display: flex;
- align-items: center;
- }
- .tui-avatar {
- width: 64rpx;
- height: 64rpx;
- border-radius: 50%;
- }
- .tui-nickname {
- font-size: 28rpx;
- padding-left: 12rpx;
- }
- .tui-content__box {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- }
- .tui-rate__box {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- color: #999;
- padding: 24rpx 0;
- }
- .tui-desc {
- font-size: 28rpx;
- word-break: break-all;
- text-align: justify;
- }
- .tui-img__box {
- width: 100%;
- font-size: 0;
- padding-top: 4rpx;
- }
- .tui-img__box image {
- width: 200rpx;
- height: 200rpx;
- margin-right: 12rpx;
- margin-top: 12rpx;
- }
- .tui-image {
- width: 400rpx !important;
- height: auto;
- }
- .tui-op__box {
- width: 100%;
- padding-top: 24rpx;
- font-size: 24rpx;
- font-weight: 500;
- justify-content: space-between;
- }
- .tui-op-item {
- display: flex;
- align-items: center;
- margin-left: 40rpx;
- }
- .tui-op-item text {
- padding-right: 6rpx;
- }
- .tui-specs {
- font-size: 24rpx;
- color: #999;
- font-weight: 400;
- word-break: break-all;
- }
- .tui-color-red {
- color: #EB0909;
- }
- </style>
|