Commit d630d36cabedc61a9b4583cc5c57513da07ccb46

Authored by Min
2 parents a04cd389 e6861dbc

Merge branch 'release/customer/2025/AJT' of http://git.xlyprint.cn/qiangmj/ebc-M…

…es into release/customer/2025/AJT
src/mes/costomPageFun/index.js
@@ -1302,8 +1302,9 @@ const handleGetFormItem = (props, item) => { @@ -1302,8 +1302,9 @@ const handleGetFormItem = (props, item) => {
1302 bPassWord: item.sName === "sPassWord", 1302 bPassWord: item.sName === "sPassWord",
1303 style: { backgroundColor: "#eaeaea" }, 1303 style: { backgroundColor: "#eaeaea" },
1304 }; 1304 };
  1305 + const account = commonFunc.showLocalMessage(props, "account", "账号");
1305 return ( 1306 return (
1306 - <Form.Item label={item.sName === "sUserName" ? "账号" : item.showName} key={item.sName}> 1307 + <Form.Item label={item.sName === "sUserName" ? account : item.showName} key={item.sName}>
1307 <ShowType {...showTypeProps} /> 1308 <ShowType {...showTypeProps} />
1308 </Form.Item> 1309 </Form.Item>
1309 ); 1310 );