浏览代码

审核页面跳转失败

dingxin 5 年前
父节点
当前提交
16afab6a95
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      src/pages/customer/recommendCustomer/audit.jsx

+ 2
- 1
src/pages/customer/recommendCustomer/audit.jsx 查看文件

42
   // 获取详情信息
42
   // 获取详情信息
43
   function getById(currentId) {
43
   function getById(currentId) {
44
     request({ ...apis.customer.recommendGetById, urlData: { id: currentId } }).then(res => {
44
     request({ ...apis.customer.recommendGetById, urlData: { id: currentId } }).then(res => {
45
-      props.form.setFieldsValue(res)
45
+      res.reportDate = moment(res.reportDate)
46
+     props.form.setFieldsValue(res)
46
     })
47
     })
47
   }
48
   }
48
 
49