welcome.vue 1.27 KB
<template>
  <div class="welcome-container">
    <div class="welcome-content">
      <div class="welcome-header">
        <h1 class="welcome-title">欢迎使用绿千美业ERP系统</h1>
        <p class="welcome-subtitle">Welcome to Lvqian Beauty ERP System</p>
      </div>
      
      <div class="welcome-footer">
        <p>如有问题,请联系系统管理员</p>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: 'Welcome',
  data() {
    return {}
  }
}
</script>

<style lang="scss" scoped>
.welcome-container {
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.welcome-content {
  height: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-header {
  text-align: center;
  margin-bottom: 60px;
  color: #303133;
  
  .welcome-title {
    font-size: 48px;
    font-weight: 600;
    margin: 0 0 16px 0;
  }
  
  .welcome-subtitle {
    font-size: 20px;
    margin: 0;
    color: #909399;
  }
}

.welcome-footer {
  text-align: center;
  color: #909399;
  font-size: 14px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .welcome-header {
    .welcome-title {
      font-size: 32px;
    }
    
    .welcome-subtitle {
      font-size: 16px;
    }
  }
}
</style>