123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <view>
- <view v-for="(item,index) in feedback_list" :key="index" class="uni-padding-wrap" style="border-bottom: 1px solid #EEEEEE;padding-bottom: 10upx;">
- <view class="uni-comment">
- <view class="uni-comment-list">
- <view class="uni-comment-face"><image style="width: 100%;height: 100%;" :src="item.member_avatar"></image></view>
- <view class="uni-comment-body">
- <view class="uni-comment-top">
- <text style="font-size: 28upx;color: #303133">{{item.member_truename}}</text>
- <uniIcon type="star" size="16"></uniIcon>
- </view>
- <view class="uni-comment-date">
- <text style="color: #909399;font-size: 20upx;">{{item.add_time}}</text>
- </view>
- </view>
- <view>
- <van-rate
- size="16"
- :value="item.satisfaction"
- void-icon="star"
- void-color="#eee"
- color="#ee0a24"
- readonly='true'
- />
- </view>
- </view>
- <view style="color: #303133;font-size: 28upx;" class="uni-comment-content">{{item.content}}</view>
- <view v-for="(items, indexs) in item.img_list" :key="indexs" >
- <image @click="gopicture(items)" style="float: left;width: 100upx;height: 100upx;padding-right:18upx;" :src="items"></image>
- </view>
- </view>
- </view>
- <unipopup :images="images" :show="ishow"/>
- </view>
- </template>
- <script>
- import unipopup from '@/component/openpictrue.vue'
- import uniIcon from '@/component/uni-icon/uni-icon.vue'
- export default {
- components: {
- unipopup
- },
- props: {
- feedback_list: {
- type: Array
- },
- showpicture: {
- type: Boolean,
- default: false,
- }
- },
-
- component:{
- uniIcon
- },
- watch: {
- 'showpicture': function(val){
- console.log(val)
- if(val) {
- this.ishow = true;
- }else {
- this.ishow = false;
- }
- }
- },
- data() {
- return {
- images: '',
- ishow: false,
- //title:"评论界面"
- }
- },
- methods: {
- gopicture(e,a) {
- this.images = e;
- this.ishow = true;
- uni.$emit('changpicture')
- }
-
- },
- }
- </script>
- <style>
- </style>
|