Merge pull request #12978 from dataease/pr@dev-v2@style_layer
style(图表): 调整图表边框显示图层
This commit is contained in:
commit
e0dd6cfe93
@ -47,15 +47,15 @@
|
||||
@mousedown="handleInnerMouseDownOnShape"
|
||||
>
|
||||
<Icon v-if="shapeLock" name="dv-lock"><dvLock class="svg-icon iconfont icon-suo" /></Icon>
|
||||
<div class="component-slot" :style="slotStyle">
|
||||
<slot></slot>
|
||||
</div>
|
||||
<!--边框背景-->
|
||||
<Board
|
||||
v-if="svgInnerEnable"
|
||||
:style="{ color: element.commonBackground.innerImageColor }"
|
||||
:name="commonBackgroundSvgInner"
|
||||
></Board>
|
||||
<div class="component-slot" :style="slotStyle">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-for="item in isActive() ? getPointList() : []"
|
||||
|
||||
@ -62,11 +62,13 @@ const handleRemove = (file, fileListArray) => {
|
||||
snapshotStore.recordSnapshotCache()
|
||||
}
|
||||
async function upload(file) {
|
||||
uploadFileResult(file.file, fileUrl => {
|
||||
snapshotStore.recordSnapshotCache()
|
||||
element.value.propValue.urlList.unshift({ name: file.file.name, url: fileUrl })
|
||||
useEmitt().emitter.emit('calcData-' + element.value.id)
|
||||
})
|
||||
if (element.value.propValue.urlList.length < 10) {
|
||||
uploadFileResult(file.file, fileUrl => {
|
||||
snapshotStore.recordSnapshotCache()
|
||||
element.value.propValue.urlList.unshift({ name: file.file.name, url: fileUrl })
|
||||
useEmitt().emitter.emit('calcData-' + element.value.id)
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const onStyleChange = () => {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user