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

Loading…
Cancel
Save