123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import React from 'react';
- import './index.less';
- import Page from '@src/containers/Page';
- import Footer from '../../../components/Footer';
- import { Contact } from '../../../components/Other';
- import Select from '../../../components/Select';
- import UserTable from '../../../components/UserTable';
- export default class extends Page {
- renderView() {
- return (
- <div>
- <div className="top content t-8">
- 机经 > 本期机经 > <span className="t-1">逻辑</span>
- <Select className="f-r m-t-1" size="small" theme="white" value={'1'} list={[{ title: '123', key: '1' }]} />
- </div>
- <div className="center content">
- <div className="t-1 t-s-18 m-b-1">
- 【逻辑】0515 起逻辑机经整理
- <Select
- className="f-r m-l-1"
- size="small"
- theme="default"
- value={'1'}
- list={[{ title: '123', key: '1' }]}
- />
- <Select className="f-r" size="small" theme="default" value={'1'} list={[{ title: '123', key: '1' }]} />
- </div>
- <UserTable
- size="small"
- data={[{}, {}, {}]}
- current={1}
- pageSize={20}
- total={100}
- jump
- columns={[
- { title: '文章编号', key: '1', sort: true },
- { title: '关键词', key: '2' },
- { title: '机经质量', key: '3' },
- ]}
- />
- </div>
- <Contact />
- <Footer />
- </div>
- );
- }
- }
|