|
@@ -1,487 +1,341 @@
|
|
|
<template>
|
|
|
- <div class="accessManage border-shadow">
|
|
|
- <div class="container">
|
|
|
- <div class="search_container">
|
|
|
- <a-form class="ant-advanced-search-form">
|
|
|
- <a-row :gutter="24">
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'员工姓名:'">
|
|
|
- <a-input />
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'部门:'">
|
|
|
- <a-select default-value="0">
|
|
|
- <a-select-option value="0">
|
|
|
- 办公室
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="1">
|
|
|
- 餐厅
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'人员类型:'">
|
|
|
- <a-select default-value="0">
|
|
|
- <a-select-option value="0">
|
|
|
- 自由员工
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="1">
|
|
|
- 外派
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- <a-row :gutter="24">
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'设备名称:'">
|
|
|
- <a-input />
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'通行方向:'">
|
|
|
- <a-select default-value="0">
|
|
|
- <a-select-option value="0">
|
|
|
- 进
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="1">
|
|
|
- 出
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'通行时间:'">
|
|
|
- <timeRange ref="timeRange" v-bind="{
|
|
|
- timeFormat: 'YYYY-MM-DD HH:mm:ss'
|
|
|
- }"></timeRange>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
+ <div class="accessManage ">
|
|
|
+ <div class="page-query-core">
|
|
|
+ <Query :show="['time']" :query-data.sync="queryData" :search="search">
|
|
|
+ <template #extraItem>
|
|
|
+ <a-form-model-item label="员工姓名">
|
|
|
+ <a-input v-model="queryData.name" placeholder="请输入员工姓名" />
|
|
|
+ </a-form-model-item>
|
|
|
+ <a-form-model-item label="部门">
|
|
|
+ <a-select v-model="queryData.dept" style="width: 120px">
|
|
|
+ <a-select-option v-for="(item,index) in deptOptions" :key="index" :value="item.value">{{item.label}}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-model-item>
|
|
|
+ <a-form-model-item label="人员类型">
|
|
|
+ <a-select v-model="queryData.dept" style="width: 120px">
|
|
|
+ <a-select-option v-for="(item,index) in peopleOptions" :key="index" :value="item.value">{{item.label}}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-model-item>
|
|
|
+ <a-form-model-item label="通行方向">
|
|
|
|
|
|
+ </a-form-model-item>
|
|
|
+ <a-form-model-item label="设备名称">
|
|
|
|
|
|
- <!-- <a-col :span="6">
|
|
|
- <a-form-item :label="'疫苗接种:'">
|
|
|
- <a-select default-value="0">
|
|
|
- <a-select-option value="0">
|
|
|
- 未接种
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="1">
|
|
|
- 第一针
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="2">
|
|
|
- 第二针
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="3">
|
|
|
- 第三针
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item :label="'核酸时间:'">
|
|
|
- <a-select default-value="0">
|
|
|
- <a-select-option value="0">
|
|
|
- 1天
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="1">
|
|
|
- 2天
|
|
|
- </a-select-option>
|
|
|
- <a-select-option value="2">
|
|
|
- 3天以上
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col> -->
|
|
|
- </a-row>
|
|
|
- <a-row :gutter="24">
|
|
|
- <a-col :span="18"></a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-button>
|
|
|
- 重置
|
|
|
- </a-button>
|
|
|
- <a-button type="primary">
|
|
|
- 查询
|
|
|
- </a-button>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </a-form>
|
|
|
- </div>
|
|
|
- <div ref="table_container" class="table_container">
|
|
|
-
|
|
|
- <a-table :columns="tableColumns" :data-source="tableData" :pagination="false"
|
|
|
- :scroll="{ y: tableContainerHeight }" bordered>
|
|
|
- <a-button slot="action" slot-scope="text" type="link">
|
|
|
- 查看
|
|
|
- </a-button>
|
|
|
- </a-table>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="footer">
|
|
|
- <a-pagination show-quick-jumper show-size-changer :default-current="1" :total="500" :page-size="10"
|
|
|
- :show-total="(total, range) => `共 ${total} 条`" />
|
|
|
- <!-- @change="onChange" -->
|
|
|
- </div>
|
|
|
+ </a-form-model-item>
|
|
|
+ </template>
|
|
|
+ </Query>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import timeRange from "@/components/common/timeRange.vue";
|
|
|
+import Query from "@/components/common/query.vue";
|
|
|
+
|
|
|
export default {
|
|
|
- components: {
|
|
|
- timeRange,
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- tableContainerHeight: 100,
|
|
|
- tableColumns: [
|
|
|
- {
|
|
|
- title: '序号',
|
|
|
- dataIndex: 'index',
|
|
|
- key: 'index',
|
|
|
- align: "center",
|
|
|
- width: 80,
|
|
|
- customRender: (text, record, index) => `${index + 1}`
|
|
|
- },
|
|
|
- {
|
|
|
- title: '姓名',
|
|
|
- dataIndex: 'name',
|
|
|
- key: 'name',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '人员类型',
|
|
|
- dataIndex: 'people_type',
|
|
|
- key: 'people_type',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '部门',
|
|
|
- dataIndex: 'department',
|
|
|
- key: 'department',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '通行时间',
|
|
|
- dataIndex: 'time',
|
|
|
- key: 'time',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '通行设备',
|
|
|
- dataIndex: 'equipment',
|
|
|
- key: 'equipment',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '通行方向',
|
|
|
- dataIndex: 'direction',
|
|
|
- key: 'direction',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '行为感知',
|
|
|
- key: 'operation',
|
|
|
- fixed: 'right',
|
|
|
- width: 100,
|
|
|
- scopedSlots: { customRender: 'action' },
|
|
|
- },
|
|
|
+ components: {
|
|
|
+ Query,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ queryData: {},
|
|
|
+ deptOptions: [
|
|
|
+ {
|
|
|
+ label: '产品研发',
|
|
|
+ value: '1'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '测试',
|
|
|
+ value: '2'
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ peopleOptions: [
|
|
|
+ {
|
|
|
+ label: '自有员工',
|
|
|
+ value: '1'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '协作员工',
|
|
|
+ value: '2'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '访客',
|
|
|
+ value: '3'
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ tableContainerHeight: 400,
|
|
|
+ tableColumns: [
|
|
|
+ {
|
|
|
+ title: '序号',
|
|
|
+ dataIndex: 'index',
|
|
|
+ key: 'index',
|
|
|
+ align: "center",
|
|
|
+ width: 80,
|
|
|
+ customRender: (text, record, index) => `${index + 1}`
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '姓名',
|
|
|
+ dataIndex: 'name',
|
|
|
+ key: 'name',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '人员类型',
|
|
|
+ dataIndex: 'people_type',
|
|
|
+ key: 'people_type',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '部门',
|
|
|
+ dataIndex: 'department',
|
|
|
+ key: 'department',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '通行时间',
|
|
|
+ dataIndex: 'time',
|
|
|
+ key: 'time',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '通行设备',
|
|
|
+ dataIndex: 'equipment',
|
|
|
+ key: 'equipment',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '通行方向',
|
|
|
+ dataIndex: 'direction',
|
|
|
+ key: 'direction',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '行为感知',
|
|
|
+ key: 'operation',
|
|
|
+ fixed: 'right',
|
|
|
+ width: 100,
|
|
|
+ scopedSlots: {customRender: 'action'},
|
|
|
+ },
|
|
|
|
|
|
- ],
|
|
|
- // name:"",
|
|
|
- // people_type:"",
|
|
|
- // department:"",
|
|
|
- // time:"",
|
|
|
- // equipment:"",
|
|
|
- // direction:"",
|
|
|
- // behavior:"",
|
|
|
- tableData: [
|
|
|
- {
|
|
|
- key: '1',
|
|
|
- name: "潘夏彤",
|
|
|
- people_type: "自有员工",
|
|
|
- department: "办公室",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B3",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '2',
|
|
|
- name: "庞慧",
|
|
|
- people_type: "协作员工",
|
|
|
- department: "规划院-办公室",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入1F",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '3',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '4',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '5',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '6',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '7',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '8',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '9',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '10',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '11',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '12',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '13',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '14',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '15',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '16',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '17',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '18',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '19',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '20',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- {
|
|
|
- key: '21',
|
|
|
- name: "李天泽",
|
|
|
- people_type: "访客",
|
|
|
- department: "规划院-产品中心",
|
|
|
- time: "进:2022-08-26 12:00:00",
|
|
|
- equipment: "ZY010012",
|
|
|
- direction: "进入B2",
|
|
|
- behavior: "",
|
|
|
- },
|
|
|
- ]
|
|
|
- }
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- let that = this
|
|
|
- setTimeout(() => {
|
|
|
- that.tableContainerHeight = that.$refs.table_container.clientHeight - 64 - 10;
|
|
|
- window.onresize = () => {
|
|
|
- return (() => {
|
|
|
- that.tableContainerHeight = that.$refs.table_container.clientHeight - 54 - 10
|
|
|
- })()
|
|
|
- };
|
|
|
- }, 100);
|
|
|
+ ],
|
|
|
+ tableData: [
|
|
|
+ {
|
|
|
+ key: '1',
|
|
|
+ name: "潘夏彤",
|
|
|
+ people_type: "自有员工",
|
|
|
+ department: "办公室",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B3",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '2',
|
|
|
+ name: "庞慧",
|
|
|
+ people_type: "协作员工",
|
|
|
+ department: "规划院-办公室",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入1F",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '3',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '4',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '5',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '6',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '7',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '8',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '9',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '10',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '11',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '12',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '13',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '14',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '15',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '16',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '17',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '18',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '19',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '20',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: '21',
|
|
|
+ name: "李天泽",
|
|
|
+ people_type: "访客",
|
|
|
+ department: "规划院-产品中心",
|
|
|
+ time: "进:2022-08-26 12:00:00",
|
|
|
+ equipment: "ZY010012",
|
|
|
+ direction: "进入B2",
|
|
|
+ behavior: "",
|
|
|
+ },
|
|
|
+ ]
|
|
|
}
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
.accessManage {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- padding: 5px 5px;
|
|
|
-
|
|
|
- .container {
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 5px 5px;
|
|
|
- height: calc(100% - 60px);
|
|
|
-
|
|
|
- .search_container {
|
|
|
- .ant-input {
|
|
|
- width: 220px;
|
|
|
- }
|
|
|
-
|
|
|
- .ant-select {
|
|
|
- width: 220px;
|
|
|
- }
|
|
|
-
|
|
|
- .ant-calendar-picker {
|
|
|
- width: 320px !important;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .table_container {
|
|
|
- height: calc(100% - 210px);
|
|
|
- box-sizing: border-box;
|
|
|
- padding-top: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .footer {
|
|
|
- height: 60px;
|
|
|
- line-height: 60px;
|
|
|
- margin-right: 50px;
|
|
|
- padding-top: 14px;
|
|
|
- }
|
|
|
-
|
|
|
- .ant-table-wrapper {
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
-
|
|
|
- .ant-advanced-search-form {
|
|
|
- padding: 24px;
|
|
|
- background: #fbfbfb;
|
|
|
- border: 1px solid #d9d9d9;
|
|
|
- border-radius: 6px
|
|
|
- }
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
|
|
|
- .ant-advanced-search-form .ant-form-item {
|
|
|
- display: flex;
|
|
|
|
|
|
- /deep/ .ant-form-item-label {
|
|
|
- min-width: 90px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .ant-advanced-search-form .ant-form-item-control-wrapper {
|
|
|
- flex: 1
|
|
|
- }
|
|
|
-
|
|
|
- .ant-pagination {
|
|
|
- float: right;
|
|
|
- }
|
|
|
}
|
|
|
</style>
|