mirror of https://github.com/halo-dev/halo-admin
Attachment detail drawer.
parent
efd99eb2e6
commit
4f63dc1d57
|
@ -11,13 +11,12 @@
|
||||||
:sm="12"
|
:sm="12"
|
||||||
:xs="24"
|
:xs="24"
|
||||||
>
|
>
|
||||||
<a-card :bodyStyle="{ padding: 0}" hoverable>
|
<a-card :bodyStyle="{ padding: 0 }" hoverable @click="showDetailDrawer">
|
||||||
<!-- <img :src="attachment.thumbPath" :alt="attachment.name" slot="cover"> -->
|
<div class="attach-thumb">
|
||||||
<div class="box">
|
<img :src="attachment.thumbPath">
|
||||||
<img :src="attachment.thumbPath"/>
|
|
||||||
</div>
|
</div>
|
||||||
<a-card-meta>
|
<a-card-meta>
|
||||||
<template slot="description">{{ attachment.name }}</template>
|
<template slot="description">{{ attachment.mediaType }}</template>
|
||||||
</a-card-meta>
|
</a-card-meta>
|
||||||
</a-card>
|
</a-card>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
@ -43,24 +42,34 @@
|
||||||
<a-icon type="inbox"/>
|
<a-icon type="inbox"/>
|
||||||
</p>
|
</p>
|
||||||
<p class="ant-upload-text">点击选择文件或将文件拖拽到此处</p>
|
<p class="ant-upload-text">点击选择文件或将文件拖拽到此处</p>
|
||||||
<p
|
<p class="ant-upload-hint">支持单个或批量上传</p>
|
||||||
class="ant-upload-hint"
|
|
||||||
>支持单个或批量上传</p>
|
|
||||||
</a-upload-dragger>
|
</a-upload-dragger>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
|
<a-drawer
|
||||||
|
title="图片详情"
|
||||||
|
:width="drawerWidth"
|
||||||
|
closable
|
||||||
|
:visible="drawerVisible"
|
||||||
|
destroyOnClose
|
||||||
|
>图片详情</a-drawer>
|
||||||
</page-view>
|
</page-view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { PageView } from '@/layouts'
|
import { PageView } from '@/layouts'
|
||||||
|
import { mixin, mixinDevice } from '@/utils/mixin.js'
|
||||||
import attachmentApi from '@/api/attachment'
|
import attachmentApi from '@/api/attachment'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
PageView
|
PageView
|
||||||
},
|
},
|
||||||
|
mixins: [mixin, mixinDevice],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
uploadVisible: false,
|
uploadVisible: false,
|
||||||
|
drawerVisible: false,
|
||||||
|
selectAttachment: null,
|
||||||
|
drawerWidth: '560',
|
||||||
attachments: [],
|
attachments: [],
|
||||||
pagination: {
|
pagination: {
|
||||||
page: 1,
|
page: 1,
|
||||||
|
@ -72,6 +81,13 @@ export default {
|
||||||
created() {
|
created() {
|
||||||
this.loadAttachments()
|
this.loadAttachments()
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
if (this.isMobile()) {
|
||||||
|
this.drawerWidth = '100%'
|
||||||
|
} else {
|
||||||
|
this.drawerWidth = '460'
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
loadAttachments() {
|
loadAttachments() {
|
||||||
const pagination = Object.assign({}, this.pagination)
|
const pagination = Object.assign({}, this.pagination)
|
||||||
|
@ -81,6 +97,9 @@ export default {
|
||||||
this.pagination.total = response.data.data.total
|
this.pagination.total = response.data.data.total
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
showDetailDrawer() {
|
||||||
|
this.drawerVisible = true
|
||||||
|
},
|
||||||
showUploadModal() {
|
showUploadModal() {
|
||||||
this.uploadVisible = true
|
this.uploadVisible = true
|
||||||
},
|
},
|
||||||
|
@ -110,19 +129,22 @@ export default {
|
||||||
right: 20px;
|
right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box{
|
.attach-thumb {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background: skyblue;
|
position: relative;
|
||||||
position: relative;
|
padding-bottom: 56%;
|
||||||
padding-bottom: 56%;
|
overflow: hidden;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
.box>img{
|
.attach-thumb > img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-card-meta {
|
||||||
|
padding: 0.8rem;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<a-drawer
|
<a-drawer
|
||||||
title="文章设置"
|
title="文章设置"
|
||||||
:width="drawerWidth"
|
:width="drawerWidth"
|
||||||
:closable="true"
|
closable
|
||||||
@close="onClose"
|
@close="onClose"
|
||||||
:visible="visible"
|
:visible="visible"
|
||||||
>
|
>
|
||||||
|
@ -152,7 +152,6 @@ export default {
|
||||||
mavonEditor,
|
mavonEditor,
|
||||||
CategoryTree
|
CategoryTree
|
||||||
},
|
},
|
||||||
|
|
||||||
mixins: [mixin, mixinDevice],
|
mixins: [mixin, mixinDevice],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue