74 lines
1.6 KiB
Vue
74 lines
1.6 KiB
Vue
<template>
|
|
<div class="dv-decoration-4" :ref="ref">
|
|
<div
|
|
:class="`container ${reverse ? 'reverse' : 'normal'}`"
|
|
:style="reverse ? `width:${width}px;height:5px` : `width:5px;height:${height}px;`"
|
|
>
|
|
<svg :width="reverse ? width : 5" :height="reverse ? 5 : height">
|
|
<polyline
|
|
:stroke="mergedColor[0]"
|
|
:points="reverse ? `0, 2.5 ${width}, 2.5` : `2.5, 0 2.5, ${height}`"
|
|
/>
|
|
<polyline
|
|
class="bold-line"
|
|
:stroke="mergedColor[1]"
|
|
stroke-width="3"
|
|
stroke-dasharray="20, 80"
|
|
stroke-dashoffset="-30"
|
|
:points="reverse ? `0, 2.5 ${width}, 2.5` : `2.5, 0 2.5, ${height}`"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import autoResize from '../../../mixin/autoResize'
|
|
|
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|
|
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
|
|
|
export default {
|
|
name: 'DvDecoration4',
|
|
mixins: [autoResize],
|
|
props: {
|
|
color: {
|
|
type: Array,
|
|
default: () => ([])
|
|
},
|
|
reverse: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
ref: 'decoration-4',
|
|
|
|
defaultColor: ['rgba(255, 255, 255, 0.3)', 'rgba(255, 255, 255, 0.3)'],
|
|
|
|
mergedColor: []
|
|
}
|
|
},
|
|
watch: {
|
|
color () {
|
|
const { mergeColor } = this
|
|
|
|
mergeColor()
|
|
}
|
|
},
|
|
methods: {
|
|
mergeColor () {
|
|
const { color, defaultColor } = this
|
|
|
|
this.mergedColor = deepMerge(deepClone(defaultColor, true), color || [])
|
|
}
|
|
},
|
|
mounted () {
|
|
const { mergeColor } = this
|
|
|
|
mergeColor()
|
|
}
|
|
}
|
|
</script> |