From 4a13279fe13ad1cf6736670f6d1c5c61c8cba59b Mon Sep 17 00:00:00 2001
From: VVT789 <sdxt_0802@163.com>
Date: 星期五, 18 四月 2025 12:41:11 +0800
Subject: [PATCH] Merge branch 'develop1.0' into wt_from_develop1.0

---
 zhitan-vue/src/views/businessconfiguration/gatewaystatus/gatewayStatus.vue |   70 ++++++++++++++++++++++++++++++++++
 1 files changed, 69 insertions(+), 1 deletions(-)

diff --git a/zhitan-vue/src/views/businessconfiguration/gatewaystatus/gatewayStatus.vue b/zhitan-vue/src/views/businessconfiguration/gatewaystatus/gatewayStatus.vue
index 74abd5f..81ddca8 100644
--- a/zhitan-vue/src/views/businessconfiguration/gatewaystatus/gatewayStatus.vue
+++ b/zhitan-vue/src/views/businessconfiguration/gatewaystatus/gatewayStatus.vue
@@ -1,5 +1,11 @@
 <template>
   <div class="page">
+    <div class="page-title">
+      <div class="title-bar">
+        <span class="title-text">缃戝叧鐘舵�佺洃娴�</span>
+      </div>
+    </div>
+    
     <div class="table-box">
       <div class="border">
         <div class="table" v-for="(item, index) in dataList" :key="index">
@@ -460,14 +466,62 @@
 ])
 </script>
 
-<style lang="scss" scoped>
+<style scoped lang="scss">
 @import "@/assets/styles/page.scss";
+
+.page {
+  background: #08234F;
+  min-height: calc(100vh - 145px)
+}
+
+.page-title {
+  position: relative;
+ 
+  .title-bar {
+    position: relative;
+    padding: 14px 0;
+    padding-left: 16px;
+    
+    .title-text {
+      font-size: 18px;
+      font-weight: 600;
+      position: relative;
+      padding-left: 22px;
+      color: #fff;
+      
+      &::before {
+        content: '';
+        position: absolute;
+        left: 0;
+        top: 50%;
+        transform: translateY(-50%);
+        width: 5px;
+        height: 18px;
+        background-color: #3883FA;
+        border-radius: 2px;
+      }
+    }
+  }
+  
+  &::after {
+    content: '';
+    position: absolute;
+    bottom: -4px;
+    opacity: 0.12;
+    left: 0;
+    width: 100%;
+    height: 1px;
+    background-color: #E6E6E6;
+  }
+}
+
 .themeDark {
   .border {
     border: 1px solid #fff;
     color: #fff;
 
     .table {
+      margin-top: 10px;
       display: flex;
       align-items: center;
       justify-content: flex-start;
@@ -544,6 +598,10 @@
         }
       }
     }
+  }
+
+  .table-box {
+    margin: 20px 25px;
   }
 }
 
@@ -630,5 +688,15 @@
       }
     }
   }
+
+  .table-box {
+    margin: 10px 25px;
+  }
+}
+
+.page {
+  .table-box {
+    // ... 淇濇寔鐜版湁鏍峰紡
+  }
 }
 </style>

--
Gitblit v1.9.3