Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {/* vazba dokumentů title a paticka data a colum konec*/}
  2.  
  3.  
  4. {/* tisk na plátno title a paticka data a colum zacatek*/}
  5. const title10 = () => 'Cena zahrnuje potisk plátna + natažení na dřevěný rám Doba dodání 3 - 5 pracovních dnů nebo dle dohody.';
  6. const footer10 = () => 'V případě objednání jiného rozměru než máme v nabídce je doba dodání minimálně 5 racovních dnů.';
  7. const columns10 = [
  8.   {
  9.     title: 'Rozměry',
  10.     dataIndex: 'col1',
  11.     key: 'col1',
  12.   },
  13.   {
  14.     title: 'Cena',
  15.     dataIndex: 'col2',
  16.     key: 'col2',
  17.   },
  18. ];
  19. const dataSource10 = [
  20.   {
  21.     key: '1',
  22.     col1: "30x30",
  23.     col2: "449,- Kč",  
  24.   },
  25.   {
  26.     key: '2',
  27.     col1: "30x40",
  28.     col2: "549,- Kč",  
  29.   },
  30.   {
  31.     key: '3',
  32.     col1: "30x60",
  33.     col2: "649,- Kč",  
  34.   },
  35.   {
  36.     key: '4',
  37.     col1: "30x90",
  38.     col2: "849,- Kč",  
  39.   },
  40.   {
  41.     key: '5',
  42.     col1: "40x40",
  43.     col2: "649,- Kč",  
  44.   },
  45.   {
  46.     key: '6',
  47.     col1: "40x50",
  48.     col2: "699,- Kč",  
  49.   },
  50.   {
  51.     key: '7',
  52.     col1: "40x60",
  53.     col2: "749,- Kč",  
  54.   },
  55.   {
  56.     key: '8',
  57.     col1: "50x50",
  58.     col2: "749,- Kč",  
  59.   },
  60.   {
  61.     key: '9',
  62.     col1: "50x60",
  63.     col2: "799,- Kč",  
  64.   },
  65.   {
  66.     key: '10',
  67.     col1: "50x70",
  68.     col2: "849,- Kč",  
  69.   },
  70.   {
  71.     key: '11',
  72.     col1: "50x100",
  73.     col2: "1049,- Kč",  
  74.   },
  75.   {
  76.     key: '12',
  77.     col1: "60x60",
  78.     col2: "849,- Kč",  
  79.   },
  80.   {
  81.     key: '13',
  82.     col1: "60x80",
  83.     col2: "949,- Kč",  
  84.   },
  85.   {
  86.     key: '14',
  87.     col1: "60x120",
  88.     col2: "1349,- Kč",  
  89.   },
  90.   {
  91.     key: '15',
  92.     col1: "70x70",
  93.     col2: "949,- Kč",  
  94.   },
  95.   {
  96.     key: '16',
  97.     col1: "70x140",
  98.     col2: "1449,- Kč",  
  99.   },
  100.   {
  101.     key: '17',
  102.     col1: "80x120",
  103.     col2: "1449,- Kč",  
  104.   },
  105.   {
  106.     key: '18',
  107.     col1: "80x160",
  108.     col2: "1649,- Kč",  
  109.   },
  110.   {
  111.     key: '19',
  112.     col1: "90x90",
  113.     col2: "1449,- Kč",  
  114.   },
  115.   {
  116.     key: '20',
  117.     col1: "90x130",
  118.     col2: "1949,- Kč",  
  119.   },
  120.   {
  121.     key: '21',
  122.     col1: "90x150",
  123.     col2: "2249,- Kč",  
  124.   },
  125.  
  126. ];
  127. {/* tisk na plátno title a paticka data a colum konec*/}
  128.  
  129.  
  130.  <h1>Tisk na plátno</h1>
  131.  <Table dataSource={dataSource10} columns={columns10} pagination={false} size='small' bordered title={title10} footer={footer10}/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement