chore: 规范 module 名称
This commit is contained in:
23
package/layer/src/component/CloseBtn.vue
Normal file
23
package/layer/src/component/CloseBtn.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "CloseBtn",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, defineEmits } from "vue";
|
||||
|
||||
const emit = defineEmits(["closeHandle"]);
|
||||
|
||||
const closeHandle = () => {
|
||||
emit("closeHandle");
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<a
|
||||
class="layui-layer-ico layui-layer-close layui-layer-close1"
|
||||
href="javascript:;"
|
||||
@click="closeHandle"
|
||||
></a>
|
||||
</template>
|
||||
23
package/layer/src/component/Iframe.vue
Normal file
23
package/layer/src/component/Iframe.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "Iframe",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
export interface IframeProps {
|
||||
src: string;
|
||||
}
|
||||
|
||||
const props = defineProps<IframeProps>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<iframe
|
||||
scrolling="auto"
|
||||
class="layui-layer-iframe"
|
||||
allowtransparency="true"
|
||||
frameborder="0"
|
||||
:src="src"
|
||||
></iframe>
|
||||
</template>
|
||||
9
package/layer/src/component/Resize.vue
Normal file
9
package/layer/src/component/Resize.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "Resize",
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<span class="layui-layer-resize"></span>
|
||||
</template>
|
||||
39
package/layer/src/component/Shade.vue
Normal file
39
package/layer/src/component/Shade.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "Shade",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, defineEmits } from "vue";
|
||||
|
||||
const emit = defineEmits(["shadeClick"]);
|
||||
|
||||
export interface ShadeProps {
|
||||
index: number;
|
||||
opacity: string;
|
||||
visible: boolean;
|
||||
}
|
||||
|
||||
const props = defineProps<ShadeProps>();
|
||||
|
||||
const styles = computed(() => {
|
||||
return {
|
||||
opacity: props.opacity,
|
||||
zIndex: props.index,
|
||||
};
|
||||
});
|
||||
|
||||
const shadeClick = () => {
|
||||
emit("shadeClick");
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
class="layui-layer-shade"
|
||||
:style="styles"
|
||||
@click="shadeClick"
|
||||
v-if="visible"
|
||||
></div>
|
||||
</template>
|
||||
26
package/layer/src/component/Title.vue
Normal file
26
package/layer/src/component/Title.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "Title",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
export interface HeaderProps {
|
||||
title: string;
|
||||
}
|
||||
|
||||
const renderContent = function (content: any) {
|
||||
if (typeof content === "function") {
|
||||
return content();
|
||||
}
|
||||
return content;
|
||||
};
|
||||
|
||||
const props = defineProps<HeaderProps>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="layui-layer-title" style="cursor: move">
|
||||
{{ renderContent(title) }}
|
||||
</div>
|
||||
</template>
|
||||
1
package/layer/src/component/index.ts
Normal file
1
package/layer/src/component/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { default as LayLayer } from "./index.vue"; // layer component
|
||||
610
package/layer/src/component/index.vue
Normal file
610
package/layer/src/component/index.vue
Normal file
@@ -0,0 +1,610 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
name: "LayLayer",
|
||||
};
|
||||
</script>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import Shade from "./Shade.vue";
|
||||
import Iframe from "./Iframe.vue";
|
||||
import Title from "./Title.vue";
|
||||
import CloseBtn from "./CloseBtn.vue";
|
||||
import Resize from "./Resize.vue";
|
||||
import {
|
||||
Ref,
|
||||
ref,
|
||||
watch,
|
||||
computed,
|
||||
useSlots,
|
||||
VNodeTypes,
|
||||
nextTick,
|
||||
inject,
|
||||
} from "vue";
|
||||
import {
|
||||
nextId,
|
||||
maxArea,
|
||||
maxOffset,
|
||||
getArea,
|
||||
calculateArea,
|
||||
calculateOffset,
|
||||
calculateContent,
|
||||
calculateType,
|
||||
minArea,
|
||||
minOffset,
|
||||
updateMinArrays,
|
||||
getDrawerAnimationClass,
|
||||
calculateDrawerArea,
|
||||
} from "../utils";
|
||||
import useMove from "../composable/useMove";
|
||||
import useResize from "../composable/useResize";
|
||||
import { zIndexKey } from "../tokens";
|
||||
|
||||
const slots = useSlots();
|
||||
const layero = ref<HTMLElement | null>(null);
|
||||
const emit = defineEmits(["close", "update:modelValue"]);
|
||||
|
||||
export interface LayModalProps {
|
||||
title?: string | boolean | Function;
|
||||
icon?: string | number;
|
||||
skin?: string;
|
||||
zIndex?: number | Function;
|
||||
setTop?: boolean;
|
||||
offset?: string[] | string;
|
||||
area?: string[] | "auto";
|
||||
modelValue?: boolean;
|
||||
maxmin?: boolean | string;
|
||||
btn?: Record<string, unknown>[] | false;
|
||||
move?: boolean | string;
|
||||
resize?: boolean | string;
|
||||
type?: 0 | 1 | 2 | 3 | "dialog" | "page" | "iframe" | "loading" | "drawer";
|
||||
content?: string | Function | object | VNodeTypes;
|
||||
isHtmlFragment?: boolean;
|
||||
shade?: boolean | string;
|
||||
shadeClose?: boolean | string;
|
||||
shadeOpacity?: string;
|
||||
closeBtn?: boolean | string;
|
||||
btnAlign?: "l" | "c" | "r";
|
||||
time?: number;
|
||||
load?: number;
|
||||
anim?: 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
||||
isOutAnim?: boolean;
|
||||
destroy?: Function;
|
||||
success?: Function;
|
||||
end?: Function;
|
||||
yes?: Function;
|
||||
yesText?: string;
|
||||
isFunction?: boolean;
|
||||
isMessage?: boolean;
|
||||
appContext?: any;
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<LayModalProps>(), {
|
||||
title: "信息",
|
||||
setTop: false,
|
||||
offset: () => ["50%", "50%"],
|
||||
area: "auto",
|
||||
modelValue: false,
|
||||
maxmin: false,
|
||||
move: true,
|
||||
type: 1,
|
||||
time: 0,
|
||||
shade: true,
|
||||
shadeClose: true,
|
||||
shadeOpacity: "0.1",
|
||||
closeBtn: true,
|
||||
btnAlign: "r",
|
||||
load: 0,
|
||||
anim: 0,
|
||||
resize: false,
|
||||
isHtmlFragment: false,
|
||||
isOutAnim: true,
|
||||
destroy: () => {},
|
||||
success: () => {},
|
||||
end: () => {},
|
||||
yesText: "确定",
|
||||
isFunction: false,
|
||||
isMessage: false,
|
||||
});
|
||||
|
||||
const id: Ref<string> = ref(nextId());
|
||||
const max: Ref<boolean> = ref(false);
|
||||
const min: Ref<boolean> = ref(false);
|
||||
const type: number = calculateType(props.type);
|
||||
const area: Ref<string[]> = ref(
|
||||
calculateArea(props.type, props.area, props.offset)
|
||||
);
|
||||
const offset: Ref<string[]> = ref(
|
||||
calculateOffset(props.offset, area.value, props.type)
|
||||
);
|
||||
const contentHeight = ref(
|
||||
calculateContent(area.value[1], props.btn, type, props.isMessage)
|
||||
);
|
||||
const index: Ref<number | Function> = ref(
|
||||
props.zIndex ?? inject(zIndexKey, 99999)
|
||||
);
|
||||
const visible: Ref<boolean> = ref(false);
|
||||
const first: Ref<boolean> = ref(true);
|
||||
|
||||
const w: Ref<string> = ref(area.value[0]);
|
||||
const h: Ref<string> = ref(area.value[1]);
|
||||
const t: Ref<string> = ref(offset.value[0]);
|
||||
const l: Ref<string> = ref(offset.value[1]);
|
||||
|
||||
const _w: Ref<string> = ref(area.value[0]);
|
||||
const _h: Ref<string> = ref(area.value[0]);
|
||||
const _t: Ref<string> = ref(offset.value[0]);
|
||||
const _l: Ref<string> = ref(offset.value[1]);
|
||||
|
||||
/**
|
||||
* 首次打开
|
||||
* <p>
|
||||
*/
|
||||
const firstOpenDelayCalculation = function () {
|
||||
nextTick(() => {
|
||||
area.value = getArea(layero.value);
|
||||
if (props.type === "drawer") {
|
||||
area.value = calculateDrawerArea(props.offset, props.area);
|
||||
}
|
||||
offset.value = calculateOffset(props.offset, area.value, props.type);
|
||||
|
||||
w.value = area.value[0];
|
||||
h.value = area.value[1];
|
||||
t.value = offset.value[0];
|
||||
l.value = offset.value[1];
|
||||
|
||||
_w.value = area.value[0];
|
||||
_l.value = area.value[1];
|
||||
_t.value = offset.value[0];
|
||||
_l.value = offset.value[1];
|
||||
|
||||
supportMove();
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 普通打开
|
||||
* <p>
|
||||
*/
|
||||
const notFirstOpenLayerInit = function () {
|
||||
w.value = _w.value;
|
||||
h.value = _h.value;
|
||||
t.value = _t.value;
|
||||
l.value = _l.value;
|
||||
supportMove();
|
||||
};
|
||||
|
||||
/**
|
||||
* Component 模式, 关闭事件
|
||||
* <p>
|
||||
* 在 Component 模式下, 隐藏前需要恢复正常窗体位置与尺寸, 保存
|
||||
**/
|
||||
const beforeCloseSaveData = function () {
|
||||
if (min.value) minHandle();
|
||||
if (max.value) maxHandle();
|
||||
_w.value = w.value;
|
||||
_h.value = h.value;
|
||||
_t.value = t.value;
|
||||
_l.value = l.value;
|
||||
};
|
||||
|
||||
/**
|
||||
* 弹层最大化
|
||||
* <p>
|
||||
*/
|
||||
const maxHandle = () => {
|
||||
if (max.value) {
|
||||
w.value = _w.value;
|
||||
h.value = _h.value;
|
||||
t.value = _t.value;
|
||||
l.value = _l.value;
|
||||
} else {
|
||||
_t.value = t.value;
|
||||
_l.value = l.value;
|
||||
_w.value = w.value;
|
||||
_h.value = h.value;
|
||||
w.value = maxArea().w;
|
||||
h.value = maxArea().h;
|
||||
t.value = maxOffset().t;
|
||||
l.value = maxOffset().l;
|
||||
}
|
||||
max.value = !max.value;
|
||||
};
|
||||
|
||||
/**
|
||||
* 弹层最小化
|
||||
* <p>
|
||||
*/
|
||||
const minHandle = () => {
|
||||
let left = 180 * updateMinArrays(id.value, !min.value);
|
||||
if (left > document.documentElement.clientWidth - 180) {
|
||||
left = document.documentElement.clientWidth - 180;
|
||||
}
|
||||
if (min.value) {
|
||||
w.value = _w.value;
|
||||
h.value = _h.value;
|
||||
t.value = _t.value;
|
||||
l.value = _l.value;
|
||||
} else {
|
||||
_w.value = w.value;
|
||||
_h.value = h.value;
|
||||
_t.value = t.value;
|
||||
_l.value = l.value;
|
||||
h.value = minArea().h;
|
||||
w.value = minArea().w;
|
||||
t.value = minOffset(left).t;
|
||||
l.value = minOffset(left).l;
|
||||
}
|
||||
min.value = !min.value;
|
||||
};
|
||||
|
||||
/**
|
||||
* 重置弹层
|
||||
* <p>
|
||||
*/
|
||||
const reset = function () {
|
||||
if (!first.value) {
|
||||
min.value = false;
|
||||
max.value = false;
|
||||
w.value = area.value[0];
|
||||
h.value = area.value[1];
|
||||
t.value = offset.value[0];
|
||||
l.value = offset.value[1];
|
||||
_w.value = area.value[0];
|
||||
_h.value = area.value[1];
|
||||
_t.value = offset.value[0];
|
||||
_l.value = offset.value[1];
|
||||
}
|
||||
if (!props.modelValue) {
|
||||
emit("update:modelValue", true);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 监听 modalValue 的值
|
||||
* <p>
|
||||
* 只有 Component 模式会触发
|
||||
*/
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
() => {
|
||||
visible.value = props.modelValue;
|
||||
if (visible.value) {
|
||||
if (first.value) {
|
||||
first.value = false;
|
||||
firstOpenDelayCalculation();
|
||||
} else {
|
||||
notFirstOpenLayerInit();
|
||||
}
|
||||
} else {
|
||||
beforeCloseSaveData();
|
||||
}
|
||||
},
|
||||
{ deep: true }
|
||||
);
|
||||
|
||||
/**
|
||||
* 监听 visible 值
|
||||
* <p>
|
||||
*/
|
||||
watch(
|
||||
() => visible.value,
|
||||
() => {
|
||||
if (visible.value) {
|
||||
if (props.isFunction) {
|
||||
firstOpenDelayCalculation();
|
||||
}
|
||||
props.success();
|
||||
} else {
|
||||
props.end();
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* 高度监听
|
||||
* <p>
|
||||
*
|
||||
* 在发生拖拽时, 需根据弹出层的外层高度计算 content 高度, 需要
|
||||
* 考虑 btn 操作栏, 计算公式:contentHeight = h - btnHeight
|
||||
*
|
||||
* @param h 弹层高度
|
||||
* @param btn 操作栏
|
||||
* @param type 弹层类型
|
||||
*/
|
||||
watch(
|
||||
() => h.value,
|
||||
() => {
|
||||
contentHeight.value = calculateContent(
|
||||
h.value,
|
||||
props.btn,
|
||||
type,
|
||||
props.isMessage
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* 弹层类型
|
||||
*
|
||||
* @param type 类型
|
||||
* @param isMessage 是消息
|
||||
* @param icon 图标类型
|
||||
*/
|
||||
const boxClasses = computed(() => {
|
||||
return [
|
||||
type === 0 ? "layui-layer-dialog" : "",
|
||||
type === 1 ? "layui-layer-page" : "",
|
||||
type === 2 ? "layui-layer-iframe" : "",
|
||||
type === 3 ? "layui-layer-loading" : "",
|
||||
props.isMessage ? "layui-layer-msg" : "",
|
||||
props.isMessage && !props.icon ? "layui-layer-hui" : "",
|
||||
props.skin,
|
||||
];
|
||||
});
|
||||
|
||||
/**
|
||||
* 拖拽拉伸
|
||||
* <p>
|
||||
*/
|
||||
const supportMove = function () {
|
||||
if (props.move && props.type != "drawer") {
|
||||
nextTick(() => {
|
||||
// @ts-ignore 拖拽
|
||||
useMove(layero.value, (left, top) => {
|
||||
l.value = left;
|
||||
t.value = top;
|
||||
});
|
||||
// @ts-ignore 拉伸
|
||||
useResize(layero.value, (width, height) => {
|
||||
h.value = height;
|
||||
w.value = width;
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 弹层样式
|
||||
* <p>
|
||||
*/
|
||||
const styles = computed(() => {
|
||||
return {
|
||||
top: t.value,
|
||||
left: l.value,
|
||||
width: w.value,
|
||||
height: h.value,
|
||||
zIndex: index.value,
|
||||
};
|
||||
});
|
||||
|
||||
/**
|
||||
* 弹层内容
|
||||
* <p>
|
||||
* @param type 类型
|
||||
* @param load 加载动画
|
||||
* @param icon 图标
|
||||
*/
|
||||
const contentClasses = computed(() => {
|
||||
return [
|
||||
type === 3 ? `layui-layer-loading${props.load}` : "",
|
||||
props.icon ? "layui-layer-padding" : "",
|
||||
];
|
||||
});
|
||||
|
||||
/**
|
||||
* 关闭操作
|
||||
* <p>
|
||||
* @param null
|
||||
*/
|
||||
const closeHandle = () => {
|
||||
emit("close");
|
||||
emit("update:modelValue", false);
|
||||
props.destroy();
|
||||
};
|
||||
|
||||
/**
|
||||
* 确定操作
|
||||
* <p>
|
||||
* @param null
|
||||
*/
|
||||
const yesHandle = () => {
|
||||
if (props.yes != undefined) props.yes();
|
||||
else closeHandle();
|
||||
};
|
||||
|
||||
/**
|
||||
* 遮盖层点击
|
||||
* <p>
|
||||
* @param null
|
||||
*/
|
||||
const shadeHandle = () => {
|
||||
if (props.shadeClose) closeHandle();
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取内容
|
||||
* <p>
|
||||
* @param content 文本 / 方法
|
||||
*/
|
||||
const renderContent = function (content: any) {
|
||||
if (content instanceof Function) {
|
||||
return content();
|
||||
}
|
||||
return content;
|
||||
};
|
||||
|
||||
/**
|
||||
* 弹层图标
|
||||
* <p>
|
||||
* @param icon 图标
|
||||
*/
|
||||
const iconClass = computed(() => {
|
||||
return ["layui-layer-ico", `layui-layer-ico${props.icon}`];
|
||||
});
|
||||
|
||||
/**
|
||||
* 入场动画
|
||||
* <p>
|
||||
* @param type 类型
|
||||
* @param anim 入场动画
|
||||
*/
|
||||
const enterActiveClass = computed(() => {
|
||||
if (props.type === "drawer") {
|
||||
return getDrawerAnimationClass(props.offset);
|
||||
}
|
||||
return `layer-anim layer-anim-0${props.anim}`;
|
||||
});
|
||||
|
||||
/**
|
||||
* 离场动画
|
||||
* <p>
|
||||
* @param type 类型
|
||||
* @param isOutAnim 离场动画
|
||||
*/
|
||||
const leaveActiveClass = computed(() => {
|
||||
if (props.type === "drawer") {
|
||||
return getDrawerAnimationClass(props.offset, true);
|
||||
}
|
||||
return props.isOutAnim ? `layer-anim-close` : "";
|
||||
});
|
||||
|
||||
/**
|
||||
* 打卡弹层
|
||||
* <p>
|
||||
*/
|
||||
const open = () => {
|
||||
visible.value = true;
|
||||
};
|
||||
|
||||
/**
|
||||
* 关闭弹层
|
||||
* <p>
|
||||
*/
|
||||
const close = () => {
|
||||
visible.value = false;
|
||||
};
|
||||
|
||||
/**
|
||||
* 显示遮盖
|
||||
* <p>
|
||||
* @param visible 弹层状态
|
||||
* @param shade 开启遮盖
|
||||
* @param min 最小化
|
||||
*/
|
||||
const shadeVisible = computed(() => {
|
||||
return visible.value && props.shade && !min.value;
|
||||
});
|
||||
|
||||
/**
|
||||
* 拉伸支持
|
||||
* <p>
|
||||
* @param resize 拉伸
|
||||
* @param max 最大化
|
||||
* @param min 最小化
|
||||
*/
|
||||
const showResize = computed(() => {
|
||||
return props.resize && !max.value && !min.value;
|
||||
});
|
||||
|
||||
/**
|
||||
* 显示标题
|
||||
* <p>
|
||||
* @param title 标题
|
||||
* @param type 类型
|
||||
*/
|
||||
const showTitle = computed(() => {
|
||||
return props.title && props.type != 3;
|
||||
});
|
||||
|
||||
defineExpose({ reset, open, close });
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<!-- 遮盖层 -->
|
||||
<Shade
|
||||
:index="index"
|
||||
:visible="shadeVisible"
|
||||
:opacity="shadeOpacity"
|
||||
@shadeClick="shadeHandle"
|
||||
></Shade>
|
||||
<!-- 动画容器 -->
|
||||
<transition
|
||||
:enter-active-class="enterActiveClass"
|
||||
:leave-active-class="leaveActiveClass"
|
||||
>
|
||||
<!-- 弹出层 -->
|
||||
<div
|
||||
ref="layero"
|
||||
class="layui-layer layui-layer-border"
|
||||
:class="boxClasses"
|
||||
:style="styles"
|
||||
v-if="visible"
|
||||
>
|
||||
<!-- 标题 -->
|
||||
<Title v-if="showTitle" :title="title"></Title>
|
||||
<!-- 内容 -->
|
||||
<div
|
||||
class="layui-layer-content"
|
||||
:style="{ height: contentHeight }"
|
||||
:class="contentClasses"
|
||||
>
|
||||
<template v-if="type === 0 || type === 1">
|
||||
<i v-if="icon" :class="iconClass"></i>
|
||||
<slot v-if="slots.default"></slot>
|
||||
<template v-else>
|
||||
<template v-if="isHtmlFragment">
|
||||
<span v-html="renderContent(props.content)"></span>
|
||||
</template>
|
||||
<template v-else>{{ renderContent(props.content) }}</template>
|
||||
</template>
|
||||
</template>
|
||||
<Iframe v-if="type === 2" :src="props.content"></Iframe>
|
||||
</div>
|
||||
<!-- 工具栏 -->
|
||||
<span class="layui-layer-setwin" v-if="type != 3">
|
||||
<a
|
||||
v-if="maxmin && !max"
|
||||
class="layui-layer-min"
|
||||
:class="[min ? 'layui-layer-ico layui-layer-maxmin' : '']"
|
||||
href="javascript:;"
|
||||
@click="minHandle"
|
||||
>
|
||||
<cite v-if="!min"></cite>
|
||||
</a>
|
||||
<a
|
||||
v-if="maxmin && !min"
|
||||
class="layui-layer-ico layui-layer-max"
|
||||
:class="[max ? 'layui-layer-maxmin' : '']"
|
||||
href="javascript:;"
|
||||
@click="maxHandle"
|
||||
></a>
|
||||
<CloseBtn v-if="closeBtn" @closeHandle="closeHandle"></CloseBtn>
|
||||
</span>
|
||||
<!-- 操作栏 -->
|
||||
<div
|
||||
v-if="((btn && btn.length > 0) || type === 0) && !isMessage"
|
||||
class="layui-layer-btn"
|
||||
:class="[`layui-layer-btn-${btnAlign}`]"
|
||||
>
|
||||
<template v-if="btn && btn.length > 0">
|
||||
<template v-for="(b, index) in btn" :key="index">
|
||||
<a
|
||||
:class="[`layui-layer-btn${index}`]"
|
||||
@click="b.callback(props.domId)"
|
||||
>{{ b.text }}</a
|
||||
>
|
||||
</template>
|
||||
</template>
|
||||
<template v-else>
|
||||
<template v-if="type === 0">
|
||||
<a class="layui-layer-btn0" @click="yesHandle()">{{ yesText }}</a>
|
||||
</template>
|
||||
</template>
|
||||
</div>
|
||||
<!-- 辅助栏 -->
|
||||
<Resize v-if="showResize"></Resize>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user