XIGUASSR
2022-11-07 53af33c06b01041115521cbf532ad186cc5710cd
最新
1 files modified
40 ■■■■■ changed files
src/page/list/trading-list.vue 40 ●●●●● patch | view | raw | blame | history
src/page/list/trading-list.vue
@@ -110,6 +110,16 @@
          </div>
        </div>
      </div>
      <div class="cards">
        <div class="card_item">
          <div class="tops_title">
            <div><span>{{ '净值' }}</span></div>
          </div>
          <div class="bottom_price">
            <div><span>{{ '49,863.60' }}</span></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
@@ -374,7 +384,7 @@
  top: 0;
  z-index: 9999999;
  transition: all 1s;
  overflow: hidden;
  >div {
    width: 100%;
    height: 1.2821rem;
@@ -723,4 +733,32 @@
.shai.open {
  top: 4%;
}
.cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.card_item {
  width: 48%;
  height: 1.5385rem;
  background: #f6f6f7;
  border-radius: .2rem;
  .tops_title{
    width: 100%;
    height: 40%;
    display: flex;
    align-items: flex-end;
    padding-left: .5rem;
  }
  .bottom_price {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    padding-left: .5rem;
    span {
      font-weight: 600;
    }
  }
}
</style>