Commit 00051c22 authored by 程卓's avatar 程卓

修改小区列表table更新时间的展示

parent ee00a414
...@@ -617,6 +617,15 @@ export default { ...@@ -617,6 +617,15 @@ export default {
} else { } else {
col.hocId = '是' col.hocId = '是'
} }
if (col.hocId == '' || col.hocId == null || col.hocId == 0) {
col.hocId = '否'
} else {
col.hocId = '是'
}
//特殊处理更新时间
if (!!col.syncTime) {
col.syncTime = col.syncTime.slice(0, 4)+'-'+col.syncTime.slice(5, 7)+'-'+col.syncTime.slice(8, 10)
}
}) })
} }
// //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment