feat: 新30号准则适配 — 三表完善+认证头修复+企业联动

This commit is contained in:
Hermes CI Fix
2026-08-11 00:40:43 +08:00
parent 4081361b05
commit dcc7e2194d
4 changed files with 62 additions and 5 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ import axios from 'axios'
const api = axios.create({ baseURL: '/api/cma', timeout: 30000 })
api.interceptors.request.use((config: any) => {
const token = localStorage.getItem('cma_token')
if (token) config.headers.Authorization = `'Bearer ' + token`
if (token) config.headers.Authorization = `Bearer ${token}`
return config
})