From 0affc0bee51f285845092eba1b485bcce26539c1 Mon Sep 17 00:00:00 2001 From: chenghx Date: Wed, 8 Aug 2018 11:43:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=EF=BC=9Atable=20mock=20?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mock/common/tableData.js | 118 +++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 src/mock/common/tableData.js diff --git a/src/mock/common/tableData.js b/src/mock/common/tableData.js new file mode 100644 index 0000000..c16ddf0 --- /dev/null +++ b/src/mock/common/tableData.js @@ -0,0 +1,118 @@ +const operation1 = [ + { + key: 'op1', + type: '订购关系生效', + name: '曲丽丽', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '-' + }, + { + key: 'op2', + type: '财务复审', + name: '付小小', + status: 'reject', + updatedAt: '2017-10-03 19:23:12', + memo: '不通过原因' + }, + { + key: 'op3', + type: '部门初审', + name: '周毛毛', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '-' + }, + { + key: 'op4', + type: '提交订单', + name: '林东东', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '很棒' + }, + { + key: 'op5', + type: '创建订单', + name: '汗牙牙', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '-' + } +] + +const operation2 = [ + { + key: 'op2', + type: '财务复审', + name: '付小小', + status: 'reject', + updatedAt: '2017-10-03 19:23:12', + memo: '不通过原因' + }, + { + key: 'op3', + type: '部门初审', + name: '周毛毛', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '-' + }, + { + key: 'op4', + type: '提交订单', + name: '林东东', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '很棒' + } +] + +const operation3 = [ + { + key: 'op2', + type: '财务复审', + name: '付小小', + status: 'reject', + updatedAt: '2017-10-03 19:23:12', + memo: '不通过原因' + }, + { + key: 'op3', + type: '部门初审', + name: '周毛毛', + status: 'agree', + updatedAt: '2017-10-03 19:23:12', + memo: '-' + } +] + +const operationColumns = [ + { + title: '操作类型', + dataIndex: 'type', + key: 'type' + }, + { + title: '操作人', + dataIndex: 'name', + key: 'name' + }, + { + title: '执行结果', + dataIndex: 'status', + key: 'status' + }, + { + title: '操作时间', + dataIndex: 'updatedAt', + key: 'updatedAt' + }, + { + title: '备注', + dataIndex: 'memo', + key: 'memo' + } +] + +export {operation1, operation2, operation3, operationColumns}