2018-12-21 09:58:52 +08:00
|
|
|
|
/**
|
|
|
|
|
*
|
2019-04-16 13:35:25 +08:00
|
|
|
|
* @title 纵向滚动条
|
2019-04-18 10:50:38 +08:00
|
|
|
|
* @parent 滚动 Scroll View
|
2019-04-16 13:35:25 +08:00
|
|
|
|
* @description 设置`scroll`属性支持横向或纵向滚动,x/y的取值可以是正整数、百分比、布尔值
|
2019-04-23 20:11:38 +08:00
|
|
|
|
* demo0202
|
2018-12-21 09:58:52 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2019-04-16 13:35:25 +08:00
|
|
|
|
import React, { Component } from "react";
|
|
|
|
|
import Table from "../../src";
|
2019-03-20 17:44:05 +08:00
|
|
|
|
|
2019-04-23 20:11:38 +08:00
|
|
|
|
const columns = [
|
|
|
|
|
{title: "序号",dataIndex: "index",key: "index",width: 80,
|
|
|
|
|
render(text, record, index) {
|
|
|
|
|
return index + 1;
|
|
|
|
|
}
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{title: "订单编号",dataIndex: "orderCode",key: "orderCode",width: 200},
|
|
|
|
|
{title: "供应商名称",dataIndex: "supplierName",key: "supplierName",width: 200},
|
|
|
|
|
{title: "类型",dataIndex: "type_name",key: "type_name",width: 200},
|
|
|
|
|
{title: "采购组织",dataIndex: "purchasing",key: "purchasing",width: 200},
|
|
|
|
|
{title: "采购组",dataIndex: "purchasingGroup",key: "purchasingGroup",width: 200},
|
|
|
|
|
{title: "凭证日期",dataIndex: "voucherDate",key: "voucherDate",width: 200}
|
2018-12-21 09:58:52 +08:00
|
|
|
|
];
|
2019-04-23 20:11:38 +08:00
|
|
|
|
|
|
|
|
|
const data = [
|
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391025",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "1",
|
|
|
|
|
purchasing:'组织c',
|
|
|
|
|
purchasingGroup:"aa",
|
|
|
|
|
voucherDate:"2018年03月18日",
|
|
|
|
|
key: "1"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391026",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "2",
|
|
|
|
|
purchasing:'组织a',
|
|
|
|
|
purchasingGroup:"bb",
|
|
|
|
|
voucherDate:"2018年02月05日",
|
|
|
|
|
key: "2"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391027",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "3",
|
|
|
|
|
purchasing:'组织b',
|
|
|
|
|
purchasingGroup:"aa",
|
|
|
|
|
voucherDate:"2018年07月01日",
|
|
|
|
|
key: "3"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391028",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "4",
|
|
|
|
|
purchasing:'组织c',
|
|
|
|
|
purchasingGroup:"cc",
|
|
|
|
|
voucherDate:"2019年03月01日",
|
|
|
|
|
key: "4"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391029",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "5",
|
|
|
|
|
purchasing:'组织d',
|
|
|
|
|
purchasingGroup:"ss",
|
|
|
|
|
voucherDate:"2019年02月14日",
|
|
|
|
|
key: "5"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391030",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "1",
|
|
|
|
|
purchasing:'组织e',
|
|
|
|
|
purchasingGroup:"zz",
|
|
|
|
|
voucherDate:"2019年02月18日",
|
|
|
|
|
key: "6"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391031",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "2",
|
|
|
|
|
purchasing:'组织f',
|
|
|
|
|
purchasingGroup:"qq",
|
|
|
|
|
voucherDate:"2019年01月01日",
|
|
|
|
|
key: "7"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
2019-04-23 20:11:38 +08:00
|
|
|
|
{
|
|
|
|
|
orderCode:"NU0391032",
|
|
|
|
|
supplierName: "xx供应商",
|
|
|
|
|
type_name: "3",
|
|
|
|
|
purchasing:'组织g',
|
|
|
|
|
purchasingGroup:"pp",
|
|
|
|
|
voucherDate:"2019年01月31日",
|
|
|
|
|
key: "8"
|
2019-04-16 13:35:25 +08:00
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
class Demo12 extends Component {
|
2018-12-21 09:58:52 +08:00
|
|
|
|
render() {
|
2019-04-16 13:35:25 +08:00
|
|
|
|
return (
|
2019-04-23 20:11:38 +08:00
|
|
|
|
<Table columns={columns} data={data} scroll={{y:150 }} />
|
2019-04-16 13:35:25 +08:00
|
|
|
|
);
|
2018-12-21 09:58:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 13:35:25 +08:00
|
|
|
|
export default Demo12;
|