Browse Source

访客日期查询

V1.0
zhangyuan 3 years ago
parent
commit
69d513cdd3
  1. 10
      src/views/modules/base/visitor.vue

10
src/views/modules/base/visitor.vue

@ -10,13 +10,13 @@
<el-form-item label="填写时间" prop="startTime">
<el-date-picker
v-model="timeRange"
type="daterange"
type="datetimerange"
clearable
size="small"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="yyyy-MM-dd"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
@ -85,9 +85,9 @@
label="人脸"
>
<template slot-scope="scope">
<el-image
<el-image
style="max-height: 50px; max-width: 50px;"
:src="scope.row.faceImg"
:src="scope.row.faceImg"
:preview-src-list="[scope.row.faceImg]">
<div slot="error" class="image-slot">
<!-- <i class="el-icon-picture-outline"></i> -->
@ -155,7 +155,7 @@ export default {
mounted() {
this.getTableData()
},
methods: {
methods: {
handleSizeChange(val) {
console.log(`每页 ${val}`)
this.pageSize = val

Loading…
Cancel
Save