From a5cba9ab040f6f97558046885dce3017f9bab7e9 Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期二, 11 八月 2026 14:12:29 +0800
Subject: [PATCH] 提交

---
 src/views/login.vue |  106 ++++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 84 insertions(+), 22 deletions(-)

diff --git a/src/views/login.vue b/src/views/login.vue
index ddaf564..10cf9d3 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -25,6 +25,7 @@
         <el-input
           v-model="loginForm.password"
           type="password"
+          show-password
           auto-complete="off"
           placeholder="瀵嗙爜"
           @keyup.enter.native="handleLogin"
@@ -37,16 +38,16 @@
         </el-input>
       </el-form-item>
       <!-- 涓�===================姘� -->
-      <el-form-item prop="orgid">
+      <el-form-item prop="campusid">
         <el-select
           style="width: 100%"
-          v-model="loginForm.orgid"
+          v-model="loginForm.campusid"
           placeholder="璇烽�夋嫨闄㈠尯"
         >
           <el-option
             v-for="item in options"
             :label="item.label"
-            :value="item.value"
+            :value="item.campusid"
           >
           </el-option>
           <i slot="prefix" class="el-icon-mobile"></i>
@@ -93,10 +94,19 @@
         </div>
       </el-form-item>
     </el-form>
-    <!--  搴曢儴  -->
-    <!-- <div class="el-login-footer">
-      <span style="color: #568FBD; font-size: 25px;">Copyright 漏 2018-2022 ruoyi.vip All Rights Reserved.</span>
-    </div> -->
+    <!-- 搴曢儴淇℃伅 -->
+    <div class="el-login-footer">
+      <div class="footer-content">
+        <div class="footer-row">
+          <span class="tech-label">鎶�鏈敮鎸侊細</span>
+          <img src="@/assets/logo/Hrs.png" class="tech-logo" alt="logo" />
+          <span class="tech-name">娴欐睙浜ュ皵鏃剁鎶�鏈夐檺鍏徃</span>
+        </div>
+        <div class="footer-row">
+          <span class="hotline">鏈嶅姟鐑嚎锛�17778760073</span>
+        </div>
+      </div>
+    </div>
   </div>
 </template>
 
@@ -118,11 +128,7 @@
         code: "",
         orgid: "H41010500003",
       },
-      options: [
-        { value: "H41010500003", label: "娌冲崡涓尰鑽ぇ瀛︾涓�闄勫睘鍖婚櫌" },
-        { value: "H41082200269", label: "鍗氱埍鍘夸汉姘戝尰闄�" },
-        { value: "H41078202417", label: "杈夊幙甯備腑鍖婚櫌" },
-      ],
+      options: [],
       loginRules: {
         username: [
           { required: true, trigger: "blur", message: "璇疯緭鍏ユ偍鐨勮处鍙�" },
@@ -130,7 +136,7 @@
         password: [
           { required: true, trigger: "blur", message: "璇疯緭鍏ユ偍鐨勫瘑鐮�" },
         ],
-        orgid: [{ required: true, trigger: "blur", message: "璇烽�夋嫨闄㈠尯" }],
+        campusid: [{ required: true, trigger: "blur", message: "璇烽�夋嫨闄㈠尯" }],
       },
       loading: false,
       // 楠岃瘉鐮佸紑鍏�
@@ -168,11 +174,12 @@
       });
     },
     getorganization() {
-      getorganization().then((res) => {
+      getorganization({ pageSize: 30 }).then((res) => {
         if (res.code == 200) {
           this.options = res.rows.map((item) => ({
             value: item.orgid,
             label: item.organizationName,
+            campusid: item.organizationID,
           }));
         }
       });
@@ -192,6 +199,7 @@
       this.$refs.loginForm.validate((valid) => {
         if (valid) {
           this.loading = true;
+
           if (this.loginForm.rememberMe) {
             Cookies.set("username", this.loginForm.username, { expires: 30 });
             Cookies.set("password", encrypt(this.loginForm.password), {
@@ -205,7 +213,25 @@
             Cookies.remove("password");
             Cookies.remove("rememberMe");
           }
-          // this.loginForm.orgid = '1',
+
+          // 鍔ㄦ�佽缃� campusid 鍙傛暟
+          const selectedOrg = this.options.find(
+            (item) => item.campusid === this.loginForm.campusid
+          );
+          this.loginForm.campusid = selectedOrg.campusid || 1;
+          this.loginForm.orgid = selectedOrg.value || 1;
+          this.loginForm.orgname = selectedOrg.label || "";
+          // 甯備竴澶勭悊-----------------
+          // if (selectedOrg) {
+          //   if (selectedOrg.label.includes("婀栨花")) {
+          //     this.loginForm.campusid = 1;
+          //   } else if (selectedOrg.label.includes("鍚村北")) {
+          //     this.loginForm.campusid = 2;
+          //   } else {
+          //     this.loginForm.campusid = 1; // 榛樿鍊兼垨鍏朵粬澶勭悊
+          //   }
+          // }
+          // --------------------------------
           this.$store
             .dispatch("Login", this.loginForm)
             .then((res) => {
@@ -288,18 +314,54 @@
   }
 }
 .el-login-footer {
-  height: 40px;
-  line-height: 40px;
   position: fixed;
-  bottom: 0;
+  bottom: 20px;
+  left: 0;
+  right: 0;
   width: 100%;
   text-align: center;
-  color: #fff;
-  font-family: Arial;
-  font-size: 12px;
-  letter-spacing: 1px;
+  font-size: 13px;
+  color: #3664D9;
+  z-index: 10;
 }
 
+.footer-content {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  justify-content: center;
+  gap: 4px;
+}
+
+.footer-row {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+}
+
+.tech-logo {
+  width: 28px;
+  height: 28px;
+  margin: 0 6px;
+  vertical-align: middle;
+}
+
+.tech-label,
+.tech-name,
+.hotline {
+  color: #3664D9;;
+  font-size: 13px;
+}
+
+.tech-name {
+  color: #3664D9;;
+  font-weight: 500;
+}
+
+.hotline {
+  font-size: 12px;
+  color: #3664D9;;
+}
 .login-code-img {
   height: 38px;
 }

--
Gitblit v1.9.3