0cf5beb9 by yangjianbin

init

1 parent 33d9d3a0
......@@ -76,14 +76,22 @@
{data: "userName"},//申请人
{data: "idCard"},//身份证
{data: "phoneNumber"},//手机号
{data: "createTime"},//进件时间
{data: function (data) {
if(!data.createTime)
return '';
return getNowFormatDate(new Date(parseInt(data.createTime)));
}},//进件时间
{name: "departmentId", data: "departmentName"},//网点
{name: "productId", data: "productName"},//产品名称
{data: "applyMoney"},//申请金额
{data: "agreeMoney"},//审批金额
{name: "createUser", data: "createUserName"},//客户经理
{name: "status", data: "statusDesc"},//流程节点
{data: "modifyTime"},//流转时间
{data: function (data) {
if(!data.modifyTime)
return '';
return getNowFormatDate(new Date(parseInt(data.modifyTime)));
}},//流转时间
{name: "modifyUser", data: "modifyUserName"}, //处理人
]
});
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!