|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <div class="common-container">
|
|
|
|
|
|
+ <div class="common-container my-open-img">
|
|
<TitleBar></TitleBar>
|
|
<TitleBar></TitleBar>
|
|
<div class="main-container">
|
|
<div class="main-container">
|
|
<div class="search-container TableSelectMain">
|
|
<div class="search-container TableSelectMain">
|
|
@@ -46,13 +46,14 @@
|
|
<el-table-column prop="name" label="app用户类型" :show-overflow-tooltip="true"></el-table-column>
|
|
<el-table-column prop="name" label="app用户类型" :show-overflow-tooltip="true"></el-table-column>
|
|
<el-table-column label="图片">
|
|
<el-table-column label="图片">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span @click="imgOpen(scope.row.image)">
|
|
|
|
|
|
+ <!-- <span @click="imgOpen(scope.row.image)"> </span> -->
|
|
<el-image
|
|
<el-image
|
|
style="width: 50px; height: 50px; cursor: pointer"
|
|
style="width: 50px; height: 50px; cursor: pointer"
|
|
:src="scope.row.image | pathPipe"
|
|
:src="scope.row.image | pathPipe"
|
|
:fit="'fit'"
|
|
:fit="'fit'"
|
|
|
|
+ :preview-src-list="[scope.row.image]"
|
|
></el-image>
|
|
></el-image>
|
|
- </span>
|
|
|
|
|
|
+
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="roleCode" label="角色编码" :show-overflow-tooltip="true">
|
|
<el-table-column prop="roleCode" label="角色编码" :show-overflow-tooltip="true">
|
|
@@ -296,16 +297,30 @@ export default {
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
<style lang="stylus" scoped>
|
|
<style lang="stylus" scoped>
|
|
-.TableSelectMain .el-date-editor.el-input.el-input--prefix.el-input--suffix.el-date-editor--date {
|
|
|
|
- width: 95%;
|
|
|
|
-}
|
|
|
|
|
|
|
|
-.authority {
|
|
|
|
- margin-top: 10px;
|
|
|
|
|
|
+.my-open-img{
|
|
|
|
+ .TableSelectMain .el-date-editor.el-input.el-input--prefix.el-input--suffix.el-date-editor--date {
|
|
|
|
+ width: 95%;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .authority {
|
|
|
|
+ margin-top: 10px;
|
|
|
|
|
|
- .el-dropdown-link {
|
|
|
|
- color: #409EFF;
|
|
|
|
- cursor: pointer;
|
|
|
|
|
|
+ .el-dropdown-link {
|
|
|
|
+ color: #409EFF;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ ::v-deep .el-image{
|
|
|
|
+ img{
|
|
|
|
+ pointer-events: auto;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .el-icon-circle-close {
|
|
|
|
+ font-size: 50px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
</style>
|
|
</style>
|