|
@@ -128,6 +128,9 @@
|
|
|
label="注册时间"
|
|
|
sortable
|
|
|
width="144">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.register_time?scope.row.register_time.substring(0,16):'-'}}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="status"
|
|
@@ -240,6 +243,9 @@
|
|
|
label="申请时间"
|
|
|
sortable
|
|
|
width="144">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.apply_time?scope.row.apply_time.substring(0,16):'-'}}
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="audit_time"
|
|
@@ -247,7 +253,7 @@
|
|
|
sortable
|
|
|
width="144">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.audit_time?scope.row.audit_time:'-'}}
|
|
|
+ {{scope.row.audit_time?scope.row.audit_time.substring(0,16):'-'}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|