page.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import React from 'react';
  2. import './index.less';
  3. import Page from '@src/containers/Page';
  4. import Footer from '../../../components/Footer';
  5. import { Contact } from '../../../components/Other';
  6. import Select from '../../../components/Select';
  7. import UserTable from '../../../components/UserTable';
  8. export default class extends Page {
  9. renderView() {
  10. return (
  11. <div>
  12. <div className="top content t-8">
  13. 机经 > 本期机经 > <span className="t-1">逻辑</span>
  14. <Select className="f-r m-t-1" size="small" theme="white" value={'1'} list={[{ title: '123', key: '1' }]} />
  15. </div>
  16. <div className="center content">
  17. <div className="t-1 t-s-18 m-b-1">
  18. 【逻辑】0515 起逻辑机经整理
  19. <Select
  20. className="f-r m-l-1"
  21. size="small"
  22. theme="default"
  23. value={'1'}
  24. list={[{ title: '123', key: '1' }]}
  25. />
  26. <Select className="f-r" size="small" theme="default" value={'1'} list={[{ title: '123', key: '1' }]} />
  27. </div>
  28. <UserTable
  29. size="small"
  30. data={[{}, {}, {}]}
  31. current={1}
  32. pageSize={20}
  33. total={100}
  34. jump
  35. columns={[
  36. { title: '文章编号', key: '1', sort: true },
  37. { title: '关键词', key: '2' },
  38. { title: '机经质量', key: '3' },
  39. ]}
  40. />
  41. </div>
  42. <Contact />
  43. <Footer />
  44. </div>
  45. );
  46. }
  47. }