mirror of
https://gitee.com/hoslay/ddei-editor.git
synced 2025-12-07 01:28:28 +08:00
106 lines
2.2 KiB
Vue
106 lines
2.2 KiB
Vue
<template>
|
|
<div :id="dialogId" class="ddei-core-dialog-qcview" v-if="forceRefresh">
|
|
<div class="items">
|
|
<div class="item" :title="item.text" v-for="item in dataSource" @click="ok(item)">
|
|
<svg class="icon" aria-hidden="true">
|
|
<use :xlink:href="item.img"></use>
|
|
</svg>
|
|
<div>{{ item.text }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {DDeiEditor} from "ddei-framework";
|
|
import {DDeiEditorUtil} from "ddei-framework";
|
|
import DialogBase from "./dialog"
|
|
|
|
export default {
|
|
name: "ddei-core-dialog-qcview",
|
|
extends: null,
|
|
mixins: [DialogBase],
|
|
props: {
|
|
//外部传入的插件扩展参数
|
|
options: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
dialogId: 'ddei-core-dialog-qcview',
|
|
dataSource: null,
|
|
//强制刷新控制变量
|
|
forceRefresh: false,
|
|
};
|
|
},
|
|
computed: {},
|
|
components: {},
|
|
watch: {},
|
|
created() { },
|
|
mounted() {
|
|
this.refreshData()
|
|
},
|
|
methods: {
|
|
refreshData(){
|
|
if (this.editor?.tempDialogData && this.editor?.tempDialogData[this.dialogId]?.dataSource) {
|
|
this.dataSource = this.editor?.tempDialogData[this.dialogId]?.dataSource;
|
|
}
|
|
},
|
|
|
|
ok(item) {
|
|
if (this.editor?.tempDialogData[this.dialogId]?.callback?.ok) {
|
|
this.editor?.tempDialogData[this.dialogId]?.callback?.ok(item);
|
|
}
|
|
DDeiEditorUtil.closeDialog(this.dialogId);
|
|
},
|
|
cancel() {
|
|
if (this.editor?.tempDialogData[this.dialogId]?.callback?.cancel) {
|
|
this.editor.tempDialogData[this.dialogId].callback.cancel();
|
|
}
|
|
DDeiEditorUtil.closeDialog(this.dialogId);
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.ddei-core-dialog-qcview {
|
|
width: 80px;
|
|
position: absolute;
|
|
background-color: var(--panel-background);
|
|
left: 0px;
|
|
display: none;
|
|
bottom: 16px;
|
|
height: 34px;
|
|
|
|
|
|
.icon {
|
|
font-size: 18px;
|
|
}
|
|
|
|
.items {
|
|
.item {
|
|
height: 24px;
|
|
width: 80px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
>div {
|
|
color: var(--panel-title);
|
|
font-size: 13px;
|
|
flex: 1
|
|
}
|
|
}
|
|
|
|
.item:hover {
|
|
background: var(--panel-hover);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
}
|
|
</style>
|