123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <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>
|