diff --git a/.env.development b/.env.development
index ed224d3..a632e2c 100644
--- a/.env.development
+++ b/.env.development
@@ -1,6 +1,6 @@
-VITE_API_BASE='http://192.168.8.94:8081/'
+VITE_API_BASE='http://192.168.8.220:8081/'
# VITE_API_BASE='https://hwjb.homilychart.com/gold_htms_dev'
# VITE_API_BASE='http://54.251.137.151:10704/'
# VITE_API_BASE='http://192.168.9.28:8081/'
-# VITE_API_BASE='18.143.76.3:10703/'
+# VITE_API_BASE='http://18.143.76.3:10704/'
diff --git a/src/views/workspace/index.vue b/src/views/workspace/index.vue
index 6c554d8..7e158eb 100644
--- a/src/views/workspace/index.vue
+++ b/src/views/workspace/index.vue
@@ -91,6 +91,7 @@
end-placeholder="结束时间"
style="width: 200px"
@change="handleDateRangeChange"
+ value-format="YYYY-MM-DD HH:mm:ss"
/>
查询
@@ -99,8 +100,7 @@
@@ -114,7 +114,7 @@
-
+
{{ row.coinAmount.toLocaleString() }}
@@ -131,20 +131,22 @@
@@ -306,4 +573,38 @@ onMounted(async function () {
margin-bottom: 15px;
}
+.bar {
+ background: white;
+ border-radius: 8px;
+ padding: 15px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+}
+
+/* 添加加载动画 */
+.loading-overlay {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: rgba(255, 255, 255, 0.8);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ z-index: 10;
+}
+
+.loading-spinner {
+ width: 40px;
+ height: 40px;
+ border: 4px solid #f3f3f3;
+ border-top: 4px solid #3498db;
+ border-radius: 50%;
+ animation: spin 1s linear infinite;
+}
+
+@keyframes spin {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+}
\ No newline at end of file