Blame view

src/views/dataView/leftcard.vue 3.36 KB
xiaomiao committed
1
<template>
xiaomiao committed
2
  <div class="leftcard">
任超 committed
3
    <div class="card">
xiaomiao committed
4 5
      <div class="cardhead">区县接入</div>
      <div class="cardcontent">
任超 committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
        <ul class="cardcontent-left d-center">
          <div class="rjjrlList">
            <p v-for="(item, index) in rjjrlList" class="d-center" :key="index">{{ item }}</p>
          </div>
          <li>日均接入量</li>
        </ul>
        <div class="cardcontent-right d-center">
          <p>
            <span>失败</span>
            <span>0</span>
          </p>
          <p>
            <span>成功率</span>
            <span>99%</span>
          </p>
xiaomiao committed
21 22 23
        </div>
      </div>
    </div>
任超 committed
24
    <div class="card mt15">
xiaomiao committed
25 26
      <div class="cardhead">省厅汇交</div>
      <div class="cardcontent">
任超 committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        <ul class="cardcontent-left d-center">
          <div class="rjjrlList">
            <p v-for="(item, index) in rjjrlList" class="d-center" :key="index">{{ item }}</p>
          </div>
          <li>日均接入量</li>
        </ul>
        <div class="cardcontent-right d-center">
          <p>
            <span>失败</span>
            <span>0</span>
          </p>
          <p>
            <span>成功率</span>
            <span>99%</span>
          </p>
xiaomiao committed
42 43 44
        </div>
      </div>
    </div>
任超 committed
45
    <div class="card1 mt15">
xiaomiao committed
46 47 48 49
      <div class="cardhead">各区县数据上报统计</div>
      <columnar />
    </div>
  </div>
xiaomiao committed
50 51 52 53 54
</template>

<script>
import columnar from "@/components/echart/columnar";
export default {
任超 committed
55 56 57 58 59
  data () {
    return {
      // 日均接入量
      rjjrl: 50300
    };
xiaomiao committed
60
  },
xiaomiao committed
61
  components: { columnar },
任超 committed
62 63 64 65 66 67 68 69 70 71 72
  computed: {
    rjjrlList: function () {
      return this.rjjrl.toString().split('')
    },
    sbqkgsList: function () {
      const numbers = this.sbqkgs.toString().split('').reverse()
      const segs = []
      while (numbers.length) segs.push(numbers.splice(0, 3).join(''))
      return segs.join(',').split('').reverse().join('')
    }
  },
xiaomiao committed
73
  methods: {},
xiaomiao committed
74 75 76 77
};
</script>

<style lang="scss" scoped>
xiaomiao committed
78
.leftcard {
任超 committed
79
  width: 30%;
xiaomiao committed
80
  height: 100%;
任超 committed
81 82 83 84 85 86 87 88 89 90 91 92 93

  .card {
    background: url("~@/image/homeLeftBg.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
  }

  .card1 {
    background: url("~@/image/qxsj.png") no-repeat;
    background-size: 100% 100%;
    position: relative;
  }

xiaomiao committed
94
  .cardhead {
任超 committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    color: #02D9FD;
    line-height: 24px;
    letter-spacing: 2px;
    position: absolute;
    font-size: 20px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    top: 8px;
    font-weight: 700;
  }

  .rjjrlList {
    display: flex;

    p {
      background: url('~@/image/jrl3.png');
      margin: 0 3px 10px 3px;
      font-weight: 700;
      width: 24px;
      height: 36px;
      font-size: 30px;
      font-size: 30px;
    }
xiaomiao committed
120
  }
任超 committed
121

xiaomiao committed
122 123 124 125
  .cardcontent {
    width: 100%;
    height: 160px;
    display: flex;
任超 committed
126 127 128 129 130 131 132 133
    padding: 35px 20px 20px 20px;
    box-sizing: border-box;
    color: #FFFFFF;

    .cardcontent-left {
      width: 60%;
      flex-direction: column;
      position: relative;
xiaomiao committed
134
    }
任超 committed
135 136 137 138 139 140 141 142 143

    .cardcontent-left::before {
      position: absolute;
      right: 0;
      top: 20px;
      content: '';
      width: 1px;
      height: 90px;
      background: linear-gradient(180deg, #091B4C 0%, #47B5E0 56%, #091B4C 100%);
xiaomiao committed
144
    }
xiaomiao committed
145

任超 committed
146 147 148 149 150 151 152 153
    .cardcontent-right {
      flex: 1;
      width: 100%;
      flex-direction: column;

      p:nth-child(1) {
        span:nth-child(1) {}
      }
xiaomiao committed
154 155 156
    }
  }
}
xiaomiao committed
157
</style>