Commit e03d1551 authored by zhengke's avatar zhengke

修改

parent 849ea7df
......@@ -55,21 +55,21 @@
</el-tooltip>
</template>
</el-table-column>
<el-table-column prop="Name" label="详情" width="200">
<el-table-column prop="Name" label="详情">
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Content" placement="top">
<span>{{scope.row.Content}}</span>
</el-tooltip>
<!-- <div>
<div v-for="(item,index) in scope.row.CommentImgList" :key="index" @click="OpenImg(scope.row)"
style="margin: 10px; display: inline-block; cursor: pointer;">
<div class="backImg"
:style="{backgroundImage:'url(' + domainManager().ImageUrl+item + ')',backgroundSize:'cover'}"></div>
</div>
</div> -->
<div>
<div v-for="(item,index) in scope.row.CommentImgList" :key="index" @click="OpenImg(item)"
style="margin: 10px; display: inline-block; cursor: pointer;">
<div class="backImg"
:style="{backgroundImage:'url(' + domainManager().ImageUrl+item + ')',backgroundSize:'cover'}"></div>
</div>
</div>
</template>
</el-table-column>
<el-table-column prop="CommentGradeName" label="评价回复">
<!-- <el-table-column prop="CommentGradeName" label="评价回复">
<template slot-scope="scope">
<span>{{scope.row.Reply}}</span>
</template>
......@@ -86,7 +86,7 @@
<el-tag v-if="scope.row.Is_Show==1" size="mini" type="success">显示</el-tag>
<el-tag v-if="scope.row.Is_Show==2" size="mini" type="warning">隐藏</el-tag>
</template>
</el-table-column>
</el-table-column> -->
<el-table-column width="220" prop="address" label="操作">
<template slot-scope="scope">
<!-- <el-tooltip class="item" effect="dark" content="评价回复" placement="top">
......@@ -112,6 +112,13 @@
:current-page.sync="msg.pageIndex" layout="prev, pager, next" :total="total">
</el-pagination>
</div>
<!-- 查看图片 -->
<el-dialog :visible.sync="seeimgDig" width="45%">
<div>
<img :src="imgSrc" style="width:100%;max-width:100%;" alt="">
</div>
</el-dialog>
</div>
</template>
......@@ -161,6 +168,8 @@
//日期
dateList: [],
SelectList: [],
seeimgDig:false,
imgSrc:'',
}
},
created() {
......@@ -195,8 +204,8 @@
});
},
OpenImg(item) {
// this.imgSrc = 'https://cdnimg.iotweixin.com/uploads/mall1285/20200316/586d61c616082de7c3a7d1d778104785.jpg';
// this.seeimgDig = true;
this.imgSrc = item
this.seeimgDig = true;
},
TableSelectChange(val) {
this.SelectList = val;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment