Commit e50e5ee7ddcd50b05b19d2d2ae0991d5381fa77e

Authored by Min
1 parent b4e10856

1.补充翻译

src/components/CommonElementEvent/FilfileManageInfo.js
... ... @@ -193,6 +193,8 @@ const FilfileManageComponent = Form.create({
193 193 tableProps: { setUpload: true, setDownload: true },
194 194 enabled: true,
195 195 };
  196 + const BtnSure = commonFunc.showLocalMessage(props, "BtnSure", "确定");
  197 + const BtnCancel = commonFunc.showLocalMessage(props, "BtnCancel", "取消");
196 198 return (
197 199 <Form >
198 200 <Layout>
... ... @@ -204,8 +206,8 @@ const FilfileManageComponent = Form.create({
204 206 </div>
205 207 </Layout>
206 208 <div style={{ textAlign: 'right', marginRight: '9px', marginBottom: '9px' }}>
207   - <Button key="back" style={{ marginRight: '8px' }} onClick={props.onModalCancel.bind(this, 'visibleFilfile')}>取消</Button>
208   - <Button type="primary" onClick={props.onModalOk.bind(this, 'visibleFilfile')}>确认</Button>
  209 + <Button key="back" style={{ marginRight: '8px' }} onClick={props.onModalCancel.bind(this, 'visibleFilfile')}>{BtnCancel}</Button>
  210 + <Button type="primary" onClick={props.onModalOk.bind(this, 'visibleFilfile')}>{BtnSure}</Button>
209 211 </div>
210 212 </Layout>
211 213 </Form>
... ...