|
@@ -0,0 +1,37 @@
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="unlogin-content flex-col flex-aic">
|
|
|
+ <h3>没有任何内容</h3>
|
|
|
+ <div class="tips"><span>需登录后才可显示内容</span></div>
|
|
|
+ <el-button type="primary" size="langer">
|
|
|
+ 登录忆象
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.unlogin-content {
|
|
|
+ width: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 60px 0 120px;
|
|
|
+
|
|
|
+ h3 {
|
|
|
+ height: 48px;
|
|
|
+ font-size: 34px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #BCBCBC;
|
|
|
+ line-height: 48px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tips {
|
|
|
+ height: 25px;
|
|
|
+ font-size: 18px;
|
|
|
+ font-family: PingFangSC, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #888888;
|
|
|
+ line-height: 25px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|