2545307760@qq.com 5 bulan lalu
induk
melakukan
888a965889

+ 1 - 1
server/config.yaml

@@ -125,7 +125,7 @@ mysql:
     config: charset=utf8mb4&parseTime=True&loc=Local
     db-name: lc_finance
     username: root
-    password: root
+    password: 123456
     path: 127.0.0.1
     engine: ""
     log-mode: error

TEMPAT SAMPAH
web/src/assets/sign.png


+ 1 - 0
web/src/view/layout/index.vue

@@ -165,6 +165,7 @@
           v-if="reloadFlag"
           v-slot="{ Component }"
           class="admin-box"
+          style="background-color: white;height: 1200px"
         >
           <div
             id="gva-base-load-dom"

+ 11 - 0
web/src/view/parking/carOwner.vue

@@ -0,0 +1,11 @@
+<script setup>
+
+</script>
+
+<template>
+  <div>车主管理</div>
+</template>
+
+<style scoped lang="scss">
+
+</style>

+ 91 - 0
web/src/view/parking/parkingInfo.vue

@@ -0,0 +1,91 @@
+<template>
+  <el-row>
+    <el-col :span="4">
+      <div class="region">
+        <div class="regionTitle">
+          <div class="regionTitle-text">
+            <el-text style="font-weight: 550">停车区域</el-text>
+          </div>
+          <div class="regionTitle-icon">
+            <el-icon size="large" color="#008000">
+              <Plus/>
+            </el-icon>
+            <el-icon style="padding-left: 5px" size="large" color="#4682b4">
+              <Refresh/>
+            </el-icon>
+          </div>
+        </div>
+      </div>
+    </el-col>
+    <el-col :span="19" style="margin-left: 40px">
+      <div class="basicInformation">
+        <div style="padding-top: 10px;margin-left: 30px">
+          <el-image :src="sign" />
+        </div>
+        <div style="display: flex;align-items: center">
+          <el-text
+              style="margin-left: 10px"
+              size="large"
+              tag="b"
+          >项目基本信息</el-text>
+        </div>
+      </div>
+      <div class="operation">
+        <el-button icon="Plus" text type="success">新增</el-button>
+        <el-button icon="edit" text type="warning">编辑</el-button>
+        <el-button icon="delete" text type="danger">删除</el-button>
+        <el-button icon="Refresh" text type="primary">刷新</el-button>
+      </div>
+      <el-table size="small">
+        <el-table-column label="编码"></el-table-column>
+        <el-table-column label="名称"></el-table-column>
+        <el-table-column label="IP地址"></el-table-column>
+        <el-table-column label="备注"></el-table-column>
+      </el-table>
+    </el-col>
+  </el-row>
+</template>
+
+<script setup>
+import sign from '@/assets/sign.png'
+</script>
+
+<style scoped lang="scss">
+.region {
+  width: 100%;
+  height: 700px;
+  background-color: #f5f5f5;
+  .regionTitle{
+    width: 100%;
+    height: 40px;
+    display: flex;
+    border-bottom: 1px solid;
+    background-color: #b9b8b8;
+    .regionTitle-text {
+      width: 70%;
+      height: 40px;
+      display: flex;
+      align-items: center;
+      padding-left: 10px;
+    }
+    .regionTitle-icon {
+      width: 20%;
+      height: 40px;
+      display: flex;
+      align-items: center;
+    }
+  }
+}
+
+.basicInformation {
+  height: 40px;
+  background-color: #f8fafd;
+  display: flex;
+}
+
+.operation {
+  width: 100%;
+  height: 50px;
+  margin-top: 5px;
+}
+</style>

+ 11 - 0
web/src/view/parking/roster.vue

@@ -0,0 +1,11 @@
+<script setup>
+
+</script>
+
+<template>
+  <div>黑白名单管理</div>
+</template>
+
+<style scoped lang="scss">
+
+</style>