|
@@ -11,6 +11,7 @@ import List from '../../../components/List';
|
|
|
import ListTable from '../../../components/ListTable';
|
|
|
import ProgressText from '../../../components/ProgressText';
|
|
|
import IconButton from '../../../components/IconButton';
|
|
|
+import Step from '../../../components/Step';
|
|
|
|
|
|
export default class extends Page {
|
|
|
renderView() {
|
|
@@ -68,7 +69,21 @@ export default class extends Page {
|
|
|
]}
|
|
|
/>
|
|
|
</Module>
|
|
|
- <Division two>
|
|
|
+ <Module>
|
|
|
+ <Step
|
|
|
+ list={[
|
|
|
+ '「1」前言',
|
|
|
+ '「2」重新认识',
|
|
|
+ '「3」基本元素',
|
|
|
+ '「4」简单变长',
|
|
|
+ '「5」练习',
|
|
|
+ '「6」翻译',
|
|
|
+ '「7」附录',
|
|
|
+ ]}
|
|
|
+ step="4"
|
|
|
+ />
|
|
|
+ </Module>
|
|
|
+ <Division col="2">
|
|
|
<Panel
|
|
|
title="OG"
|
|
|
col="3"
|
|
@@ -80,7 +95,7 @@ export default class extends Page {
|
|
|
list={[{ progress: 10, title: '测试' }, { progress: 10, title: '测试' }, { progress: 10, title: '测试' }]}
|
|
|
/>
|
|
|
</Division>
|
|
|
- <Division three>
|
|
|
+ <Division col="3">
|
|
|
<Card title="句改 SC" data={{ status: 'buy', desc: ['名师讲解', '精进学习', '提升成绩'] }} />
|
|
|
<Card title="句改 SC" data={{ status: 'open' }} />
|
|
|
<Card
|
|
@@ -106,6 +121,7 @@ export default class extends Page {
|
|
|
subTitle="练习"
|
|
|
filters={[
|
|
|
{ type: 'radio', checked: 'first', list: [{ key: 'first', title: 123 }, { key: 'two', title: 321 }] },
|
|
|
+ { type: 'select', checked: 'first', list: [{ key: 'first', title: 123 }, { key: 'two', title: 321 }] },
|
|
|
]}
|
|
|
data={[{}]}
|
|
|
columns={[
|
|
@@ -170,7 +186,8 @@ export default class extends Page {
|
|
|
render: () => {
|
|
|
return (
|
|
|
<div className="table-row p-t-1">
|
|
|
- <IconButton type="start" tip="Start" />
|
|
|
+ <IconButton className="m-r-2" type="continue" tip="Continue" />
|
|
|
+ <IconButton type="restart" tip="Restart" />
|
|
|
</div>
|
|
|
);
|
|
|
},
|