Files
aurora-admin/site/sources/fullscreenmodal/vue2.txt
T
aurora-admin c65a69c34e
Deploy to GitHub Pages / deploy (push) Failing after 16s
Regression / regression (push) Failing after 15m2s
feat(P4): precompute移植+app.js sources双向回填+回归1003/1003+验收体积/文件/data.json
2026-09-12 14:18:41 +08:00

28 lines
727 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="aa-fs-mask" v-if="visible">
<div class="aa-fs-head">
<span class="aa-fs-title">{{ title }}</span>
<button class="aa-fs-close" @click="$emit('cancel')">×</button>
</div>
<div class="aa-fs-body">
<slot>内容区</slot>
</div>
<div class="aa-fs-foot">
<button class="aa-btn" @click="$emit('cancel')">取消</button>
<button class="aa-btn aa-btn--primary" @click="$emit('ok')">保存</button>
</div>
</div>
</template>
<script>
export default {
name: 'AaFullScreenModal',
props: {
visible: { type: Boolean, default: false },
title: { type: String, default: '全屏弹窗' }
}
};
</script>
<style src="./FullScreenModal.css"></style>