NurseStationUI/src/views/index.vue
2022-11-04 17:42:19 +08:00

152 lines
3.6 KiB
Vue
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="app-container home">
<!-- <el-row :gutter="20">
<el-col :sm="24" :lg="12" style="padding-left: 20px">
<h2>新医路后台管理框架</h2>
<p>
一直想做一款后台管理系统看了很多优秀的开源项目但是发现没有合适自己的于是利用空闲休息时间开始自己写一套后台系统如此有了新医路管理系统它可以用于所有的Web应用程序如网站管理后台网站会员中心CMSCRMOA等等当然您也可以对她进行深度定制以做出更强系统所有前端后台代码封装过后十分精简易上手出错概率低同时支持移动客户端访问系统会陆续更新一些实用功能
</p>
<p>
<b>当前版本:</b> <span>v{{ version }}</span>
</p>
</el-col>
<el-col :sm="24" :lg="12" style="padding-left: 50px">
<el-row>
<el-col :span="8">
<h2>技术选型</h2>
</el-col>
<el-col :span="4">
<h2>联系方式</h2>
</el-col>
</el-row>
<el-row>
<el-col :span="4">
<h4>后端技术</h4>
<ul>
<li>SpringBoot</li>
<li>SpringCloud</li>
<li>Nacos</li>
<li>Sentinel</li>
<li>MyBatis-plus</li>
<li>Fastjson</li>
<li>...</li>
</ul>
</el-col>
<el-col :span="4">
<h4>前端技术</h4>
<ul>
<li>Vue</li>
<li>Vuex</li>
<li>Element-ui</li>
<li>Axios</li>
<li>Sass</li>
<li>Quill</li>
<li>...</li>
</ul>
</el-col>
<el-col :span="4">
<h4></h4>
<ul>
<li><i class="el-icon-chat-dot-round"></i> 山东新医路信息科技有限公司<a
href="javascript:;"
>0531-69900398</a></li>
</ul>
</el-col>
</el-row>
</el-col>
</el-row>
<el-divider /> -->
</div>
</template>
<script>
export default {
name: "index",
data() {
return {
// 版本号
version: "0.0.1",
};
},
methods: {
goTarget(href) {
window.open(href, "_blank");
},
},
};
</script>
<style scoped lang="scss">
.home {
// display: flex;
// justify-content: center;
// align-items: center;
height: 100%;
width: 100%;
background-size: cover;
// margin-top: 300px;
// background-image: url("../assets/images/mian.png");
// blockquote {
// padding: 10px 20px;
// margin: 0 0 20px;
// font-size: 17.5px;
// border-left: 5px solid #eee;
// }
// hr {
// margin-top: 20px;
// margin-bottom: 20px;
// border: 0;
// border-top: 1px solid #eee;
// }
// .col-item {
// margin-bottom: 20px;
// }
// ul {
// padding: 0;
// margin: 0;
// }
// font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
// font-size: 13px;
// color: #676a6c;
// overflow-x: hidden;
// ul {
// list-style-type: none;
// }
// h4 {
// margin-top: 0px;
// }
// h2 {
// margin-top: 10px;
// font-size: 26px;
// font-weight: 100;
// }
// p {
// margin-top: 10px;
// b {
// font-weight: 700;
// }
// }
// .update-log {
// ol {
// display: block;
// list-style-type: decimal;
// margin-block-start: 1em;
// margin-block-end: 1em;
// margin-inline-start: 0;
// margin-inline-end: 0;
// padding-inline-start: 40px;
// }
// }
}
</style>