|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
|
|
+ <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="90px">
|
|
|
<el-form-item label="访客姓名" prop="visitorName">
|
|
<el-form-item label="访客姓名" prop="visitorName">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="queryParams.visitorName"
|
|
v-model="queryParams.visitorName"
|
|
@@ -9,90 +9,62 @@
|
|
|
@keyup.enter="handleQuery"
|
|
@keyup.enter="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="访客手机号" prop="mobile">
|
|
|
|
|
|
|
+ <el-form-item label="手机号" prop="mobile">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="queryParams.mobile"
|
|
v-model="queryParams.mobile"
|
|
|
- placeholder="请输入访客手机号"
|
|
|
|
|
|
|
+ placeholder="请输入手机号"
|
|
|
clearable
|
|
clearable
|
|
|
@keyup.enter="handleQuery"
|
|
@keyup.enter="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="证件号码" prop="idCardNo">
|
|
|
|
|
|
|
+ <el-form-item label="身份证号" prop="idCardNo">
|
|
|
<el-input
|
|
<el-input
|
|
|
v-model="queryParams.idCardNo"
|
|
v-model="queryParams.idCardNo"
|
|
|
- placeholder="请输入证件号码"
|
|
|
|
|
|
|
+ placeholder="请输入身份证号"
|
|
|
clearable
|
|
clearable
|
|
|
@keyup.enter="handleQuery"
|
|
@keyup.enter="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
<el-form-item label="到访类型" prop="visitType">
|
|
<el-form-item label="到访类型" prop="visitType">
|
|
|
- <el-select v-model="queryParams.visitType" placeholder="请选择到访类型" clearable>
|
|
|
|
|
|
|
+ <el-select v-model="queryParams.visitType" placeholder="请选择到访类型" clearable style="width: 180px">
|
|
|
<el-option
|
|
<el-option
|
|
|
v-for="dict in visitor_visit_type"
|
|
v-for="dict in visitor_visit_type"
|
|
|
:key="dict.value"
|
|
:key="dict.value"
|
|
|
:label="dict.label"
|
|
:label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
|
|
|
|
+ :value="String(dict.value)"
|
|
|
/>
|
|
/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="访客来源,如公司、单位、亲友、外卖、快递、供应商等" prop="visitorSource">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.visitorSource"
|
|
|
|
|
- placeholder="请输入访客来源,如公司、单位、亲友、外卖、快递、供应商等"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="来访事由,如业务接洽、走亲访友、酒店入住、配送、维修、参观等" prop="visitReason">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.visitReason"
|
|
|
|
|
- placeholder="请输入来访事由,如业务接洽、走亲访友、酒店入住、配送、维修、参观等"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="访客照片地址" prop="visitorPhoto">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.visitorPhoto"
|
|
|
|
|
- placeholder="请输入访客照片地址"
|
|
|
|
|
- clearable
|
|
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
- />
|
|
|
|
|
|
|
+ <el-form-item label="登记方式" prop="registerType">
|
|
|
|
|
+ <el-select v-model="queryParams.registerType" placeholder="请选择登记方式" clearable style="width: 180px">
|
|
|
|
|
+ <el-option
|
|
|
|
|
+ v-for="dict in visitor_register_type"
|
|
|
|
|
+ :key="dict.value"
|
|
|
|
|
+ :label="dict.label"
|
|
|
|
|
+ :value="String(dict.value)"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="关联预约单号,现场登记可为空" prop="appointmentNo">
|
|
|
|
|
|
|
+ <el-form-item label="被访对象" prop="visitedPerson">
|
|
|
<el-input
|
|
<el-input
|
|
|
- v-model="queryParams.appointmentNo"
|
|
|
|
|
- placeholder="请输入关联预约单号,现场登记可为空"
|
|
|
|
|
|
|
+ v-model="queryParams.visitedPerson"
|
|
|
|
|
+ placeholder="请输入被访对象"
|
|
|
clearable
|
|
clearable
|
|
|
@keyup.enter="handleQuery"
|
|
@keyup.enter="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="被访人/被访对象" prop="visitedPerson">
|
|
|
|
|
- <el-input
|
|
|
|
|
- v-model="queryParams.visitedPerson"
|
|
|
|
|
- placeholder="请输入被访人/被访对象"
|
|
|
|
|
|
|
+ <el-form-item label="来访时间" prop="visitTimeRange">
|
|
|
|
|
+ <el-date-picker
|
|
|
|
|
+ v-model="visitTimeRange"
|
|
|
|
|
+ type="datetimerange"
|
|
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
|
|
+ range-separator="至"
|
|
|
|
|
+ start-placeholder="开始时间"
|
|
|
|
|
+ end-placeholder="结束时间"
|
|
|
clearable
|
|
clearable
|
|
|
- @keyup.enter="handleQuery"
|
|
|
|
|
|
|
+ style="width: 360px"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="来访/登记时间" prop="visitTime">
|
|
|
|
|
- <el-date-picker clearable
|
|
|
|
|
- v-model="queryParams.visitTime"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="YYYY-MM-DD"
|
|
|
|
|
- placeholder="请选择来访/登记时间">
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="登记方式" prop="registerType">
|
|
|
|
|
- <el-select v-model="queryParams.registerType" placeholder="请选择登记方式" clearable>
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in visitor_register_type"
|
|
|
|
|
- :key="dict.value"
|
|
|
|
|
- :label="dict.label"
|
|
|
|
|
- :value="dict.value"
|
|
|
|
|
- />
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
@@ -100,35 +72,6 @@
|
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="primary"
|
|
|
|
|
- plain
|
|
|
|
|
- icon="Plus"
|
|
|
|
|
- @click="handleAdd"
|
|
|
|
|
- v-hasPermi="['base:visitorRecord:add']"
|
|
|
|
|
- >新增</el-button>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="success"
|
|
|
|
|
- plain
|
|
|
|
|
- icon="Edit"
|
|
|
|
|
- :disabled="single"
|
|
|
|
|
- @click="handleUpdate"
|
|
|
|
|
- v-hasPermi="['base:visitorRecord:edit']"
|
|
|
|
|
- >修改</el-button>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
- <el-button
|
|
|
|
|
- type="danger"
|
|
|
|
|
- plain
|
|
|
|
|
- icon="Delete"
|
|
|
|
|
- :disabled="multiple"
|
|
|
|
|
- @click="handleDelete"
|
|
|
|
|
- v-hasPermi="['base:visitorRecord:remove']"
|
|
|
|
|
- >删除</el-button>
|
|
|
|
|
- </el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
<el-button
|
|
|
type="warning"
|
|
type="warning"
|
|
@@ -141,41 +84,47 @@
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
|
|
- <el-table v-loading="loading" :data="visitorRecordList" @selection-change="handleSelectionChange">
|
|
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
- <el-table-column label="主键ID" align="center" prop="id" />
|
|
|
|
|
- <el-table-column label="访客姓名" align="center" prop="visitorName" />
|
|
|
|
|
- <el-table-column label="访客手机号" align="center" prop="mobile" />
|
|
|
|
|
- <el-table-column label="证件号码" align="center" prop="idCardNo" />
|
|
|
|
|
- <el-table-column label="到访类型" align="center" prop="visitType">
|
|
|
|
|
|
|
+ <el-table v-loading="loading" :data="visitorRecordList">
|
|
|
|
|
+ <el-table-column label="访客姓名" align="center" prop="visitorName" min-width="120" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="手机号" align="center" prop="mobile" width="140" />
|
|
|
|
|
+ <el-table-column label="身份证号" align="center" prop="idCardNo" min-width="180" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="访客照片" align="center" prop="visitorPhoto" width="100">
|
|
|
|
|
+ <template #default="scope">
|
|
|
|
|
+ <image-preview
|
|
|
|
|
+ v-if="scope.row.visitorPhoto"
|
|
|
|
|
+ :src="scope.row.visitorPhoto"
|
|
|
|
|
+ :width="44"
|
|
|
|
|
+ :height="44"
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-tag v-else type="info">无照片</el-tag>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="到访类型" align="center" prop="visitType" width="120">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <dict-tag :options="visitor_visit_type" :value="scope.row.visitType"/>
|
|
|
|
|
|
|
+ <dict-tag :options="visitor_visit_type" :value="String(scope.row.visitType)" />
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="访客来源,如公司、单位、亲友、外卖、快递、供应商等" align="center" prop="visitorSource" />
|
|
|
|
|
- <el-table-column label="来访事由,如业务接洽、走亲访友、酒店入住、配送、维修、参观等" align="center" prop="visitReason" />
|
|
|
|
|
- <el-table-column label="访客照片地址" align="center" prop="visitorPhoto" />
|
|
|
|
|
- <el-table-column label="关联预约单号,现场登记可为空" align="center" prop="appointmentNo" />
|
|
|
|
|
- <el-table-column label="被访人/被访对象" align="center" prop="visitedPerson" />
|
|
|
|
|
- <el-table-column label="来访/登记时间" align="center" prop="visitTime" width="180">
|
|
|
|
|
|
|
+ <el-table-column label="登记方式" align="center" prop="registerType" width="140">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <span>{{ parseTime(scope.row.visitTime, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
|
|
+ <dict-tag :options="visitor_register_type" :value="String(scope.row.registerType)" />
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
- <el-table-column label="登记方式" align="center" prop="registerType">
|
|
|
|
|
|
|
+ <el-table-column label="访客来源" align="center" prop="visitorSource" min-width="140" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="来访事由" align="center" prop="visitReason" min-width="160" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="预约单号" align="center" prop="appointmentNo" min-width="150" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="被访对象" align="center" prop="visitedPerson" min-width="120" show-overflow-tooltip />
|
|
|
|
|
+ <el-table-column label="来访时间" align="center" prop="visitTime" width="170">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <dict-tag :options="visitor_register_type" :value="scope.row.registerType"/>
|
|
|
|
|
|
|
+ <span>{{ parseTime(scope.row.visitTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" width="100" fixed="right" class-name="small-padding fixed-width">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['base:visitorRecord:edit']">修改</el-button>
|
|
|
|
|
- <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['base:visitorRecord:remove']">删除</el-button>
|
|
|
|
|
|
|
+ <el-button link type="primary" icon="View" @click="handleDetail(scope.row)">详情</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<pagination
|
|
<pagination
|
|
|
v-show="total>0"
|
|
v-show="total>0"
|
|
|
:total="total"
|
|
:total="total"
|
|
@@ -184,95 +133,37 @@
|
|
|
@pagination="getList"
|
|
@pagination="getList"
|
|
|
/>
|
|
/>
|
|
|
|
|
|
|
|
- <!-- 添加或修改访客登记记录对话框 -->
|
|
|
|
|
- <el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
|
- <el-form ref="visitorRecordRef" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
- <el-row>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="访客姓名" prop="visitorName">
|
|
|
|
|
- <el-input v-model="form.visitorName" placeholder="请输入访客姓名" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="访客手机号" prop="mobile">
|
|
|
|
|
- <el-input v-model="form.mobile" placeholder="请输入访客手机号" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="证件号码" prop="idCardNo">
|
|
|
|
|
- <el-input v-model="form.idCardNo" placeholder="请输入证件号码" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="到访类型" prop="visitType">
|
|
|
|
|
- <el-select v-model="form.visitType" placeholder="请选择到访类型">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in visitor_visit_type"
|
|
|
|
|
- :key="dict.value"
|
|
|
|
|
- :label="dict.label"
|
|
|
|
|
- :value="dict.value"
|
|
|
|
|
- ></el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="访客来源,如公司、单位、亲友、外卖、快递、供应商等" prop="visitorSource">
|
|
|
|
|
- <el-input v-model="form.visitorSource" placeholder="请输入访客来源,如公司、单位、亲友、外卖、快递、供应商等" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="来访事由,如业务接洽、走亲访友、酒店入住、配送、维修、参观等" prop="visitReason">
|
|
|
|
|
- <el-input v-model="form.visitReason" placeholder="请输入来访事由,如业务接洽、走亲访友、酒店入住、配送、维修、参观等" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="访客照片地址" prop="visitorPhoto">
|
|
|
|
|
- <el-input v-model="form.visitorPhoto" placeholder="请输入访客照片地址" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="关联预约单号,现场登记可为空" prop="appointmentNo">
|
|
|
|
|
- <el-input v-model="form.appointmentNo" placeholder="请输入关联预约单号,现场登记可为空" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="被访人/被访对象" prop="visitedPerson">
|
|
|
|
|
- <el-input v-model="form.visitedPerson" placeholder="请输入被访人/被访对象" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="来访/登记时间" prop="visitTime">
|
|
|
|
|
- <el-date-picker clearable
|
|
|
|
|
- v-model="form.visitTime"
|
|
|
|
|
- type="date"
|
|
|
|
|
- value-format="YYYY-MM-DD"
|
|
|
|
|
- placeholder="请选择来访/登记时间">
|
|
|
|
|
- </el-date-picker>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="备注" prop="remark">
|
|
|
|
|
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="24">
|
|
|
|
|
- <el-form-item label="登记方式" prop="registerType">
|
|
|
|
|
- <el-select v-model="form.registerType" placeholder="请选择登记方式">
|
|
|
|
|
- <el-option
|
|
|
|
|
- v-for="dict in visitor_register_type"
|
|
|
|
|
- :key="dict.value"
|
|
|
|
|
- :label="dict.label"
|
|
|
|
|
- :value="dict.value"
|
|
|
|
|
- ></el-option>
|
|
|
|
|
- </el-select>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
- </el-form>
|
|
|
|
|
|
|
+ <!-- 访客记录详情 -->
|
|
|
|
|
+ <el-dialog :title="title" v-model="open" width="760px" append-to-body>
|
|
|
|
|
+ <el-descriptions :column="2" border>
|
|
|
|
|
+ <el-descriptions-item label="访客姓名">{{ form.visitorName || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="手机号">{{ form.mobile || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="身份证号">{{ form.idCardNo || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="到访类型">
|
|
|
|
|
+ <dict-tag :options="visitor_visit_type" :value="String(form.visitType)" />
|
|
|
|
|
+ </el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="登记方式">
|
|
|
|
|
+ <dict-tag :options="visitor_register_type" :value="String(form.registerType)" />
|
|
|
|
|
+ </el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="访客来源">{{ form.visitorSource || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="来访事由">{{ form.visitReason || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="预约单号">{{ form.appointmentNo || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="被访对象">{{ form.visitedPerson || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="来访时间">{{ parseTime(form.visitTime, "{y}-{m}-{d} {h}:{i}:{s}") || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="备注" :span="2">{{ form.remark || "-" }}</el-descriptions-item>
|
|
|
|
|
+ <el-descriptions-item label="访客照片" :span="2">
|
|
|
|
|
+ <image-preview
|
|
|
|
|
+ v-if="form.visitorPhoto"
|
|
|
|
|
+ :src="form.visitorPhoto"
|
|
|
|
|
+ :width="120"
|
|
|
|
|
+ :height="120"
|
|
|
|
|
+ />
|
|
|
|
|
+ <span v-else>-</span>
|
|
|
|
|
+ </el-descriptions-item>
|
|
|
|
|
+ </el-descriptions>
|
|
|
<template #footer>
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
<div class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
|
|
+ <el-button @click="open = false">关 闭</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -280,7 +171,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="VisitorRecord">
|
|
<script setup name="VisitorRecord">
|
|
|
-import { listVisitorRecord, getVisitorRecord, delVisitorRecord, addVisitorRecord, updateVisitorRecord } from "@/api/base/visitorRecord"
|
|
|
|
|
|
|
+import { listVisitorRecord, getVisitorRecord } from "@/api/base/visitorRecord"
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance()
|
|
const { proxy } = getCurrentInstance()
|
|
|
const { visitor_register_type, visitor_visit_type } = useDict('visitor_register_type', 'visitor_visit_type')
|
|
const { visitor_register_type, visitor_visit_type } = useDict('visitor_register_type', 'visitor_visit_type')
|
|
@@ -289,11 +180,9 @@ const visitorRecordList = ref([])
|
|
|
const open = ref(false)
|
|
const open = ref(false)
|
|
|
const loading = ref(true)
|
|
const loading = ref(true)
|
|
|
const showSearch = ref(true)
|
|
const showSearch = ref(true)
|
|
|
-const ids = ref([])
|
|
|
|
|
-const single = ref(true)
|
|
|
|
|
-const multiple = ref(true)
|
|
|
|
|
const total = ref(0)
|
|
const total = ref(0)
|
|
|
const title = ref("")
|
|
const title = ref("")
|
|
|
|
|
+const visitTimeRange = ref([])
|
|
|
|
|
|
|
|
const data = reactive({
|
|
const data = reactive({
|
|
|
form: {},
|
|
form: {},
|
|
@@ -304,42 +193,25 @@ const data = reactive({
|
|
|
mobile: undefined,
|
|
mobile: undefined,
|
|
|
idCardNo: undefined,
|
|
idCardNo: undefined,
|
|
|
visitType: undefined,
|
|
visitType: undefined,
|
|
|
- visitorSource: undefined,
|
|
|
|
|
- visitReason: undefined,
|
|
|
|
|
- visitorPhoto: undefined,
|
|
|
|
|
- appointmentNo: undefined,
|
|
|
|
|
|
|
+ registerType: undefined,
|
|
|
visitedPerson: undefined,
|
|
visitedPerson: undefined,
|
|
|
- visitTime: undefined,
|
|
|
|
|
- registerType: undefined
|
|
|
|
|
- },
|
|
|
|
|
- rules: {
|
|
|
|
|
- visitType: [
|
|
|
|
|
- { required: true, message: "到访类型不能为空", trigger: "change" }
|
|
|
|
|
- ],
|
|
|
|
|
- registerType: [
|
|
|
|
|
- { required: true, message: "登记方式不能为空", trigger: "change" }
|
|
|
|
|
- ]
|
|
|
|
|
|
|
+ visitTimeStart: undefined,
|
|
|
|
|
+ visitTimeEnd: undefined
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
-const { queryParams, form, rules } = toRefs(data)
|
|
|
|
|
|
|
+const { queryParams, form } = toRefs(data)
|
|
|
|
|
|
|
|
/** 查询访客登记记录列表 */
|
|
/** 查询访客登记记录列表 */
|
|
|
function getList() {
|
|
function getList() {
|
|
|
loading.value = true
|
|
loading.value = true
|
|
|
listVisitorRecord(queryParams.value).then(response => {
|
|
listVisitorRecord(queryParams.value).then(response => {
|
|
|
- visitorRecordList.value = response.rows
|
|
|
|
|
- total.value = response.total
|
|
|
|
|
|
|
+ visitorRecordList.value = response.rows || []
|
|
|
|
|
+ total.value = response.total || 0
|
|
|
loading.value = false
|
|
loading.value = false
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 取消按钮 */
|
|
|
|
|
-function cancel() {
|
|
|
|
|
- open.value = false
|
|
|
|
|
- reset()
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
/** 表单重置 */
|
|
/** 表单重置 */
|
|
|
function reset() {
|
|
function reset() {
|
|
|
form.value = {
|
|
form.value = {
|
|
@@ -348,6 +220,7 @@ function reset() {
|
|
|
mobile: null,
|
|
mobile: null,
|
|
|
idCardNo: null,
|
|
idCardNo: null,
|
|
|
visitType: null,
|
|
visitType: null,
|
|
|
|
|
+ registerType: null,
|
|
|
visitorSource: null,
|
|
visitorSource: null,
|
|
|
visitReason: null,
|
|
visitReason: null,
|
|
|
visitorPhoto: null,
|
|
visitorPhoto: null,
|
|
@@ -356,87 +229,63 @@ function reset() {
|
|
|
visitTime: null,
|
|
visitTime: null,
|
|
|
remark: null,
|
|
remark: null,
|
|
|
createTime: null,
|
|
createTime: null,
|
|
|
- updateTime: null,
|
|
|
|
|
- registerType: null
|
|
|
|
|
|
|
+ updateTime: null
|
|
|
}
|
|
}
|
|
|
- proxy.resetForm("visitorRecordRef")
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
/** 搜索按钮操作 */
|
|
|
function handleQuery() {
|
|
function handleQuery() {
|
|
|
queryParams.value.pageNum = 1
|
|
queryParams.value.pageNum = 1
|
|
|
|
|
+ if (visitTimeRange.value && visitTimeRange.value.length === 2) {
|
|
|
|
|
+ queryParams.value.visitTimeStart = visitTimeRange.value[0]
|
|
|
|
|
+ queryParams.value.visitTimeEnd = visitTimeRange.value[1]
|
|
|
|
|
+ } else {
|
|
|
|
|
+ queryParams.value.visitTimeStart = undefined
|
|
|
|
|
+ queryParams.value.visitTimeEnd = undefined
|
|
|
|
|
+ }
|
|
|
getList()
|
|
getList()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
function resetQuery() {
|
|
function resetQuery() {
|
|
|
|
|
+ visitTimeRange.value = []
|
|
|
|
|
+ queryParams.value.visitTimeStart = undefined
|
|
|
|
|
+ queryParams.value.visitTimeEnd = undefined
|
|
|
proxy.resetForm("queryRef")
|
|
proxy.resetForm("queryRef")
|
|
|
handleQuery()
|
|
handleQuery()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 多选框选中数据 */
|
|
|
|
|
-function handleSelectionChange(selection) {
|
|
|
|
|
- ids.value = selection.map(item => item.id)
|
|
|
|
|
- single.value = selection.length != 1
|
|
|
|
|
- multiple.value = !selection.length
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/** 新增按钮操作 */
|
|
|
|
|
-function handleAdd() {
|
|
|
|
|
|
|
+/** 查看详情 */
|
|
|
|
|
+function handleDetail(row) {
|
|
|
reset()
|
|
reset()
|
|
|
- open.value = true
|
|
|
|
|
- title.value = "添加访客登记记录"
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/** 修改按钮操作 */
|
|
|
|
|
-function handleUpdate(row) {
|
|
|
|
|
- reset()
|
|
|
|
|
- const _id = row.id || ids.value
|
|
|
|
|
|
|
+ const _id = row.id
|
|
|
getVisitorRecord(_id).then(response => {
|
|
getVisitorRecord(_id).then(response => {
|
|
|
- form.value = response.data
|
|
|
|
|
- open.value = true
|
|
|
|
|
- title.value = "修改访客登记记录"
|
|
|
|
|
- })
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-/** 提交按钮 */
|
|
|
|
|
-function submitForm() {
|
|
|
|
|
- proxy.$refs["visitorRecordRef"].validate(valid => {
|
|
|
|
|
- if (valid) {
|
|
|
|
|
- if (form.value.id != null) {
|
|
|
|
|
- updateVisitorRecord(form.value).then(() => {
|
|
|
|
|
- proxy.$modal.msgSuccess("修改成功")
|
|
|
|
|
- open.value = false
|
|
|
|
|
- getList()
|
|
|
|
|
- })
|
|
|
|
|
- } else {
|
|
|
|
|
- addVisitorRecord(form.value).then(() => {
|
|
|
|
|
- proxy.$modal.msgSuccess("新增成功")
|
|
|
|
|
- open.value = false
|
|
|
|
|
- getList()
|
|
|
|
|
- })
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ const _data = response.data || {}
|
|
|
|
|
+ form.value = {
|
|
|
|
|
+ ..._data,
|
|
|
|
|
+ visitType: _data.visitType != null ? String(_data.visitType) : null,
|
|
|
|
|
+ registerType: _data.registerType != null ? String(_data.registerType) : null
|
|
|
}
|
|
}
|
|
|
|
|
+ open.value = true
|
|
|
|
|
+ title.value = "访客记录详情"
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-/** 删除按钮操作 */
|
|
|
|
|
-function handleDelete(row) {
|
|
|
|
|
- const _ids = row.id || ids.value
|
|
|
|
|
- proxy.$modal.confirm('是否确认删除访客登记记录编号为"' + _ids + '"的数据项?').then(function() {
|
|
|
|
|
- return delVisitorRecord(_ids)
|
|
|
|
|
- }).then(() => {
|
|
|
|
|
- getList()
|
|
|
|
|
- proxy.$modal.msgSuccess("删除成功")
|
|
|
|
|
- }).catch(() => {})
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
/** 导出按钮操作 */
|
|
/** 导出按钮操作 */
|
|
|
function handleExport() {
|
|
function handleExport() {
|
|
|
proxy.download('base/visitorRecord/export', {
|
|
proxy.download('base/visitorRecord/export', {
|
|
|
...queryParams.value
|
|
...queryParams.value
|
|
|
- }, `visitorRecord_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
|
+ }, `访客记录_${new Date().getTime()}.xlsx`)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
getList()
|
|
getList()
|
|
|
</script>
|
|
</script>
|
|
|
|
|
+
|
|
|
|
|
+<style scoped>
|
|
|
|
|
+.app-container {
|
|
|
|
|
+ padding: 20px;
|
|
|
|
|
+}
|
|
|
|
|
+:deep(.el-table .cell) {
|
|
|
|
|
+ line-height: 22px;
|
|
|
|
|
+}
|
|
|
|
|
+</style>
|