初始化
This commit is contained in:
69
frontend/packages/BasicComponents/Picture/index.vue
Normal file
69
frontend/packages/BasicComponents/Picture/index.vue
Normal file
@@ -0,0 +1,69 @@
|
||||
<template>
|
||||
<div class="bs-design-wrap bs-picture">
|
||||
<div class="content-box">
|
||||
<el-image
|
||||
:src="getCoverPicture(config.customize.url) || noImageUrl"
|
||||
fit="fill"
|
||||
:style="{
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
opacity: config.customize.opacity,
|
||||
borderRadius: config.customize.radius + 'px'
|
||||
}"
|
||||
draggable="false"
|
||||
>
|
||||
<div
|
||||
slot="placeholder"
|
||||
class="image-slot"
|
||||
>
|
||||
加载中···
|
||||
</div>
|
||||
</el-image>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { getFileUrl } from 'data-room-ui/js/utils/file'
|
||||
import { refreshComponentMixin } from 'data-room-ui/js/mixins/refreshComponent'
|
||||
|
||||
export default {
|
||||
name: 'PictureChart',
|
||||
components: {},
|
||||
mixins: [refreshComponentMixin],
|
||||
props: {
|
||||
config: {
|
||||
type: Object,
|
||||
default: () => ({})
|
||||
}
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
noImageUrl: require('data-room-ui/BasicComponents/Picture/images/noImage.png')
|
||||
}
|
||||
},
|
||||
computed: {},
|
||||
watch: {},
|
||||
mounted () {},
|
||||
methods: {
|
||||
/**
|
||||
* 获取图片访问地址,如果是相对路径则拼接上文件访问前缀地址
|
||||
* @param url
|
||||
* @returns {*}
|
||||
*/
|
||||
getCoverPicture (url) {
|
||||
return getFileUrl(url)
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.bs-design-wrap {
|
||||
width: 100%;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
.content-box {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user