Commit de675b9e authored by 赵茹林's avatar 赵茹林

团队概况 更新 最近备注时间逻辑

parent 7ab47a6d
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
<div>{{String(scope.row.remark_time).split(' ')[0]}}</div> <div>{{String(scope.row.remark_time).split(' ')[0]}}</div>
<div>{{String(scope.row.remark_time).split(' ')[1]}}</div> <div>{{String(scope.row.remark_time).split(' ')[1]}}</div>
</template> </template>
<template v-else-if="scope.row.created_at && String(scope.row.created_at).indexOf(' ') > -1">
<div>{{String(scope.row.created_at).split(' ')[0]}}</div>
<div>{{String(scope.row.created_at).split(' ')[1]}}</div>
</template>
<template v-else>-</template> <template v-else>-</template>
</template> </template>
</el-table-column> </el-table-column>
...@@ -70,6 +74,10 @@ ...@@ -70,6 +74,10 @@
<div>{{String(scope.row.remark_time).split(' ')[0]}}</div> <div>{{String(scope.row.remark_time).split(' ')[0]}}</div>
<div>{{String(scope.row.remark_time).split(' ')[1]}}</div> <div>{{String(scope.row.remark_time).split(' ')[1]}}</div>
</template> </template>
<template v-else-if="scope.row.created_at && String(scope.row.created_at).indexOf(' ') > -1">
<div>{{String(scope.row.created_at).split(' ')[0]}}</div>
<div>{{String(scope.row.created_at).split(' ')[1]}}</div>
</template>
<template v-else>-</template> <template v-else>-</template>
</template> </template>
</el-table-column> </el-table-column>
...@@ -109,6 +117,10 @@ ...@@ -109,6 +117,10 @@
<div>{{String(scope.row.remark_time).split(' ')[0]}}</div> <div>{{String(scope.row.remark_time).split(' ')[0]}}</div>
<div>{{String(scope.row.remark_time).split(' ')[1]}}</div> <div>{{String(scope.row.remark_time).split(' ')[1]}}</div>
</template> </template>
<template v-else-if="scope.row.created_at && String(scope.row.created_at).indexOf(' ') > -1">
<div>{{String(scope.row.created_at).split(' ')[0]}}</div>
<div>{{String(scope.row.created_at).split(' ')[1]}}</div>
</template>
<template v-else>-</template> <template v-else>-</template>
</template> </template>
</el-table-column> </el-table-column>
......
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