From 9057e04efad1b7d61c77a72e5c37a504d0aee935 Mon Sep 17 00:00:00 2001 From: doum <doum> Date: 星期五, 26 九月 2025 09:24:03 +0800 Subject: [PATCH] H5静态化 --- admin/src/components/common/NotAllow.vue | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/admin/src/components/common/NotAllow.vue b/admin/src/components/common/NotAllow.vue new file mode 100644 index 0000000..743d325 --- /dev/null +++ b/admin/src/components/common/NotAllow.vue @@ -0,0 +1,40 @@ +<template> + <div class="not-allow"> + <slot> + <div class="content"> + <img src="../../assets/images/not-allow.png"> + <h2>鏃犳潈璁块棶</h2> + <p>濡傛偍闇�瑕佽闂椤甸潰锛岃鑱旂郴绯荤粺绠$悊鍛�</p> + </div> + </slot> + </div> +</template> + +<script> +export default { + name: 'NotAllow' +} +</script> + +<style scoped lang="scss"> +.not-allow { + height: 100%; + background: #fff; + box-sizing: border-box; + padding-top: 160px; + .content { + height: 200px; + text-align: center; + h2 { + font-size: 18px; + font-weight: normal; + margin-top: 8px; + } + p { + font-size: 13px; + color: #999; + margin: 6px 0; + } + } +} +</style> -- Gitblit v1.9.3