|
@@ -28,10 +28,14 @@
|
28
|
28
|
title="访问记录"
|
29
|
29
|
:visible.sync="dialogVisible"
|
30
|
30
|
width="50%">
|
31
|
|
- <el-table v-loading="detailData.length > 0" :data="detailData" border center style="width: 100%" height="400">
|
32
|
|
- <el-table-column type="index" width="50"></el-table-column>
|
33
|
|
- <el-table-column label="访问时间" prop="visitTime"></el-table-column>
|
34
|
|
- <el-table-column label="离开时间" prop="leaveTime"></el-table-column>
|
|
31
|
+ <el-table :data="detailData" border center style="width: 100%" height="400">
|
|
32
|
+ <el-table-column label="编号" type="index" width="50"></el-table-column>
|
|
33
|
+ <el-table-column label="访问时间" prop="visitTime">
|
|
34
|
+ <template slot-scope="scope">{{ formateDate(scope.row.visitTime) }}</template>
|
|
35
|
+ </el-table-column>
|
|
36
|
+ <el-table-column label="离开时间" prop="leaveTime">
|
|
37
|
+ <template slot-scope="scope">{{ formateDate(scope.row.leaveTime) }}</template>
|
|
38
|
+ </el-table-column>
|
35
|
39
|
</el-table>
|
36
|
40
|
</el-dialog>
|
37
|
41
|
</div>
|