Commit e6861dbc7eae5cb8c2e8e36fe7019fe5f1b838cd

Authored by zhangzzzz
1 parent 376a0c72

修改组件英文;

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 );