<!--来访车辆列表--> <template> <div class="app-container"> <!--筛选条件--> <div class="search-div"> <div class="search-left"> <el-form ref="selectForm" :inline="true" :model="listQuery" class="form-container"> <el-row> <el-col :span="4"> <el-form-item class="selectForm-container-item"> <el-input v-model.trim="listQuery.keywords" placeholder="车牌号" clearable /> </el-form-item> </el-col> <el-col v-show="showDateRange" :span="8"> <el-form-item class="selectForm-container-item"> <el-date-picker v-model="timeRange" type="daterange" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" /> </el-form-item> </el-col> <el-col :span="6" class="search-right"> <el-button class="filter-item" type="primary" icon="el-icon-search" @click="search">搜索</el-button> </el-col> </el-row> </el-form> </div> </div> <!--查询结果Table显示--> <div> <el-row class="table-title"> <el-col :span="6"><div class="title-header"><i class="el-icon-menu"/>数据列表</div></el-col> <el-col :span="12" :offset="6" class="edit_btns"> <el-button class="edit_btn" size="small">导出</el-button> </el-col> </el-row> <el-table v-loading="listLoading" :data="list" class="table" row-class-name="small-row-class" border> <!--序号列--> <el-table-column :index="indexMethod" align="center" type="index" label="#" width="55"/> <!--内容列--> <el-table-column v-for="column in columns" :key="column.value" :label="column.text" :width="column.width" :align="column.align" show-overflow-tooltip> <template slot-scope="scope"> <span v-if="column.value === 'outTime'">{{ formatTime(scope.row[column.value]) }}</span> <span v-else-if="column.value === 'visitTime'">{{ formatTime(scope.row.visitorPerson[column.value]) }}</span> <span v-else-if="column.value === 'plateNumber'">{{ scope.row[column.value] }}</span> <span v-else :class="column.class">{{ scope.row.visitorPerson[column.value] }}</span> </template> </el-table-column> <!--操作列--> <el-table-column label="操作" align="center" width="160"> <template slot-scope="scope"> <el-button type="text" @click="detail(scope.row)">详情</el-button> </template> </el-table-column> </el-table> </div> <!--分页--> <div class="pagination-container"> <el-pagination v-show="total>listQuery.limit" :current-page="listQuery.offset" :page-sizes="[20,30,50]" :page-size="listQuery.limit" :total="total" align="center" layout="total, sizes, prev, pager, next" @size-change="handleSizeChange" @current-change="handleCurrentChange"/> </div> <visitor-car-detail ref="visitorCarDetail" /> </div> </template> <script> import VisitorCarDetail from '@/views/visitor/visitorCarDetail' import { getVisitorCarList } from '@/api/visitor' import { getDate, formatToString } from '@/utils/calendarUtil' export default { name: 'VisitorCarToday', components: { VisitorCarDetail }, props: { showDateRange: { type: Boolean, default: false } }, data() { return { listQuery: { keywords: '', startTime: '', endTime: '', offset: 1, limit: 20, sort: '', order: '' }, // 筛选条件 columns: [ { text: '车牌号', value: 'plateNumber', align: 'center', width: 140 }, { text: '车主姓名', value: 'name', align: 'center' }, { text: '来访人单位', value: 'deptname', align: 'center' }, { text: '事由', value: 'matter', align: 'center' }, { text: '联系电话', value: 'phone', align: 'center' }, { text: '来访时间', value: 'visitTime', align: 'center' }, { text: '接访人员', value: 'personName', align: 'center' }, { text: '离开时间', value: 'outTime', align: 'center' } ], // 显示列 list: [], // 列表数据 total: 0, // 数据总数 timeRange: [], listLoading: false, // 加载动画 fullscreenLoading: false, // 全屏加载动画 dialogFormVisible: false } }, watch: { timeRange: function(newV) { if (newV) { this.listQuery.startTime = formatToString(newV[0], 'SECOND') this.listQuery.endTime = formatToString(newV[1], 'SECOND') } else { this.initTime() } this.fetchData() } }, created() { this.initTime() }, activated() { this.fetchData() }, methods: { initTime() { this.listQuery.startTime = getDate(0, 'DATE') + ' 00:00:00' this.listQuery.endTime = getDate(1, 'DATE') + ' 00:00:00' this.timeRange = [this.listQuery.startTime, this.listQuery.endTime] }, // 编辑设备信息 detail(row) { this.dialogFormVisible = true this.$refs.visitorCarDetail.initDialog('detail', this.dialogFormVisible, row) }, // 查询数据 search() { this.fetchData(false) }, // 获取列表 fetchData(isNowPage = true) { this.listLoading = true if (!isNowPage) { // 是否显示当前页,否则跳转第一页 this.listQuery.offset = 1 } getVisitorCarList(this.listQuery).then(response => { if (response.code === 200) { this.list = response.data.rows this.total = parseInt(response.data.total) } else { this.$message.error(response.message) } this.listLoading = false }) }, indexMethod(index) { return this.listQuery.limit * (this.listQuery.offset - 1) + index + 1 }, // 改变页容量 handleSizeChange(val) { this.listQuery.limit = val this.fetchData() }, // 改变当前页 handleCurrentChange(val) { this.listQuery.offset = val this.fetchData() }, formatTime(val) { if (val !== '') { return val.substring(11) } } } } </script> <style rel="stylesheet/scss" lang="scss" scoped> $tableTitleHeight:46px; .app-container{ margin-bottom:20px } .table{ margin-bottom: 20px; } .pagination-container{ margin-bottom: 50px; } .table-title{ background-color:rgba(243, 243, 243, 1); height: $tableTitleHeight; .title-header{ line-height:$tableTitleHeight; color: #606266; font-size: 15px; i{ margin-left: 5px; margin-right: 5px; } } } .edit_btns{ .edit_btn{ float:right; margin:7px 3px;//为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2 } } </style>