You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.2 KiB
74 lines
1.2 KiB
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: 'op1',
|
|
type: '订购关系生效',
|
|
name: '曲丽丽',
|
|
status: 'agree',
|
|
updatedAt: '2017-10-03 19:23:12',
|
|
memo: '-',
|
|
},
|
|
];
|
|
|
|
const operation3 = [
|
|
{
|
|
key: 'op1',
|
|
type: '创建订单',
|
|
name: '汗牙牙',
|
|
status: 'agree',
|
|
updatedAt: '2017-10-03 19:23:12',
|
|
memo: '-',
|
|
},
|
|
];
|
|
|
|
export const getProfileData = {
|
|
operation1,
|
|
operation2,
|
|
operation3,
|
|
};
|
|
|
|
export default {
|
|
getProfileData,
|
|
};
|
|
|