2016-04-01 10:12:02 +08:00
|
|
|
---
|
|
|
|
order: 2
|
2016-07-21 10:10:04 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 文案展现
|
|
|
|
en-US: Show copywriting
|
2016-04-01 10:12:02 +08:00
|
|
|
---
|
2016-03-31 14:43:38 +08:00
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2016-03-31 14:43:38 +08:00
|
|
|
给评分组件加上文案展示。
|
|
|
|
|
2016-07-21 10:10:04 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Add copywriting in rate components.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2016-03-31 14:43:38 +08:00
|
|
|
import { Rate } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React, { useState } from 'react';
|
2016-03-31 14:43:38 +08:00
|
|
|
|
2018-12-28 16:04:05 +08:00
|
|
|
const desc = ['terrible', 'bad', 'normal', 'good', 'wonderful'];
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [value, setValue] = useState(3);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span>
|
|
|
|
<Rate tooltips={desc} onChange={setValue} value={value} />
|
|
|
|
{value ? <span className="ant-rate-text">{desc[value - 1]}</span> : ''}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|