150 lines
3.5 KiB
JavaScript
150 lines
3.5 KiB
JavaScript
/**
|
|
*
|
|
* @title 横向滚动条
|
|
* @parent 滚动 Scroll View
|
|
* @description `scroll.x`的值代表表体内容的实际宽度,默认情况下是根据各列宽度合计出来的。其值超过父元素的宽度时会自动出现滚动条。如设置 `scroll={{ x:1000 }}`,可以手动添加横向滚动条,也可以设置`scroll={{ x:"110%" }}`。
|
|
* demo0201
|
|
*/
|
|
|
|
import React, { Component } from "react";
|
|
import Table from "../../src";
|
|
|
|
const columns = [
|
|
{
|
|
title: "序号",
|
|
dataIndex: "index",
|
|
key: "index",
|
|
width: 100,
|
|
render(text, record, index) {
|
|
return index + 1;
|
|
}
|
|
},
|
|
{
|
|
title: "订单编号",
|
|
dataIndex: "orderCode",
|
|
key: "orderCode",
|
|
width: 300,
|
|
},
|
|
{
|
|
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: 300,
|
|
},
|
|
{
|
|
title: "审批状态",
|
|
dataIndex: "approvalState_name",
|
|
key: "approvalState_name",
|
|
width: 200
|
|
},
|
|
{
|
|
title: "确认状态",
|
|
dataIndex: "confirmState_name",
|
|
key: "confirmState_name",
|
|
width: 200
|
|
},
|
|
{
|
|
title: "关闭状态",
|
|
dataIndex: "closeState_name",
|
|
key: "closeState_name",
|
|
width: 100
|
|
}
|
|
];
|
|
|
|
const data = [
|
|
{
|
|
orderCode:"NU0391025",
|
|
supplierName: "xx供应商",
|
|
type_name: "1",
|
|
purchasing:'组织c',
|
|
purchasingGroup:"aa",
|
|
voucherDate:"2018年03月18日",
|
|
approvalState_name:"已审批",
|
|
confirmState_name:"执行中",
|
|
closeState_name:"未关闭",
|
|
key: "1"
|
|
},
|
|
{
|
|
orderCode:"NU0391026",
|
|
supplierName: "xx供应商",
|
|
type_name: "2",
|
|
purchasing:'组织a',
|
|
purchasingGroup:"bb",
|
|
voucherDate:"2018年02月05日",
|
|
approvalState_name:"已审批",
|
|
confirmState_name:"待确认",
|
|
closeState_name:"未关闭",
|
|
key: "2"
|
|
},
|
|
{
|
|
orderCode:"NU0391027",
|
|
supplierName: "xx供应商",
|
|
type_name: "3",
|
|
purchasing:'组织b',
|
|
purchasingGroup:"aa",
|
|
voucherDate:"2018年07月01日",
|
|
approvalState_name:"已审批",
|
|
confirmState_name:"终止",
|
|
closeState_name:"已关闭",
|
|
key: "3"
|
|
},
|
|
{
|
|
orderCode:"NU0391028",
|
|
supplierName: "xx供应商",
|
|
type_name: "4",
|
|
purchasing:'组织c',
|
|
purchasingGroup:"cc",
|
|
voucherDate:"2019年03月01日",
|
|
approvalState_name:"未审批",
|
|
confirmState_name:"待确认",
|
|
closeState_name:"未关闭",
|
|
key: "4"
|
|
},
|
|
{
|
|
orderCode:"NU0391029",
|
|
supplierName: "xx供应商",
|
|
type_name: "5",
|
|
purchasing:'组织d',
|
|
purchasingGroup:"ss",
|
|
voucherDate:"2019年02月14日",
|
|
approvalState_name:"未审批",
|
|
confirmState_name:"待确认",
|
|
closeState_name:"未关闭",
|
|
key: "5"
|
|
}
|
|
];
|
|
|
|
class Demo11 extends Component {
|
|
render() {
|
|
return (
|
|
<Table columns={columns} data={data} scroll={{ x: "110%" }} />
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Demo11;
|