From 13de19b383b7fca917e58a851cd193a0a877d810 Mon Sep 17 00:00:00 2001
From: yangfeng <wanwan926_4@163.com>
Date: 星期一, 25 九月 2023 19:01:12 +0800
Subject: [PATCH] 概述页面接口联调
---
src/views/overview/index.vue | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/views/overview/index.vue b/src/views/overview/index.vue
index 45c4208..8f1df84 100644
--- a/src/views/overview/index.vue
+++ b/src/views/overview/index.vue
@@ -14,27 +14,28 @@
overview_done: item.baseOperationType === 2,
overview_todo: item.baseOperationType === 3
}"
+ @click="labelClick(item)"
>
<div class="top">
<div class="label">
- <span style="cursor: pointer" @click="labelClick(item)">{{ item.name }}</span>
+ <span style="cursor: pointer">{{ item.name }}</span>
</div>
<div class="set">...</div>
</div>
<div class="bottom">
<div class="left">
<div class="left_view">
- <span>2</span>
- <span style="margin-left: 5px">寰呭鐞�</span>
+ <span>{{ item.readyCount }}</span>
+ <span style="margin-left: 5px">灏辩华</span>
</div>
</div>
<div class="right">
<div class="right_status">
- <span style="cursor: pointer">2 姝e湪绛夊緟</span>
+ <span style="cursor: pointer">{{ item.finishCount + " 瀹屾垚" }}</span>
</div>
- <div class="right_status" style="margin-top: 5px">
+ <!-- <div class="right_status" style="margin-top: 5px">
<span style="cursor: pointer">4 寤舵湡</span>
- </div>
+ </div> -->
</div>
</div>
</div>
@@ -125,6 +126,7 @@
box-shadow: inset 0 0 2px #dee2e6;
-moz-box-shadow: inset 0 0 2px #dee2e6;
-webkit-box-shadow: inset 0 0 2px #dee2e6;
+ cursor: pointer;
.top {
height: 35px;
line-height: 35px;
@@ -165,6 +167,7 @@
.right {
width: 50%;
.right_status {
+ margin-top: 5px;
}
}
}
--
Gitblit v1.8.0