From 57c16976b425bab899d467aa618bc1b0b4b918ff Mon Sep 17 00:00:00 2001 From: pengm <674192343@qq.com> Date: Thu, 18 Sep 2025 13:56:41 +0800 Subject: [PATCH] 1.处理MES表格标题悬浮提示英文-中文 --- src/components/Common/CommonTable/index.js | 2 +- src/utils/config.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Common/CommonTable/index.js b/src/components/Common/CommonTable/index.js index b05d834..febfabd 100644 --- a/src/components/Common/CommonTable/index.js +++ b/src/components/Common/CommonTable/index.js @@ -4575,7 +4575,7 @@ class CommonTableRc extends React.Component { className={`th-div ${ column.bXunjianCheck ? styles.thXunjian : "" }`} - title={`${column.chineseTitle}`} + title={column.tipTitle} style={styleObj} > {checkBoxAll} diff --git a/src/utils/config.js b/src/utils/config.js index 2b93cc1..3a3eb32 100644 --- a/src/utils/config.js +++ b/src/utils/config.js @@ -6,8 +6,8 @@ export const webSite = { // faceAddress: isDev ? '//192.168.11.22:8080/xlyFace' : '//' + location.host + '/xlyFace', fileAddress: isDev ? '//127.0.0.1:8080/xlyEntry/' : '//' + location.host + '/xlyReport/', // 接口地址 faceAddress: isDev ? '//172.19.18.26:8080/xlyFace' : '//' + location.host + '/xlyFace', - ipAddress: localStorage.ipAddress ? localStorage.ipAddress : isDev ? '//172.19.18.21:9543/xlyMes/' : '//' + location.host + '/xlyMes/', - interfaceAddress: isDev ? '//127.0.0.1:8088/xlyApi/' : '//' + location.host + '/xlyApi/', // 接口地址 + ipAddress: localStorage.ipAddress ? localStorage.ipAddress : isDev ? '//172.19.18.21:9543/xlyEntry/' : '//' + location.host + '/xlyEntry/', + interfaceAddress: isDev ? '//127.0.0.1:8088/xlyApi/' : '//' + location.host + '/xlyApi/', // 接口地址1 // ipAddress: isDev ? '//ebc.jinjia.com:8091/xlyEntry/' : '//' + location.host + '/xlyEntry/', // interfaceAddress: isDev ? '//ebc.jinjia.com:8091/xlyApi/' : '//' + location.host + '/xlyApi/', // 接口地址 // ipAddress: isDev ? '//192.168.11.26:8080/xlyEntry/' : '//' + location.host + '/xlyEntry/', -- libgit2 0.22.2