|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="common-container">
|
|
|
+ <div class="common-container my-open-img">
|
|
|
<TitleBar></TitleBar>
|
|
|
<div class="main-container">
|
|
|
<div class="search-container TableSelectMain">
|
|
@@ -69,12 +69,13 @@
|
|
|
|
|
|
<el-table-column prop="head" label="头像">
|
|
|
<template slot-scope="scope">
|
|
|
- <span @click="imgOpen(scope.row.avatarUrl)">
|
|
|
+ <!-- <span @click="imgOpen(scope.row.avatarUrl)"></span> -->
|
|
|
<el-image
|
|
|
:src="scope.row.avatarUrl | pathPipe"
|
|
|
style="width:40px;height:40px;cursor:pointer"
|
|
|
+ :preview-src-list="[scope.row.avatarUrl]"
|
|
|
></el-image>
|
|
|
- </span>
|
|
|
+
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="mobile" label="手机号" :show-overflow-tooltip="true"></el-table-column>
|
|
@@ -357,17 +358,32 @@ export default {
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
-<style scoped>
|
|
|
-.TableSelectMain .el-date-editor.el-input.el-input--prefix.el-input--suffix.el-date-editor--date {
|
|
|
- width: 95%;
|
|
|
-}
|
|
|
-.el-date-editor {
|
|
|
- border-radius: 20px;
|
|
|
- overflow: hidden;
|
|
|
- height: 30px;
|
|
|
- line-height: 30px;
|
|
|
-}
|
|
|
-.el-range-editor.el-input__inner {
|
|
|
- margin-top: 5px;
|
|
|
+<style lang="stylus" scoped>
|
|
|
+
|
|
|
+
|
|
|
+.my-open-img{
|
|
|
+ .TableSelectMain .el-date-editor.el-input.el-input--prefix.el-input--suffix.el-date-editor--date {
|
|
|
+ width: 95%;
|
|
|
+ }
|
|
|
+ .el-date-editor {
|
|
|
+ border-radius: 20px;
|
|
|
+ overflow: hidden;
|
|
|
+ height: 30px;
|
|
|
+ line-height: 30px;
|
|
|
+ }
|
|
|
+ .el-range-editor.el-input__inner {
|
|
|
+ margin-top: 5px;
|
|
|
+ }
|
|
|
+ ::v-deep .el-image{
|
|
|
+ img{
|
|
|
+ pointer-events: auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-icon-circle-close {
|
|
|
+ font-size: 50px;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
</style>
|