xiangpei
2024-07-30 e013ed77e1e4870e62bb84a272bdf78f4b8dc761
数据详情卡片优化
1个文件已修改
6 ■■■■ 已修改文件
src/views/system/data-manage/data-detail/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/data-manage/data-detail/index.vue
@@ -2,14 +2,14 @@
  <div class="app-container">
    <el-card class="box-card">
      <el-row style="display: flex; flex-direction: row; align-items: center" justify="space-between">
          <div v-for="card in cardList" style="display: flex;flex-direction: row; ">
          <div v-for="card in cardList" style="display: flex;flex-direction: row; margin-right: 50px">
            <div>
              <div class="icon-container">
                <i :class="card.icon"></i>
              </div>
            </div>
            <div v-for="data in card.dataList" class="dashboard-item">
              <div style="color: #5C9BF8">{{ data.value }}</div>
              <div style="color: #5C9BF8;margin-bottom: 20px;font-size: 20px">{{ data.value }}</div>
              <div>{{data.label}}</div>
            </div>
          </div>
@@ -316,6 +316,6 @@
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  width: 150px;
}
</style>