提交 78454828 authored 作者: 钟是志's avatar 钟是志

getActiveJson 修改

上级 6cd7f001
...@@ -853,10 +853,12 @@ export default class ZdyTable extends Component { ...@@ -853,10 +853,12 @@ export default class ZdyTable extends Component {
} }
if (cell.uuid) { if (cell.uuid) {
// debugger; // debugger;
if(cell.content){
cell.content = { cell.content = {
...cell.content, ...cell.content,
...getActiveJson(currentFormKey, cell.uuid), ...getActiveJson(currentFormKey, cell.uuid),
}; };
}
// 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新 // 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
} }
......
...@@ -62,7 +62,7 @@ import { ...@@ -62,7 +62,7 @@ import {
getBase64, getBase64,
getRender, getRender,
isJSON, isJSON,
ShowComName ShowComName,
} from './Split_Index/staticInfo'; } from './Split_Index/staticInfo';
import PictureSignature, { import PictureSignature, {
SignArray, SignArray,
...@@ -74,7 +74,7 @@ import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson'; ...@@ -74,7 +74,7 @@ import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson';
const { const {
MonthPicker, MonthPicker,
WeekPicker WeekPicker,
} = DatePicker; } = DatePicker;
/** /**
* 日期组件antd3.x有bug 详情见禅道 27152 毕业跟踪调查管理 毕业时间改为年级筛选 * 日期组件antd3.x有bug 详情见禅道 27152 毕业跟踪调查管理 毕业时间改为年级筛选
...@@ -101,7 +101,7 @@ const giveRender = (column = {}) => { ...@@ -101,7 +101,7 @@ const giveRender = (column = {}) => {
DataColumn, DataColumn,
SqlManageEntity, SqlManageEntity,
formList, formList,
loading loading,
}) => ({ }) => ({
DataColumn, DataColumn,
SqlManageEntity, SqlManageEntity,
...@@ -211,7 +211,7 @@ export default class TableCom extends Component { ...@@ -211,7 +211,7 @@ export default class TableCom extends Component {
setSelectedKeys, setSelectedKeys,
selectedKeys, selectedKeys,
confirm, confirm,
clearFilters clearFilters,
}) => ( }) => (
<div style={{ padding: 8 }}> <div style={{ padding: 8 }}>
<Input <Input
...@@ -229,11 +229,11 @@ export default class TableCom extends Component { ...@@ -229,11 +229,11 @@ export default class TableCom extends Component {
}} }}
/> />
<Button <Button
type="primary" type='primary'
onClick={() => this.handleSearch(selectedKeys, confirm)} onClick={() => this.handleSearch(selectedKeys, confirm)}
icon="search" icon='search'
loading={this.props.loading} loading={this.props.loading}
size="small" size='small'
style={{ style={{
width: 90, width: 90,
marginRight: 8, marginRight: 8,
...@@ -243,14 +243,14 @@ export default class TableCom extends Component { ...@@ -243,14 +243,14 @@ export default class TableCom extends Component {
<Button <Button
loading={this.props.loading} loading={this.props.loading}
onClick={() => this.handleReset(clearFilters)} onClick={() => this.handleReset(clearFilters)}
size="small" size='small'
style={{ width: 90 }}> style={{ width: 90 }}>
重置 重置
</Button> </Button>
</div> </div>
), ),
filterIcon: (filtered) => ( filterIcon: (filtered) => (
<Icon type="search" style={{ color: filtered ? '#1890ff' : 'red' }}/> <Icon type='search' style={{ color: filtered ? '#1890ff' : 'red' }} />
), ),
onFilter: (value, record) => onFilter: (value, record) =>
record[dataIndex] record[dataIndex]
...@@ -302,7 +302,7 @@ export default class TableCom extends Component { ...@@ -302,7 +302,7 @@ export default class TableCom extends Component {
const { const {
json, json,
mapData, mapData,
obj obj,
} = props; } = props;
if (json == null || this.props.safe) { if (json == null || this.props.safe) {
return; return;
...@@ -423,7 +423,7 @@ export default class TableCom extends Component { ...@@ -423,7 +423,7 @@ export default class TableCom extends Component {
const { dispatch } = this.props; const { dispatch } = this.props;
const { const {
sqlKey, sqlKey,
optionType optionType,
} = json; } = json;
if (optionType === 'sql') { if (optionType === 'sql') {
dispatch({ dispatch({
...@@ -1183,7 +1183,7 @@ export default class TableCom extends Component { ...@@ -1183,7 +1183,7 @@ export default class TableCom extends Component {
json, json,
mapData, mapData,
obj, obj,
init init,
} = this.props; } = this.props;
if (json == null) { if (json == null) {
return; return;
...@@ -1438,7 +1438,7 @@ export default class TableCom extends Component { ...@@ -1438,7 +1438,7 @@ export default class TableCom extends Component {
getColumn = (key) => { getColumn = (key) => {
let { let {
mapData, mapData,
json json,
} = this.props; } = this.props;
const columnIds = json?.columnIds; const columnIds = json?.columnIds;
...@@ -1484,13 +1484,14 @@ export default class TableCom extends Component { ...@@ -1484,13 +1484,14 @@ export default class TableCom extends Component {
} = this.props; } = this.props;
// 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新 // 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
let json = jsonStatic;
const json = { if (json) {
json = {
...jsonStatic, ...jsonStatic,
...getActiveJson(formKey, uuid), ...getActiveJson(formKey, uuid),
};
} }
const { const {
options, options,
labels, labels,
...@@ -1498,12 +1499,12 @@ export default class TableCom extends Component { ...@@ -1498,12 +1499,12 @@ export default class TableCom extends Component {
modalCode, modalCode,
modalTitle, modalTitle,
modalInit, modalInit,
modalProps modalProps,
} = this.state; } = this.state;
const { const {
getFieldDecorator, getFieldDecorator,
getFieldError, getFieldError,
getFieldProps getFieldProps,
} = this.props.form; } = this.props.form;
const disabled = json != null ? json.disabled : false; const disabled = json != null ? json.disabled : false;
const permRank = json != null ? (json.permRank != null ? json.permRank : 0) : 0; const permRank = json != null ? (json.permRank != null ? json.permRank : 0) : 0;
...@@ -1527,7 +1528,7 @@ export default class TableCom extends Component { ...@@ -1527,7 +1528,7 @@ export default class TableCom extends Component {
) { ) {
return <></>; return <></>;
} }
return <QRCode {...this.state.option} key={uuid}/>; return <QRCode {...this.state.option} key={uuid} />;
} }
if (json.comName == 'Echart') { if (json.comName == 'Echart') {
return ( return (
...@@ -1543,7 +1544,7 @@ export default class TableCom extends Component { ...@@ -1543,7 +1544,7 @@ export default class TableCom extends Component {
); );
} }
if (json.comName == 'Graph') { if (json.comName == 'Graph') {
return <Neo4jD3Com key={uuid} json={json} option={this.state.option || []}/>; return <Neo4jD3Com key={uuid} json={json} option={this.state.option || []} />;
} }
if (json.comName == 'PartForm') { if (json.comName == 'PartForm') {
...@@ -1558,7 +1559,7 @@ export default class TableCom extends Component { ...@@ -1558,7 +1559,7 @@ export default class TableCom extends Component {
<> <>
{this.props.form.getFieldDecorator(uuid, { {this.props.form.getFieldDecorator(uuid, {
initialValue: fk, initialValue: fk,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
{' '} {' '}
<ZdyTable <ZdyTable
taskId={this.props.taskId} taskId={this.props.taskId}
...@@ -1634,7 +1635,7 @@ export default class TableCom extends Component { ...@@ -1634,7 +1635,7 @@ export default class TableCom extends Component {
<> <>
{this.props.form.getFieldDecorator(uid, { {this.props.form.getFieldDecorator(uid, {
initialValue: obj[uuid] || json.initialValue, initialValue: obj[uuid] || json.initialValue,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
<span <span
style={{ style={{
fontWeight: get === 'mobile' ? 'bold' : '', fontWeight: get === 'mobile' ? 'bold' : '',
...@@ -1650,7 +1651,7 @@ export default class TableCom extends Component { ...@@ -1650,7 +1651,7 @@ export default class TableCom extends Component {
<> <>
{this.props.form.getFieldDecorator(uid, { {this.props.form.getFieldDecorator(uid, {
initialValue: this.props.form.getFieldsValue()[uid] || json.initialValue, initialValue: this.props.form.getFieldsValue()[uid] || json.initialValue,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
<span <span
style={{ style={{
fontWeight: get === 'mobile' ? 'bold' : '', fontWeight: get === 'mobile' ? 'bold' : '',
...@@ -1698,7 +1699,7 @@ export default class TableCom extends Component { ...@@ -1698,7 +1699,7 @@ export default class TableCom extends Component {
cm = ( cm = (
<span style={{ paddingRight: get === 'mobile' ? 8 : '' }}> <span style={{ paddingRight: get === 'mobile' ? 8 : '' }}>
{value} {value}
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</span> </span>
); );
break; break;
...@@ -1706,7 +1707,7 @@ export default class TableCom extends Component { ...@@ -1706,7 +1707,7 @@ export default class TableCom extends Component {
cm = ( cm = (
<span> <span>
{value} {value}
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</span> </span>
); );
...@@ -1724,7 +1725,7 @@ export default class TableCom extends Component { ...@@ -1724,7 +1725,7 @@ export default class TableCom extends Component {
cm = ( cm = (
<span style={{ paddingRight: get == 'mobile' ? 8 : '' }}> <span style={{ paddingRight: get == 'mobile' ? 8 : '' }}>
{value} {value}
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</span> </span>
); );
...@@ -1733,7 +1734,7 @@ export default class TableCom extends Component { ...@@ -1733,7 +1734,7 @@ export default class TableCom extends Component {
cm = ( cm = (
<span> <span>
{value} {value}
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</span> </span>
); );
...@@ -1743,7 +1744,7 @@ export default class TableCom extends Component { ...@@ -1743,7 +1744,7 @@ export default class TableCom extends Component {
<span> <span>
{moment(parseInt(value)) {moment(parseInt(value))
.format('YYYY-MM-DD HH:mm:ss')} .format('YYYY-MM-DD HH:mm:ss')}
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</span> </span>
) : ( ) : (
'' ''
...@@ -1758,14 +1759,14 @@ export default class TableCom extends Component { ...@@ -1758,14 +1759,14 @@ export default class TableCom extends Component {
{filesX.map((f, index2) => { {filesX.map((f, index2) => {
return ( return (
<li key={index2}> <li key={index2}>
<a target="_blank" key={f.path} href={queryApiActionPath() + f.path}> <a target='_blank' key={f.path} href={queryApiActionPath() + f.path}>
{f.name} {f.name}
</a> </a>
</li> </li>
); );
})} })}
</ul> </ul>
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</> </>
); );
...@@ -1778,14 +1779,14 @@ export default class TableCom extends Component { ...@@ -1778,14 +1779,14 @@ export default class TableCom extends Component {
{files.map((f, index2) => { {files.map((f, index2) => {
return ( return (
<li key={index2}> <li key={index2}>
<a target="_blank" key={f.path} href={queryApiActionPath() + f.path}> <a target='_blank' key={f.path} href={queryApiActionPath() + f.path}>
{f.name} {f.name}
</a> </a>
</li> </li>
); );
})} })}
</ul> </ul>
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</> </>
); );
...@@ -1810,7 +1811,7 @@ export default class TableCom extends Component { ...@@ -1810,7 +1811,7 @@ export default class TableCom extends Component {
height: json.height, height: json.height,
}} }}
/> />
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</> </>
); );
} }
...@@ -1836,7 +1837,7 @@ export default class TableCom extends Component { ...@@ -1836,7 +1837,7 @@ export default class TableCom extends Component {
height: json.height, height: json.height,
}} }}
/> />
{get === 'mobile' ? <br/> : ''} {get === 'mobile' ? <br /> : ''}
</> </>
); );
} }
...@@ -1869,7 +1870,7 @@ export default class TableCom extends Component { ...@@ -1869,7 +1870,7 @@ export default class TableCom extends Component {
</MobileItem> </MobileItem>
{this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, { {this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, {
initialValue: value, initialValue: value,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
</> </>
); );
} }
...@@ -1882,7 +1883,7 @@ export default class TableCom extends Component { ...@@ -1882,7 +1883,7 @@ export default class TableCom extends Component {
{cm} {cm}
{this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, { {this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, {
initialValue: value, initialValue: value,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
</> </>
); );
} }
...@@ -1969,7 +1970,7 @@ export default class TableCom extends Component { ...@@ -1969,7 +1970,7 @@ export default class TableCom extends Component {
</Form.Item> </Form.Item>
{this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, { {this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, {
initialValue: value, initialValue: value,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
</> </>
); );
} }
...@@ -1982,7 +1983,7 @@ export default class TableCom extends Component { ...@@ -1982,7 +1983,7 @@ export default class TableCom extends Component {
{cm} {cm}
{this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, { {this.props.form.getFieldDecorator(`defaultValues.${formKey}.${key}`, {
initialValue: value, initialValue: value,
})(<Input type="hidden"/>)} })(<Input type='hidden' />)}
</> </>
); );
} }
...@@ -2072,7 +2073,7 @@ export default class TableCom extends Component { ...@@ -2072,7 +2073,7 @@ export default class TableCom extends Component {
case 'WangEditor': case 'WangEditor':
let textV = obj[dataColumn.base52]; let textV = obj[dataColumn.base52];
if (!textV || textV === 'null') { if (!textV || textV === 'null') {
return <div/>; return <div />;
} }
cm = ( cm = (
<div <div
...@@ -2175,7 +2176,7 @@ ${obj[dataColumn.base52]} ...@@ -2175,7 +2176,7 @@ ${obj[dataColumn.base52]}
<Table <Table
get={get} get={get}
columns={this.state.columns} columns={this.state.columns}
size="small" size='small'
dataSource={ds} dataSource={ds}
pagination={false} pagination={false}
/> />
...@@ -2347,7 +2348,7 @@ ${obj[dataColumn.base52]} ...@@ -2347,7 +2348,7 @@ ${obj[dataColumn.base52]}
} }
return ( return (
<li key={index2}> <li key={index2}>
<a target="_blank" key={f.path} href={queryApiActionPath() + f.path}> <a target='_blank' key={f.path} href={queryApiActionPath() + f.path}>
{f.name} {f.name}
</a> </a>
</li> </li>
...@@ -2384,7 +2385,7 @@ ${obj[dataColumn.base52]} ...@@ -2384,7 +2385,7 @@ ${obj[dataColumn.base52]}
return ( return (
<li key={index2}> <li key={index2}>
<a <a
target="_blank" target='_blank'
key={f.filePath} key={f.filePath}
href={queryApiActionPath() + f.filePath}> href={queryApiActionPath() + f.filePath}>
{f.fileName} {f.fileName}
...@@ -2542,7 +2543,7 @@ ${obj[dataColumn.base52]} ...@@ -2542,7 +2543,7 @@ ${obj[dataColumn.base52]}
if (json.isLink) { if (json.isLink) {
cm = <a {...ev} />; cm = <a {...ev} />;
} else { } else {
cm = <Button loading={this.props.loading} type="primary" {...ev} />; cm = <Button loading={this.props.loading} type='primary' {...ev} />;
} }
} }
...@@ -2624,7 +2625,7 @@ ${obj[dataColumn.base52]} ...@@ -2624,7 +2625,7 @@ ${obj[dataColumn.base52]}
if (json.isLink) { if (json.isLink) {
cm = <a {...ev} />; cm = <a {...ev} />;
} else { } else {
cm = <Button loading={this.props.loading} type="primary" {...ev} />; cm = <Button loading={this.props.loading} type='primary' {...ev} />;
} }
} }
...@@ -2779,11 +2780,11 @@ ${obj[dataColumn.base52]} ...@@ -2779,11 +2780,11 @@ ${obj[dataColumn.base52]}
let inputStyle = { let inputStyle = {
width: json.width, width: json.width,
}; };
if(disabled){ if (disabled) {
inputStyle = { inputStyle = {
...inputStyle, ...inputStyle,
...disabledInputStyle, ...disabledInputStyle,
} };
} }
cm = getFieldDecorator(dataColumn.base52, { cm = getFieldDecorator(dataColumn.base52, {
initialValue: initValue, initialValue: initValue,
...@@ -2801,7 +2802,7 @@ ${obj[dataColumn.base52]} ...@@ -2801,7 +2802,7 @@ ${obj[dataColumn.base52]}
disabled={disabled} disabled={disabled}
style={inputStyle} style={inputStyle}
placeholder={json.placeholder} placeholder={json.placeholder}
/> />,
); );
if (get === 'mobile') { if (get === 'mobile') {
...@@ -2826,7 +2827,7 @@ ${obj[dataColumn.base52]} ...@@ -2826,7 +2827,7 @@ ${obj[dataColumn.base52]}
case 'InputHidden': case 'InputHidden':
cm = getFieldDecorator(dataColumn.base52, { cm = getFieldDecorator(dataColumn.base52, {
initialValue: initValue, initialValue: initValue,
})(<Input type="hidden"/>); })(<Input type='hidden' />);
break; break;
case 'InputNumber': case 'InputNumber':
cm = getFieldDecorator(dataColumn.base52, { cm = getFieldDecorator(dataColumn.base52, {
...@@ -2885,7 +2886,7 @@ ${obj[dataColumn.base52]} ...@@ -2885,7 +2886,7 @@ ${obj[dataColumn.base52]}
message: '请选择' + dataColumn.title, message: '请选择' + dataColumn.title,
}, },
], ],
})(<Radio.Group options={options} disabled={disabled}/>); })(<Radio.Group options={options} disabled={disabled} />);
if (get == 'mobile') { if (get == 'mobile') {
cm = <div>{cm}</div>; cm = <div>{cm}</div>;
if ( if (
...@@ -2912,7 +2913,7 @@ ${obj[dataColumn.base52]} ...@@ -2912,7 +2913,7 @@ ${obj[dataColumn.base52]}
case 'Checkbox': case 'Checkbox':
if (get === 'mobile') { if (get === 'mobile') {
cm = ( cm = (
<Flex direction="column" align="start"> <Flex direction='column' align='start'>
{getFieldDecorator(dataColumn.base52, { {getFieldDecorator(dataColumn.base52, {
initialValue: initValue, // 默认值 initialValue: initValue, // 默认值
rules: rules:
...@@ -2924,7 +2925,7 @@ ${obj[dataColumn.base52]} ...@@ -2924,7 +2925,7 @@ ${obj[dataColumn.base52]}
message: '请选择' + dataColumn.title, message: '请选择' + dataColumn.title,
}, },
], ],
})(<Checkbox.Group options={options} disabled={disabled}/>)} })(<Checkbox.Group options={options} disabled={disabled} />)}
</Flex> </Flex>
); );
...@@ -2994,7 +2995,7 @@ ${obj[dataColumn.base52]} ...@@ -2994,7 +2995,7 @@ ${obj[dataColumn.base52]}
disabled={selectDis || disabled} disabled={selectDis || disabled}
placeholder={json.placeholder} placeholder={json.placeholder}
style={{ width: json.width }} style={{ width: json.width }}
optionFilterProp="children" optionFilterProp='children'
getPopupContainer={ getPopupContainer={
this.props.isDynamic && document.querySelector('#dynamic_div') this.props.isDynamic && document.querySelector('#dynamic_div')
? () => { ? () => {
...@@ -3124,7 +3125,7 @@ ${obj[dataColumn.base52]} ...@@ -3124,7 +3125,7 @@ ${obj[dataColumn.base52]}
message: '请选择' + dataColumn.title, message: '请选择' + dataColumn.title,
}, },
], ],
})(<MobileCascader options={options} label={title} disabled={disabled} json={json}/>); })(<MobileCascader options={options} label={title} disabled={disabled} json={json} />);
} }
if ( if (
...@@ -3492,7 +3493,7 @@ ${obj[dataColumn.base52]} ...@@ -3492,7 +3493,7 @@ ${obj[dataColumn.base52]}
message: '请输入', message: '请输入',
}, },
], ],
})(<DraftEditorCom placeholder={json.placeholder} disabled={json.disabled}/>); })(<DraftEditorCom placeholder={json.placeholder} disabled={json.disabled} />);
if ( if (
get === 'mobile' && get === 'mobile' &&
((json.isMobileLabel != null && json.isMobileLabel) || ((json.isMobileLabel != null && json.isMobileLabel) ||
...@@ -3523,7 +3524,7 @@ ${obj[dataColumn.base52]} ...@@ -3523,7 +3524,7 @@ ${obj[dataColumn.base52]}
message: '请输入' + title, message: '请输入' + title,
}, },
], ],
})(<CronEditor style={{ width: 600 }}/>); })(<CronEditor style={{ width: 600 }} />);
break; break;
case 'LocationCom': case 'LocationCom':
cm = getFieldDecorator(dataColumn.base52, { cm = getFieldDecorator(dataColumn.base52, {
...@@ -3637,7 +3638,7 @@ ${obj[dataColumn.base52]} ...@@ -3637,7 +3638,7 @@ ${obj[dataColumn.base52]}
message: '请上传图片', message: '请上传图片',
}, },
], ],
})(<ImgUploadCom json={json} disabled={disabled}/>); })(<ImgUploadCom json={json} disabled={disabled} />);
if ( if (
get === 'mobile' && get === 'mobile' &&
((json.isMobileLabel != null && json.isMobileLabel) || ((json.isMobileLabel != null && json.isMobileLabel) ||
...@@ -3667,7 +3668,7 @@ ${obj[dataColumn.base52]} ...@@ -3667,7 +3668,7 @@ ${obj[dataColumn.base52]}
message: '请上传视频', message: '请上传视频',
}, },
], ],
})(<VideoUploadCom json={json} disabled={disabled}/>); })(<VideoUploadCom json={json} disabled={disabled} />);
if ( if (
get === 'mobile' && get === 'mobile' &&
((json.isMobileLabel != null && json.isMobileLabel) || ((json.isMobileLabel != null && json.isMobileLabel) ||
...@@ -3915,7 +3916,7 @@ ${obj[dataColumn.base52]} ...@@ -3915,7 +3916,7 @@ ${obj[dataColumn.base52]}
wrapperCol={{ span: json.wrapperSpan }} wrapperCol={{ span: json.wrapperSpan }}
label={title} label={title}
data-cell-component-name={json.comName || 'no_com'}> data-cell-component-name={json.comName || 'no_com'}>
<ShowComName json={json}/> <ShowComName json={json} />
{cm} {cm}
</Form.Item> </Form.Item>
</> </>
...@@ -4007,12 +4008,12 @@ ${obj[dataColumn.base52]} ...@@ -4007,12 +4008,12 @@ ${obj[dataColumn.base52]}
wrapperCol={{ span: json.wrapperSpan }} wrapperCol={{ span: json.wrapperSpan }}
label={title} label={title}
> >
<ShowComName json={json}/> <ShowComName json={json} />
{cm} {cm}
</Form.Item> </Form.Item>
) : ( ) : (
<Form.Item> <Form.Item>
<ShowComName json={json}/> <ShowComName json={json} />
{cm} {cm}
</Form.Item> </Form.Item>
) )
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论