176 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			176 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Vue
		
	
	
	
<template>
 | 
						||
  <div class="app-container home">
 | 
						||
    <el-row :gutter="20">
 | 
						||
      <el-col :sm="24" :lg="12" style="padding-left: 20px">
 | 
						||
        <h2>智慧食堂系统</h2>
 | 
						||
        <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="12">
 | 
						||
            <h2>技术选型</h2>
 | 
						||
          </el-col>
 | 
						||
        </el-row>
 | 
						||
        <el-row>
 | 
						||
          <el-col :span="6">
 | 
						||
            <h4>后端技术</h4>
 | 
						||
            <ul>
 | 
						||
              <li>SpringBoot</li>
 | 
						||
              <li>SpringCloud</li>
 | 
						||
              <li>Nacos</li>
 | 
						||
              <li>Sentinel</li>
 | 
						||
              <li>Seata</li>
 | 
						||
              <li>Minio</li>
 | 
						||
              <li>...</li>
 | 
						||
            </ul>
 | 
						||
          </el-col>
 | 
						||
          <el-col :span="6">
 | 
						||
            <h4>前端技术</h4>
 | 
						||
            <ul>
 | 
						||
              <li>Vue</li>
 | 
						||
              <li>Vuex</li>
 | 
						||
              <li>Element-ui</li>
 | 
						||
              <li>Axios</li>
 | 
						||
              <li>Echarts</li>
 | 
						||
              <li>Quill</li>
 | 
						||
              <li>...</li>
 | 
						||
            </ul>
 | 
						||
          </el-col>
 | 
						||
        </el-row>
 | 
						||
      </el-col>
 | 
						||
    </el-row>
 | 
						||
    <el-divider />
 | 
						||
    <el-row :gutter="20">
 | 
						||
      <el-col :xs="24" :sm="24" :md="12" :lg="8">
 | 
						||
        <el-card class="update-log">
 | 
						||
          <div slot="header" class="clearfix">
 | 
						||
            <span>联系信息</span>
 | 
						||
          </div>
 | 
						||
          <div class="body">
 | 
						||
            <p>
 | 
						||
              <i class="el-icon-s-promotion"></i> 官网:<el-link
 | 
						||
                href="http://www.ahbonus.cn"
 | 
						||
                target="_blank"
 | 
						||
                >http://www.ahbonus.cn</el-link
 | 
						||
              >
 | 
						||
            </p>
 | 
						||
          </div>
 | 
						||
        </el-card>
 | 
						||
      </el-col>
 | 
						||
      <!-- <el-col :xs="24" :sm="24" :md="12" :lg="8">
 | 
						||
        <el-card class="update-log">
 | 
						||
          <div slot="header" class="clearfix">
 | 
						||
            <span>更新日志</span>
 | 
						||
          </div>
 | 
						||
          <el-collapse accordion>
 | 
						||
            <el-collapse-item title="v24.7.0">
 | 
						||
              <ol>
 | 
						||
                <li>支持多权限字符匹配角色数据权限</li>
 | 
						||
                <li>新增密码最大错误次数/锁定时间</li>
 | 
						||
                <li>登录日志新增解锁账户功能</li>
 | 
						||
              </ol>
 | 
						||
            </el-collapse-item>
 | 
						||
 | 
						||
            <el-collapse-item title="v27.7.1">
 | 
						||
              <ol>
 | 
						||
                <li>菜单新增终端管理配置</li>
 | 
						||
                <li>记录登录退出日志信息</li>
 | 
						||
                <li>数据范围过滤属性调整</li>
 | 
						||
                <li>权限部分代码调整</li>
 | 
						||
                <li>其他细节优化</li>
 | 
						||
              </ol>
 | 
						||
            </el-collapse-item>
 | 
						||
          </el-collapse>
 | 
						||
        </el-card>
 | 
						||
      </el-col> -->
 | 
						||
 | 
						||
    </el-row>
 | 
						||
 | 
						||
 | 
						||
  </div>
 | 
						||
</template>
 | 
						||
 | 
						||
<script>
 | 
						||
export default {
 | 
						||
  name: "Index",
 | 
						||
  data() {
 | 
						||
    return {
 | 
						||
      // 版本号
 | 
						||
      version: "24.7.1",
 | 
						||
    };
 | 
						||
  },
 | 
						||
  methods: {
 | 
						||
    goTarget(href) {
 | 
						||
      window.open(href, "_blank");
 | 
						||
    },
 | 
						||
  },
 | 
						||
};
 | 
						||
</script>
 | 
						||
 | 
						||
<style scoped lang="scss">
 | 
						||
.home {
 | 
						||
  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>
 | 
						||
 |