|
|
@@ -18,7 +18,6 @@ const CloudDetail = props => {
|
|
|
visible,
|
|
|
dataId = '',
|
|
|
projectType,
|
|
|
- filterTag = true,
|
|
|
...resetDrawerProps
|
|
|
} = props
|
|
|
const dispatchModal = useModal()
|
|
|
@@ -101,7 +100,7 @@ const CloudDetail = props => {
|
|
|
{state.cloudUser.cld?.clientId ? (
|
|
|
<>
|
|
|
<div className="mt-4">
|
|
|
- <ClientDetail client={state.client} filterTag={filterTag} />
|
|
|
+ <ClientDetail client={state.client} filterTag={true} updateKey={updateKey} />
|
|
|
</div>
|
|
|
<div className="text-center mt-6">
|
|
|
<Tooltip placement="right" title="移除CLD客户">
|
|
|
@@ -111,7 +110,8 @@ const CloudDetail = props => {
|
|
|
size="small"
|
|
|
onClick={() => {
|
|
|
pricingUnLinkClient(state.cloudUser.cld?.clientId)
|
|
|
- }}>
|
|
|
+ }}
|
|
|
+ >
|
|
|
<LinkInterrupt size="14" />
|
|
|
<span className="ml-5px">移除CLD客户</span>
|
|
|
</Button>
|
|
|
@@ -135,7 +135,8 @@ const CloudDetail = props => {
|
|
|
// lg={{ span: 15 }}
|
|
|
// xl={{ span: 15 }}
|
|
|
flex={{ flexDirection: 'column' }}
|
|
|
- className="sheet-box-right">
|
|
|
+ className="sheet-box-right"
|
|
|
+ >
|
|
|
<TabList
|
|
|
compilationList={state.compilationList}
|
|
|
cloudUser={state.cloudUser}
|