Commit 0153ec13 authored by nikogu's avatar nikogu

update detail

parent 16d768d1
...@@ -6,6 +6,9 @@ import Cloud from 'g-cloud'; ...@@ -6,6 +6,9 @@ import Cloud from 'g-cloud';
/* eslint no-param-reassign: 0 */ /* eslint no-param-reassign: 0 */
/* eslint no-return-assign: 0 */ /* eslint no-return-assign: 0 */
const imgUrl = 'https://gw.alipayobjects.com/zos/rmsportal/SQlwcHhAbFVjjbDCLROB.png';
// const imgUrl = 'https://zos.alipayobjects.com/rmsportal/EEFqYWuloqIHRnh.jpg';
class TagCloud extends PureComponent { class TagCloud extends PureComponent {
componentDidMount() { componentDidMount() {
this.initTagCloud(); this.initTagCloud();
...@@ -25,7 +28,8 @@ class TagCloud extends PureComponent { ...@@ -25,7 +28,8 @@ class TagCloud extends PureComponent {
const textAttrs = Util.mix(true, {}, { const textAttrs = Util.mix(true, {}, {
fillOpacity: cfg.opacity, fillOpacity: cfg.opacity,
fontSize: cfg.size, fontSize: cfg.size,
rotate: 0, // cfg.origin._origin.rotate, // rotate: 0, // cfg.origin._origin.rotate,
rotate: cfg.origin._origin.rotate,
text: cfg.origin._origin.text, text: cfg.origin._origin.text,
textAlign: 'center', textAlign: 'center',
fill: cfg.color, fill: cfg.color,
...@@ -78,14 +82,15 @@ class TagCloud extends PureComponent { ...@@ -78,14 +82,15 @@ class TagCloud extends PureComponent {
height, height,
// 设定文字大小配置函数(默认为12-40px的随机大小) // 设定文字大小配置函数(默认为12-40px的随机大小)
size: words => (((words.value - min) / (max - min)) * 12) + 6, size: words => (((words.value - min) / (max - min)) * 4) + 10,
// 设定文字内容 // 设定文字内容
text: words => words.name, text: words => words.name,
}); });
layout.image(imgUrl, (imageCloud) => {
// 执行词云布局函数,并在回调函数中调用G2对结果进行绘制 // 执行词云布局函数,并在回调函数中调用G2对结果进行绘制
layout.exec((texts) => { imageCloud.exec((texts) => {
const chart = new G2.Chart({ const chart = new G2.Chart({
container: this.node, container: this.node,
width, width,
...@@ -118,6 +123,7 @@ class TagCloud extends PureComponent { ...@@ -118,6 +123,7 @@ class TagCloud extends PureComponent {
chart.render(); chart.render();
}); });
});
} }
render() { render() {
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
} }
.title { .title {
font-size: 14px;
color: @heading-color; color: @heading-color;
font-weight: 500; font-weight: 500;
margin-bottom: 16px; margin-bottom: 16px;
...@@ -59,10 +60,7 @@ ...@@ -59,10 +60,7 @@
} }
} }
.descriptionListLarge { .descriptionListLarge {
.large { .title {
margin-bottom: 24px; font-size: 16px;
}
.term {
padding-bottom: 24px;
} }
} }
...@@ -127,14 +127,14 @@ export default class BasicProfile extends Component { ...@@ -127,14 +127,14 @@ export default class BasicProfile extends Component {
return ( return (
<PageHeaderLayout title="基础详情页"> <PageHeaderLayout title="基础详情页">
<Card bordered={false}> <Card bordered={false}>
<DescriptionList title="退款申请" style={{ marginBottom: 32 }}> <DescriptionList size="large" title="退款申请" style={{ marginBottom: 32 }}>
<Description term="取货单号">1000000000</Description> <Description term="取货单号">1000000000</Description>
<Description term="状态">已取货</Description> <Description term="状态">已取货</Description>
<Description term="销售单号">1234123421</Description> <Description term="销售单号">1234123421</Description>
<Description term="子订单">3214321432</Description> <Description term="子订单">3214321432</Description>
</DescriptionList> </DescriptionList>
<Divider style={{ marginBottom: 32 }} /> <Divider style={{ marginBottom: 32 }} />
<DescriptionList title="用户信息" style={{ marginBottom: 32 }}> <DescriptionList size="large" title="用户信息" style={{ marginBottom: 32 }}>
<Description term="用户姓名">付小小</Description> <Description term="用户姓名">付小小</Description>
<Description term="联系电话">18100000000</Description> <Description term="联系电话">18100000000</Description>
<Description term="常用快递">菜鸟仓储</Description> <Description term="常用快递">菜鸟仓储</Description>
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
.title { .title {
color: @heading-color; color: @heading-color;
font-size: 16px;
font-weight: 500; font-weight: 500;
margin-bottom: 16px; margin-bottom: 16px;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment