From ad988d54bbc8b4e65a49808e233c96c5952d0f2f Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Thu, 19 Jun 2025 14:54:00 +0800
Subject: [PATCH] 优化Excel统计行数值的单元格样式显示
---
ruoyi-ui/src/api/login.js | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/api/login.js b/ruoyi-ui/src/api/login.js
index f3c721a..50d8623 100644
--- a/ruoyi-ui/src/api/login.js
+++ b/ruoyi-ui/src/api/login.js
@@ -4,6 +4,10 @@
export function login(username, password, code, uuid) {
return request({
url: '/auth/login',
+ headers: {
+ isToken: false,
+ repeatSubmit: false
+ },
method: 'post',
data: { username, password, code, uuid }
})
@@ -49,6 +53,10 @@
export function getCodeImg() {
return request({
url: '/code',
- method: 'get'
+ headers: {
+ isToken: false
+ },
+ method: 'get',
+ timeout: 20000
})
}
\ No newline at end of file
--
Gitblit v1.9.3