初始化 ui.

This commit is contained in:
lijiahang
2023-07-27 18:48:15 +08:00
parent ee53ec6486
commit 5be2c7fda2
185 changed files with 1107 additions and 17815 deletions

View File

@@ -0,0 +1,29 @@
<template>
<div class="content">
<a-result class="result" status="403" subtitle="forbidden"></a-result>
<div class="operation-row">
<a-button key="back" type="primary" @click="back"> 返回工作台</a-button>
</div>
</div>
</template>
<script lang="ts" setup>
import { useRouter } from 'vue-router';
const router = useRouter();
const back = () => {
router.push({ name: 'workplace' });
};
</script>
<style scoped lang="less">
.content {
// padding-top: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -95px;
margin-top: -121px;
text-align: center;
}
</style>

View File

@@ -0,0 +1,29 @@
<template>
<div class="content">
<a-result class="result" status="404" subtitle="not found"></a-result>
<div class="operation-row">
<a-button key="back" type="primary" @click="back"> 返回工作台</a-button>
</div>
</div>
</template>
<script lang="ts" setup>
import { useRouter } from 'vue-router';
const router = useRouter();
const back = () => {
router.push({ name: 'workplace' });
};
</script>
<style scoped lang="less">
.content {
// padding-top: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -95px;
margin-top: -121px;
text-align: center;
}
</style>