forked from dyf/dyf-vue-ui
APP用户管理页面
This commit is contained in:
@ -1,23 +1,36 @@
|
||||
<template>
|
||||
<div class="app-container home">
|
||||
<el-row :gutter="20">
|
||||
<el-col :sm="24" :lg="12" style="padding-left: 20px">
|
||||
</el-col>
|
||||
<el-col :sm="24" :lg="12" style="padding-left: 20px">
|
||||
<el-col :sm="24" :lg="12">
|
||||
<div class="kfzIMG">
|
||||
<img src="@/assets/images/kfz.png" alt="" class="kfIMG">
|
||||
<p>功能开发中....敬请期待</p>
|
||||
</div>
|
||||
</el-col>
|
||||
|
||||
</el-row>
|
||||
<el-divider />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Index" lang="ts">
|
||||
const goTarget = (url: string) => {
|
||||
window.open(url, '__blank');
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.home {
|
||||
.kfzIMG {
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
position: absolute;
|
||||
transform: translate(-50%, 100%);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.kfIMG {
|
||||
width: 60%;
|
||||
}
|
||||
}
|
||||
.el-divider--horizontal{
|
||||
border: none;
|
||||
}
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user