|
@@ -90,7 +90,7 @@ const AddAssembly: React.FC<AddAssemblyProps> = ({ defaultData, close, event$ })
|
|
|
<Card
|
|
|
size="small"
|
|
|
className={classNames({
|
|
|
- 'border border-hex-40a9ff': assemblyList.includes(Assembly.COSTPROFILE)
|
|
|
+ 'border border-hex-40a9ff': assemblyList.includes(Assembly.DATAPROFILE)
|
|
|
})}
|
|
|
title={
|
|
|
<div className="flex mt-1">
|
|
@@ -102,19 +102,19 @@ const AddAssembly: React.FC<AddAssemblyProps> = ({ defaultData, close, event$ })
|
|
|
}
|
|
|
extra={
|
|
|
<Checkbox
|
|
|
- onChange={e => handleAssemblyOnchange(e.target.checked, Assembly.COSTPROFILE)}
|
|
|
- checked={assemblyList.includes(Assembly.COSTPROFILE)}
|
|
|
+ onChange={e => handleAssemblyOnchange(e.target.checked, Assembly.DATAPROFILE)}
|
|
|
+ checked={assemblyList.includes(Assembly.DATAPROFILE)}
|
|
|
/>
|
|
|
}>
|
|
|
<div className="min-h-70px">自定义审核资料模板,承载业务审批过程中资料及附件业务。</div>
|
|
|
- <Button onClick={() => openModal(Assembly.COSTPROFILE)}>点击预览组件</Button>
|
|
|
+ <Button onClick={() => openModal(Assembly.DATAPROFILE)}>点击预览组件</Button>
|
|
|
</Card>
|
|
|
</Col>
|
|
|
<Col span={8}>
|
|
|
<Card
|
|
|
size="small"
|
|
|
className={classNames({
|
|
|
- 'border border-hex-40a9ff': assemblyList.includes(Assembly.DATAPROFILE)
|
|
|
+ 'border border-hex-40a9ff': assemblyList.includes(Assembly.COSTPROFILE)
|
|
|
})}
|
|
|
title={
|
|
|
<div className="flex mt-1">
|
|
@@ -126,14 +126,14 @@ const AddAssembly: React.FC<AddAssemblyProps> = ({ defaultData, close, event$ })
|
|
|
}
|
|
|
extra={
|
|
|
<Checkbox
|
|
|
- onChange={e => handleAssemblyOnchange(e.target.checked, Assembly.DATAPROFILE)}
|
|
|
- checked={assemblyList.includes(Assembly.DATAPROFILE)}
|
|
|
+ onChange={e => handleAssemblyOnchange(e.target.checked, Assembly.COSTPROFILE)}
|
|
|
+ checked={assemblyList.includes(Assembly.COSTPROFILE)}
|
|
|
/>
|
|
|
}>
|
|
|
<div className="min-h-70px">
|
|
|
提供全过程造价文件的体系架构关键数据汇总,实现全过程造价文件的标准化管理。
|
|
|
</div>
|
|
|
- <Button onClick={() => openModal(Assembly.DATAPROFILE)}>点击预览组件</Button>
|
|
|
+ <Button onClick={() => openModal(Assembly.COSTPROFILE)}>点击预览组件</Button>
|
|
|
</Card>
|
|
|
</Col>
|
|
|
<Col span={8}>
|