|
|
|
@ -25,7 +25,7 @@ const topSeries = [
|
|
|
|
|
{ key: 'country', value: 'country', label: '国籍', graphVisible: true },
|
|
|
|
|
{ key: 'webcode', value: 'webcode', label: '站点', graphVisible: false },
|
|
|
|
|
{ key: 'bizarea', value: 'bizarea', label: '国境', graphVisible: false },
|
|
|
|
|
{ key: 'destinationcountry', value: 'destinationcountry', label: '目的地国籍', graphVisible: false },
|
|
|
|
|
{ key: 'destinationcountry', value: 'destinationcountry', label: '目的地国籍', graphVisible: true },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
const allGroupTypes = [
|
|
|
|
@ -320,7 +320,7 @@ export default observer(() => {
|
|
|
|
|
</Col>
|
|
|
|
|
) : null
|
|
|
|
|
)}
|
|
|
|
|
<Col key={'mapG'} span={24}>
|
|
|
|
|
<Col key={'mapG'} span={22}>
|
|
|
|
|
<hr />
|
|
|
|
|
<h3>来源国籍分布</h3>
|
|
|
|
|
<Spin spinning={topData?.country?.loading || false}>
|
|
|
|
@ -329,15 +329,22 @@ export default observer(() => {
|
|
|
|
|
</div>
|
|
|
|
|
</Spin>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col key={'mapDestinationCountry'} span={24}>
|
|
|
|
|
<Col key={'mapG-r'} span={1}></Col>
|
|
|
|
|
<Col key={'mapDestinationCountry'} span={22}>
|
|
|
|
|
<hr />
|
|
|
|
|
<h3>目的地国籍分布</h3>
|
|
|
|
|
<Spin spinning={DistributionStore.pageLoading || false}>
|
|
|
|
|
{/* <Spin spinning={DistributionStore.pageLoading || false}>
|
|
|
|
|
<div id="mapDestinationCountry" style={{ height: '700px' }}>
|
|
|
|
|
<MapCountry sourceField={'label'} valueField={BUConfig.measureField} dataSource={DistributionStore.destinationCountry.originData || []} containerNode='#mapDestinationCountry' />
|
|
|
|
|
</div>
|
|
|
|
|
</Spin> */}
|
|
|
|
|
<Spin spinning={topData?.destinationcountry?.loading || false}>
|
|
|
|
|
<div id="mapDestinationCountry" style={{ height: '700px' }}>
|
|
|
|
|
<MapCountry sourceField={'groupsLabel'} valueField={BUConfig.measureField} dataSource={topData?.destinationcountry?.dataSource || []} containerNode='#mapDestinationCountry' />
|
|
|
|
|
</div>
|
|
|
|
|
</Spin>
|
|
|
|
|
</Col>
|
|
|
|
|
<Col key={'mapGc-r'} span={1}></Col>
|
|
|
|
|
</Row>
|
|
|
|
|
</section>
|
|
|
|
|
</>
|
|
|
|
|