This commit is contained in:
sc 2021-06-30 16:57:15 +08:00
parent 9be08509a6
commit b9b818384c
2 changed files with 17 additions and 4 deletions

View File

@ -5,7 +5,8 @@
<h2 data-text="404">404</h2>
<h4>啊呀~页面不存在!</h4>
<p>您可以先检查网址然后重新输入或给我们反馈问题</p>
<el-button type="primary" round @click="gohome">返回首页</el-button>
<el-button type="primary" plain round @click="gohome">返回首页</el-button>
<el-button type="primary" round @click="goback">返回上一页</el-button>
</el-empty>
</div>
@ -15,7 +16,10 @@
export default {
methods: {
gohome(){
location.href="/"
location.href="#/"
},
goback(){
this.$router.go(-1);
}
}
}

View File

@ -5,8 +5,8 @@
<el-col :xl="6" :lg="6" :md="8" :sm="12" :xs="24" v-for="item in list" :key="item.title">
<el-card shadow="hover" :body-style="{ padding: '0px' }" @click="click(item.url)">
<div class="code-item">
<div class="img">
<i :class="item.icon"></i>
<div class="img" :style="{background: item.color}">
<i :class="item.icon" :style="`background-image: -webkit-linear-gradient(top left, #fff, ${item.color} 100px)`"></i>
</div>
<div class="title">
<h2>{{item.title}}</h2>
@ -30,8 +30,17 @@
title: "CRUD",
des: "配置型生成经典的增删改查列表",
icon: "sc-icon-file-list-fill",
color: "#09f",
ver: "1.0.0-beta.1",
url: "/test/autocode/list"
},
{
title: "FormDesigner",
des: "表单设计器",
icon: "sc-icon-edit-box-fill",
color: "#ccc",
ver: "开发中",
url: "/test/autocode/form"
}
]
}