v3.9.0【优化】typescript版本;【优化】App端消息;【优化】弹出层z-index;

This commit is contained in:
zhuoda
2024-11-04 20:21:05 +08:00
parent c3d267e83c
commit 472d059453
1376 changed files with 10373 additions and 9712 deletions
@@ -0,0 +1,44 @@
<!--
* 系统更新日志 查看
*
* @Author: 卓大
* @Date: 2022-09-26 14:53:50
* @Copyright 1024创新实验室
-->
<template>
<a-modal title="更新日志" width="700px" :open="visibleFlag" @cancel="onClose">
<div>
<pre>{{ content }}</pre>
<div v-if="link">
链接<a :href="link" target="_blank">{{ link }}</a>
</div>
</div>
<template #footer>
<a-space>
<a-button type="primary" @click="onClose">关闭</a-button>
</a-space>
</template>
</a-modal>
</template>
<script setup>
import { ref } from 'vue';
const visibleFlag = ref(false);
const content = ref('');
const link = ref('');
function show(changeLog) {
content.value = changeLog.content;
link.value = changeLog.link;
visibleFlag.value = true;
}
function onClose() {
visibleFlag.value = false;
}
defineExpose({
show,
});
</script>