From cb62f9fe04c98c30434bb4a3a20bafb57c231ebb Mon Sep 17 00:00:00 2001
From: Tcsm <1377977403@qq.com>
Date: 星期二, 05 九月 2023 15:13:56 +0800
Subject: [PATCH] 1.成长经历阅历证件情况可以输入或选择,已改为“持有证件情况” 2.家谱样式调整和两个名字互换位置 3.更新了首页背景图片

---
 ruoyi-ui/src/views/index.vue |   66 +++++++++++++++++++++++++++++++++
 1 files changed, 66 insertions(+), 0 deletions(-)

diff --git a/ruoyi-ui/src/views/index.vue b/ruoyi-ui/src/views/index.vue
index e69de29..965fe11 100644
--- a/ruoyi-ui/src/views/index.vue
+++ b/ruoyi-ui/src/views/index.vue
@@ -0,0 +1,66 @@
+<template>
+  <div class="app-container">
+    <div class="image-container">
+      <img class="bottom-image" src="../assets/images/shouye.png" alt="Bottom Image">
+    </div>
+
+  </div>
+</template>
+
+<script>
+
+
+export default {
+  name: "App",
+  dicts: ['sys_normal_disable'],
+  data(){
+    return {
+
+    };
+  }
+
+};
+</script>
+
+<style scoped>
+.app-container{
+  background-color: #FEF7FC;
+}
+.image-container {
+  position: relative;
+  width: 100%;
+  height: 100%;
+}
+.bottom-image {
+  z-index: -1; /* 璁剧疆搴曞眰鍥剧墖鐨勫眰绾т负1 */
+  width: 100%;
+  height: 100%;
+  /*position: absolute;*/
+  top: 0;
+}
+.text-box1 {
+  position: absolute;
+  top: 17.5%;
+  left: 47.5%;
+  transform: translate(-50%, -50%);
+  width: 320px;
+
+}
+.text-box1 ::placeholder{
+  color:#000000;
+  font-size: 15px;
+  font-family: Microsoft YaHei UI-Light, Microsoft YaHei UI;
+}
+.text-box2 {
+  position: absolute;
+  top: 51%;
+  left: 80%;
+  transform: translate(-50%, -50%);
+  width: 345px;
+}
+.text-box2 ::placeholder{
+  color:#000000;
+  font-size: 15px;
+  font-family: Microsoft YaHei UI-Light, Microsoft YaHei UI;
+}
+</style>

--
Gitblit v1.9.1