@@ -42,7 +42,8 @@ function body(props) {
// 获取详情信息
function getById(currentId) {
request({ ...apis.customer.recommendGetById, urlData: { id: currentId } }).then(res => {
- props.form.setFieldsValue(res)
+ res.reportDate = moment(res.reportDate)
+ props.form.setFieldsValue(res)
})
}