26547
This commit is contained in:
		@@ -2,7 +2,50 @@
 | 
			
		||||
  <div class="AppEpidemicSituation">
 | 
			
		||||
    <div class="header">
 | 
			
		||||
      <img src="./components/img/header.png" alt="">
 | 
			
		||||
      <div class="content-info"></div>
 | 
			
		||||
      <div class="content-info">
 | 
			
		||||
        <div class="title">
 | 
			
		||||
          <h2>实时数据统计</h2>
 | 
			
		||||
          <div>截止2021-01-19</div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="tab-content">
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-5AAD6A">30446</h2>
 | 
			
		||||
            <p>返乡人数</p>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-4185F5">304</h2>
 | 
			
		||||
            <p>今日新增返乡</p>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-CD413A">3</h2>
 | 
			
		||||
            <p>今日返乡异常</p>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-5AAD6A">30446</h2>
 | 
			
		||||
            <p>健康上报人数</p>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-4185F5">46</h2>
 | 
			
		||||
            <p>今日上报人数</p>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="tab-item">
 | 
			
		||||
            <h2 class="color-CD413A">0</h2>
 | 
			
		||||
            <p>今日上报异常</p>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="banner">
 | 
			
		||||
      <img src="./components/img/fxry.png" alt="" class="mar-r18">
 | 
			
		||||
      <img src="./components/img/jkjc.png" alt="">
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="echart-content">
 | 
			
		||||
      <div class="title">返乡数据统计</div>
 | 
			
		||||
      <div class="echart"></div>
 | 
			
		||||
      <div class="type-text">
 | 
			
		||||
        <span class="tips bg-32C5FF"></span>新增返乡人数
 | 
			
		||||
        <span class="tips bg-FFAA44"></span>新增异常人数
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
@@ -28,19 +71,127 @@ export default {
 | 
			
		||||
<style lang="scss" scoped>
 | 
			
		||||
.AppEpidemicSituation {
 | 
			
		||||
  .header{
 | 
			
		||||
    position: relative;
 | 
			
		||||
    img{
 | 
			
		||||
      width: 100%;
 | 
			
		||||
      height: 504px;
 | 
			
		||||
    }
 | 
			
		||||
    .content-info{
 | 
			
		||||
      width: calc(100% - 60px);
 | 
			
		||||
      height: 209px;
 | 
			
		||||
      background: #FFF;
 | 
			
		||||
      box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
 | 
			
		||||
      border-radius: 8px;
 | 
			
		||||
      margin: -136px 30px 0;
 | 
			
		||||
      position: absolute;
 | 
			
		||||
      top: 368px;
 | 
			
		||||
      left: 30px;
 | 
			
		||||
      z-index: 99;
 | 
			
		||||
      margin-bottom: 32px;
 | 
			
		||||
      .title{
 | 
			
		||||
        display: flex;
 | 
			
		||||
        justify-content: space-between;
 | 
			
		||||
        padding: 32px 32px 32px 48px;
 | 
			
		||||
        h2{
 | 
			
		||||
          font-size: 36px;
 | 
			
		||||
          font-family: PingFang-SC-Heavy, PingFang-SC;
 | 
			
		||||
          font-weight: 800;
 | 
			
		||||
          color: #333;
 | 
			
		||||
          line-height: 50px;
 | 
			
		||||
        }
 | 
			
		||||
        div{
 | 
			
		||||
          font-size: 26px;
 | 
			
		||||
          font-family: PingFangSC-Regular, PingFang SC;
 | 
			
		||||
          color: #999;
 | 
			
		||||
          line-height: 36px;
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      .tab-content{
 | 
			
		||||
        padding-bottom: 20px;
 | 
			
		||||
        .tab-item{
 | 
			
		||||
          display: inline-block;
 | 
			
		||||
          width: 33%;
 | 
			
		||||
          text-align: center;
 | 
			
		||||
          margin-bottom: 32px;
 | 
			
		||||
          h2{
 | 
			
		||||
            font-size: 52px;
 | 
			
		||||
            font-family: DINAlternate-Bold, DINAlternate;
 | 
			
		||||
            font-weight: bold;
 | 
			
		||||
            line-height: 60px;
 | 
			
		||||
            margin-bottom: 10px;
 | 
			
		||||
            letter-spacing: -4px;
 | 
			
		||||
          }
 | 
			
		||||
          p{
 | 
			
		||||
            font-size: 28px;
 | 
			
		||||
            font-family: PingFangSC-Regular, PingFang SC;
 | 
			
		||||
            color: #999;
 | 
			
		||||
            line-height: 40px;
 | 
			
		||||
          }
 | 
			
		||||
          .color-5AAD6A{
 | 
			
		||||
            color: #5AAD6A;
 | 
			
		||||
          }
 | 
			
		||||
          .color-4185F5{
 | 
			
		||||
            color: #4185F5;
 | 
			
		||||
          }
 | 
			
		||||
          .color-CD413A{
 | 
			
		||||
            color: #CD413A;
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .banner{
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    padding: 0 26px;
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
    margin: 306px 0 32px 0;
 | 
			
		||||
    img{
 | 
			
		||||
      width: calc(50% - 18px);
 | 
			
		||||
      height: 136px;
 | 
			
		||||
    }
 | 
			
		||||
    .mar-r18{
 | 
			
		||||
      margin-right: 18px;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  .echart-content{
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    background-color: #fff;
 | 
			
		||||
    padding: 0 32px 38px;
 | 
			
		||||
    box-sizing: border-box;
 | 
			
		||||
    .title{
 | 
			
		||||
      font-size: 32px;
 | 
			
		||||
      font-family: PingFangSC-Medium, PingFang SC;
 | 
			
		||||
      font-weight: 500;
 | 
			
		||||
      color: #333;
 | 
			
		||||
      line-height: 96px;
 | 
			
		||||
      margin-bottom: 16px;
 | 
			
		||||
    }
 | 
			
		||||
    .echart{
 | 
			
		||||
      width: 100%;
 | 
			
		||||
      height: 464px;
 | 
			
		||||
      background: #F9F9F9;
 | 
			
		||||
      border-radius: 8px;
 | 
			
		||||
      margin-bottom: 32px;
 | 
			
		||||
    }
 | 
			
		||||
    .type-text{
 | 
			
		||||
      font-size: 28px;
 | 
			
		||||
      font-family: PingFangSC-Regular, PingFang SC;
 | 
			
		||||
      color: #666;
 | 
			
		||||
      line-height: 40px;
 | 
			
		||||
      text-align: center;
 | 
			
		||||
      .tips{
 | 
			
		||||
        display: inline-block;
 | 
			
		||||
        width: 16px;
 | 
			
		||||
        height: 16px;
 | 
			
		||||
        border-radius: 2px;
 | 
			
		||||
        margin-right: 20px;
 | 
			
		||||
      }
 | 
			
		||||
      .bg-32C5FF{
 | 
			
		||||
        background: #32C5FF;
 | 
			
		||||
      }
 | 
			
		||||
      .bg-FFAA44{
 | 
			
		||||
        background: #FFAA44;
 | 
			
		||||
        margin-left: 80px;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user