新增黑名单,进出场记录 #4
67
src/api/parking/appearancerecord/index.ts
Normal file
67
src/api/parking/appearancerecord/index.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 出场记录 VO
|
||||
export interface AppearanceRecordVO {
|
||||
id: number // id
|
||||
orderId: string // 入场记录编号
|
||||
parkNumber: string // 停车场编号
|
||||
operatorId: string // 操作员 Id
|
||||
operatorName: string // 操作员姓名
|
||||
invoiceNo: string // 发票号码
|
||||
plate: string // 车牌
|
||||
idCard: string // 证件号码
|
||||
inTime: string // 入场时间
|
||||
outTime: string // 出场时间
|
||||
inImage: string // 入场图片名
|
||||
outImage: string // 出场图片名
|
||||
inChannel: string // 入口通道名称
|
||||
outChannel: string // 出口通道名称
|
||||
openGateMode: string // 抬杆模式
|
||||
matchMode: string // 匹配模式
|
||||
charge: string // 总停车费
|
||||
onLineCharge: string // 线上总收费
|
||||
offLineCharge: string // 线下总收费
|
||||
profitChargeTotal: string // 线上线下金额和时间优惠累计抵扣值
|
||||
onLineProfitChargeNum: string // 线上累计优惠金额总面值
|
||||
onLineProfitChargeValue: string // 线上累计优惠金额总抵扣值
|
||||
offLineProfitChargeNum: string // 线下累计优惠金额总面值
|
||||
offLineProfitChargeValue: string // 线下累计优惠金额总抵扣值
|
||||
onLineProfitTimeNum: string // 线上累计优惠时间
|
||||
onLineProfitTimeValue: string // 线上累计优惠时间总抵扣值
|
||||
offLineProfitTimeNum: string // 线下累计优惠时间
|
||||
offLineProfitTimeValue: string // 线下累计优惠时间总抵扣值
|
||||
costTime: string // 时间
|
||||
}
|
||||
|
||||
// 出场记录 API
|
||||
export const AppearanceRecordApi = {
|
||||
// 查询出场记录分页
|
||||
getAppearanceRecordPage: async (params: any) => {
|
||||
return await request.get({ url: `/parking/appearance-record/page`, params })
|
||||
},
|
||||
|
||||
// 查询出场记录详情
|
||||
getAppearanceRecord: async (id: number) => {
|
||||
return await request.get({ url: `/parking/appearance-record/get?id=` + id })
|
||||
},
|
||||
|
||||
// 新增出场记录
|
||||
createAppearanceRecord: async (data: AppearanceRecordVO) => {
|
||||
return await request.post({ url: `/parking/appearance-record/create`, data })
|
||||
},
|
||||
|
||||
// 修改出场记录
|
||||
updateAppearanceRecord: async (data: AppearanceRecordVO) => {
|
||||
return await request.put({ url: `/parking/appearance-record/update`, data })
|
||||
},
|
||||
|
||||
// 删除出场记录
|
||||
deleteAppearanceRecord: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/appearance-record/delete?id=` + id })
|
||||
},
|
||||
|
||||
// 导出出场记录 Excel
|
||||
exportAppearanceRecord: async (params) => {
|
||||
return await request.download({ url: `/parking/appearance-record/export-excel`, params })
|
||||
},
|
||||
}
|
43
src/api/parking/black/index.ts
Normal file
43
src/api/parking/black/index.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 黑名单 VO
|
||||
export interface BlackVO {
|
||||
id: number // id
|
||||
parkNumber: string // 场库编号
|
||||
source: string // 来源
|
||||
plate: string // 车牌号
|
||||
memo: string // 备注
|
||||
}
|
||||
|
||||
// 黑名单 API
|
||||
export const BlackApi = {
|
||||
// 查询黑名单分页
|
||||
getBlackPage: async (params: any) => {
|
||||
return await request.get({ url: `/parking/black/page`, params })
|
||||
},
|
||||
|
||||
// 查询黑名单详情
|
||||
getBlack: async (id: number) => {
|
||||
return await request.get({ url: `/parking/black/get?id=` + id })
|
||||
},
|
||||
|
||||
// 新增黑名单
|
||||
createBlack: async (data: BlackVO) => {
|
||||
return await request.post({ url: `/parking/black/create`, data })
|
||||
},
|
||||
|
||||
// 修改黑名单
|
||||
updateBlack: async (data: BlackVO) => {
|
||||
return await request.put({ url: `/parking/black/update`, data })
|
||||
},
|
||||
|
||||
// 删除黑名单
|
||||
deleteBlack: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/black/delete?id=` + id })
|
||||
},
|
||||
|
||||
// 导出黑名单 Excel
|
||||
exportBlack: async (params) => {
|
||||
return await request.download({ url: `/parking/black/export-excel`, params })
|
||||
},
|
||||
}
|
51
src/api/parking/entryrecord/index.ts
Normal file
51
src/api/parking/entryrecord/index.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 入场记录 VO
|
||||
export interface EntryRecordVO {
|
||||
id: number // 入场id
|
||||
orderId: string // 入场记录编号
|
||||
parkNumber: string // 场库编号
|
||||
plate: string // 车牌
|
||||
idCard: string // 证件号码
|
||||
inTime: string // 入场时间
|
||||
inChannel: string // 入场通道名称
|
||||
inImage: string // 入场图片名
|
||||
visitReason: string // 访问事由
|
||||
openGateMode: string // 放行类型
|
||||
matchMode: string // 匹配模式
|
||||
barriorOpen: string // 是否开闸
|
||||
costTime: string // 开闸耗时
|
||||
}
|
||||
|
||||
// 入场记录 API
|
||||
export const EntryRecordApi = {
|
||||
// 查询入场记录分页
|
||||
getEntryRecordPage: async (params: any) => {
|
||||
return await request.get({ url: `/parking/entry-record/page`, params })
|
||||
},
|
||||
|
||||
// 查询入场记录详情
|
||||
getEntryRecord: async (id: number) => {
|
||||
return await request.get({ url: `/parking/entry-record/get?id=` + id })
|
||||
},
|
||||
|
||||
// 新增入场记录
|
||||
createEntryRecord: async (data: EntryRecordVO) => {
|
||||
return await request.post({ url: `/parking/entry-record/create`, data })
|
||||
},
|
||||
|
||||
// 修改入场记录
|
||||
updateEntryRecord: async (data: EntryRecordVO) => {
|
||||
return await request.put({ url: `/parking/entry-record/update`, data })
|
||||
},
|
||||
|
||||
// 删除入场记录
|
||||
deleteEntryRecord: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/entry-record/delete?id=` + id })
|
||||
},
|
||||
|
||||
// 导出入场记录 Excel
|
||||
exportEntryRecord: async (params) => {
|
||||
return await request.download({ url: `/parking/entry-record/export-excel`, params })
|
||||
},
|
||||
}
|
@ -38,7 +38,7 @@ export const WhiteApi = {
|
||||
|
||||
// 删除白名单管理
|
||||
deleteWhite: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/white/delete?id=` + id })
|
||||
return await request.delete({ url: `/parking/white/delete?fixedId=` + id })
|
||||
},
|
||||
|
||||
// 导出白名单管理 Excel
|
||||
|
@ -116,6 +116,9 @@ export enum DICT_TYPE {
|
||||
OBJECT_TYPE = 'object_type',
|
||||
WARNING_TYPE = 'warning_type',
|
||||
|
||||
//黑名单来源
|
||||
BLACK_SOURCE = 'black_source',
|
||||
|
||||
// ========== SYSTEM 模块 ==========
|
||||
SYSTEM_USER_SEX = 'system_user_sex',
|
||||
SYSTEM_MENU_TYPE = 'system_menu_type',
|
||||
|
262
src/views/parking/appearancerecord/AppearanceRecordForm.vue
Normal file
262
src/views/parking/appearancerecord/AppearanceRecordForm.vue
Normal file
@ -0,0 +1,262 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
label-width="100px"
|
||||
v-loading="formLoading"
|
||||
>
|
||||
<el-form-item label="入场记录编号" prop="orderId">
|
||||
<el-input v-model="formData.orderId" placeholder="请输入入场记录编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="停车场编号" prop="parkNumber">
|
||||
<el-input v-model="formData.parkNumber" placeholder="请输入停车场编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="操作员 Id" prop="operatorId">
|
||||
<el-input v-model="formData.operatorId" placeholder="请输入操作员 Id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="操作员姓名" prop="operatorName">
|
||||
<el-input v-model="formData.operatorName" placeholder="请输入操作员姓名" />
|
||||
</el-form-item>
|
||||
<el-form-item label="发票号码" prop="invoiceNo">
|
||||
<el-input v-model="formData.invoiceNo" placeholder="请输入发票号码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌" prop="plate">
|
||||
<el-input v-model="formData.plate" placeholder="请输入车牌" />
|
||||
</el-form-item>
|
||||
<el-form-item label="证件号码" prop="idCard">
|
||||
<el-input v-model="formData.idCard" placeholder="请输入证件号码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入场时间" prop="inTime">
|
||||
<el-date-picker
|
||||
v-model="formData.inTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择入场时间"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="出场时间" prop="outTime">
|
||||
<el-date-picker
|
||||
v-model="formData.outTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择出场时间"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="入场图片名" prop="inImage">
|
||||
<UploadImg v-model="formData.inImage" />
|
||||
</el-form-item>
|
||||
<el-form-item label="出场图片名" prop="outImage">
|
||||
<UploadImg v-model="formData.outImage" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入口通道名称" prop="inChannel">
|
||||
<el-input v-model="formData.inChannel" placeholder="请输入入口通道名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="出口通道名称" prop="outChannel">
|
||||
<el-input v-model="formData.outChannel" placeholder="请输入出口通道名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="抬杆模式" prop="openGateMode">
|
||||
<el-input v-model="formData.openGateMode" placeholder="请输入抬杆模式" />
|
||||
</el-form-item>
|
||||
<el-form-item label="匹配模式" prop="matchMode">
|
||||
<el-input v-model="formData.matchMode" placeholder="请输入匹配模式" />
|
||||
</el-form-item>
|
||||
<el-form-item label="总停车费" prop="charge">
|
||||
<el-input v-model="formData.charge" placeholder="请输入总停车费" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上总收费" prop="onLineCharge">
|
||||
<el-input v-model="formData.onLineCharge" placeholder="请输入线上总收费" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线下总收费" prop="offLineCharge">
|
||||
<el-input v-model="formData.offLineCharge" placeholder="请输入线下总收费" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上线下金额和时间优惠累计抵扣值" prop="profitChargeTotal">
|
||||
<el-input v-model="formData.profitChargeTotal" placeholder="请输入线上线下金额和时间优惠累计抵扣值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠金额总面值" prop="onLineProfitChargeNum">
|
||||
<el-input v-model="formData.onLineProfitChargeNum" placeholder="请输入线上累计优惠金额总面值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠金额总抵扣值" prop="onLineProfitChargeValue">
|
||||
<el-input v-model="formData.onLineProfitChargeValue" placeholder="请输入线上累计优惠金额总抵扣值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠金额总面值" prop="offLineProfitChargeNum">
|
||||
<el-input v-model="formData.offLineProfitChargeNum" placeholder="请输入线下累计优惠金额总面值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠金额总抵扣值" prop="offLineProfitChargeValue">
|
||||
<el-input v-model="formData.offLineProfitChargeValue" placeholder="请输入线下累计优惠金额总抵扣值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠时间" prop="onLineProfitTimeNum">
|
||||
<el-input v-model="formData.onLineProfitTimeNum" placeholder="请输入线上累计优惠时间" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠时间总抵扣值" prop="onLineProfitTimeValue">
|
||||
<el-input v-model="formData.onLineProfitTimeValue" placeholder="请输入线上累计优惠时间总抵扣值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠时间" prop="offLineProfitTimeNum">
|
||||
<el-input v-model="formData.offLineProfitTimeNum" placeholder="请输入线下累计优惠时间" />
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠时间总抵扣值" prop="offLineProfitTimeValue">
|
||||
<el-input v-model="formData.offLineProfitTimeValue" placeholder="请输入线下累计优惠时间总抵扣值" />
|
||||
</el-form-item>
|
||||
<el-form-item label="时间" prop="costTime">
|
||||
<el-date-picker
|
||||
v-model="formData.costTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择时间"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { AppearanceRecordApi, AppearanceRecordVO } from '@/api/parking/appearancerecord'
|
||||
|
||||
/** 出场记录 表单 */
|
||||
defineOptions({ name: 'AppearanceRecordForm' })
|
||||
|
||||
const { t } = useI18n() // 国际化
|
||||
const message = useMessage() // 消息弹窗
|
||||
|
||||
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||
const dialogTitle = ref('') // 弹窗的标题
|
||||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||
const formData = ref({
|
||||
id: undefined,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
operatorId: undefined,
|
||||
operatorName: undefined,
|
||||
invoiceNo: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: undefined,
|
||||
outTime: undefined,
|
||||
inImage: undefined,
|
||||
outImage: undefined,
|
||||
inChannel: undefined,
|
||||
outChannel: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
charge: undefined,
|
||||
onLineCharge: undefined,
|
||||
offLineCharge: undefined,
|
||||
profitChargeTotal: undefined,
|
||||
onLineProfitChargeNum: undefined,
|
||||
onLineProfitChargeValue: undefined,
|
||||
offLineProfitChargeNum: undefined,
|
||||
offLineProfitChargeValue: undefined,
|
||||
onLineProfitTimeNum: undefined,
|
||||
onLineProfitTimeValue: undefined,
|
||||
offLineProfitTimeNum: undefined,
|
||||
offLineProfitTimeValue: undefined,
|
||||
costTime: undefined,
|
||||
})
|
||||
const formRules = reactive({
|
||||
orderId: [{ required: true, message: '入场记录编号不能为空', trigger: 'blur' }],
|
||||
parkNumber: [{ required: true, message: '停车场编号不能为空', trigger: 'blur' }],
|
||||
plate: [{ required: true, message: '车牌不能为空', trigger: 'blur' }],
|
||||
outTime: [{ required: true, message: '出场时间不能为空', trigger: 'blur' }],
|
||||
outImage: [{ required: true, message: '出场图片名不能为空', trigger: 'blur' }],
|
||||
outChannel: [{ required: true, message: '出口通道名称不能为空', trigger: 'blur' }],
|
||||
openGateMode: [{ required: true, message: '抬杆模式不能为空', trigger: 'blur' }],
|
||||
matchMode: [{ required: true, message: '匹配模式不能为空', trigger: 'blur' }],
|
||||
charge: [{ required: true, message: '总停车费不能为空', trigger: 'blur' }],
|
||||
onLineCharge: [{ required: true, message: '线上总收费不能为空', trigger: 'blur' }],
|
||||
offLineCharge: [{ required: true, message: '线下总收费不能为空', trigger: 'blur' }],
|
||||
profitChargeTotal: [{ required: true, message: '线上线下金额和时间优惠累计抵扣值不能为空', trigger: 'blur' }],
|
||||
onLineProfitChargeNum: [{ required: true, message: '线上累计优惠金额总面值不能为空', trigger: 'blur' }],
|
||||
onLineProfitChargeValue: [{ required: true, message: '线上累计优惠金额总抵扣值不能为空', trigger: 'blur' }],
|
||||
offLineProfitChargeNum: [{ required: true, message: '线下累计优惠金额总面值不能为空', trigger: 'blur' }],
|
||||
offLineProfitChargeValue: [{ required: true, message: '线下累计优惠金额总抵扣值不能为空', trigger: 'blur' }],
|
||||
onLineProfitTimeNum: [{ required: true, message: '线上累计优惠时间不能为空', trigger: 'blur' }],
|
||||
onLineProfitTimeValue: [{ required: true, message: '线上累计优惠时间总抵扣值不能为空', trigger: 'blur' }],
|
||||
offLineProfitTimeNum: [{ required: true, message: '线下累计优惠时间不能为空', trigger: 'blur' }],
|
||||
offLineProfitTimeValue: [{ required: true, message: '线下累计优惠时间总抵扣值不能为空', trigger: 'blur' }],
|
||||
costTime: [{ required: true, message: '时间不能为空', trigger: 'blur' }],
|
||||
})
|
||||
const formRef = ref() // 表单 Ref
|
||||
|
||||
/** 打开弹窗 */
|
||||
const open = async (type: string, id?: number) => {
|
||||
dialogVisible.value = true
|
||||
dialogTitle.value = t('action.' + type)
|
||||
formType.value = type
|
||||
resetForm()
|
||||
// 修改时,设置数据
|
||||
if (id) {
|
||||
formLoading.value = true
|
||||
try {
|
||||
formData.value = await AppearanceRecordApi.getAppearanceRecord(id)
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
}
|
||||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||
|
||||
/** 提交表单 */
|
||||
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||
const submitForm = async () => {
|
||||
// 校验表单
|
||||
await formRef.value.validate()
|
||||
// 提交请求
|
||||
formLoading.value = true
|
||||
try {
|
||||
const data = formData.value as unknown as AppearanceRecordVO
|
||||
if (formType.value === 'create') {
|
||||
await AppearanceRecordApi.createAppearanceRecord(data)
|
||||
message.success(t('common.createSuccess'))
|
||||
} else {
|
||||
await AppearanceRecordApi.updateAppearanceRecord(data)
|
||||
message.success(t('common.updateSuccess'))
|
||||
}
|
||||
dialogVisible.value = false
|
||||
// 发送操作成功的事件
|
||||
emit('success')
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 重置表单 */
|
||||
const resetForm = () => {
|
||||
formData.value = {
|
||||
id: undefined,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
operatorId: undefined,
|
||||
operatorName: undefined,
|
||||
invoiceNo: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: undefined,
|
||||
outTime: undefined,
|
||||
inImage: undefined,
|
||||
outImage: undefined,
|
||||
inChannel: undefined,
|
||||
outChannel: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
charge: undefined,
|
||||
onLineCharge: undefined,
|
||||
offLineCharge: undefined,
|
||||
profitChargeTotal: undefined,
|
||||
onLineProfitChargeNum: undefined,
|
||||
onLineProfitChargeValue: undefined,
|
||||
offLineProfitChargeNum: undefined,
|
||||
offLineProfitChargeValue: undefined,
|
||||
onLineProfitTimeNum: undefined,
|
||||
onLineProfitTimeValue: undefined,
|
||||
offLineProfitTimeNum: undefined,
|
||||
offLineProfitTimeValue: undefined,
|
||||
costTime: undefined,
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
</script>
|
472
src/views/parking/appearancerecord/index.vue
Normal file
472
src/views/parking/appearancerecord/index.vue
Normal file
@ -0,0 +1,472 @@
|
||||
<template>
|
||||
<ContentWrap>
|
||||
<!-- 搜索工作栏 -->
|
||||
<el-form
|
||||
class="-mb-15px"
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="100px"
|
||||
>
|
||||
<el-form-item label="入场记录编号" prop="orderId">
|
||||
<el-input
|
||||
v-model="queryParams.orderId"
|
||||
placeholder="请输入入场记录编号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="停车场编号" prop="parkNumber">
|
||||
<el-input
|
||||
v-model="queryParams.parkNumber"
|
||||
placeholder="请输入停车场编号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作员 Id" prop="operatorId">
|
||||
<el-input
|
||||
v-model="queryParams.operatorId"
|
||||
placeholder="请输入操作员 Id"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作员姓名" prop="operatorName">
|
||||
<el-input
|
||||
v-model="queryParams.operatorName"
|
||||
placeholder="请输入操作员姓名"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="发票号码" prop="invoiceNo">
|
||||
<el-input
|
||||
v-model="queryParams.invoiceNo"
|
||||
placeholder="请输入发票号码"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌" prop="plate">
|
||||
<el-input
|
||||
v-model="queryParams.plate"
|
||||
placeholder="请输入车牌"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="证件号码" prop="idCard">
|
||||
<el-input
|
||||
v-model="queryParams.idCard"
|
||||
placeholder="请输入证件号码"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="入场时间" prop="inTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.inTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="出场时间" prop="outTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.outTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="入口通道名称" prop="inChannel">
|
||||
<el-input
|
||||
v-model="queryParams.inChannel"
|
||||
placeholder="请输入入口通道名称"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="出口通道名称" prop="outChannel">
|
||||
<el-input
|
||||
v-model="queryParams.outChannel"
|
||||
placeholder="请输入出口通道名称"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="抬杆模式" prop="openGateMode">
|
||||
<el-input
|
||||
v-model="queryParams.openGateMode"
|
||||
placeholder="请输入抬杆模式"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="匹配模式" prop="matchMode">
|
||||
<el-input
|
||||
v-model="queryParams.matchMode"
|
||||
placeholder="请输入匹配模式"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="总停车费" prop="charge">
|
||||
<el-input
|
||||
v-model="queryParams.charge"
|
||||
placeholder="请输入总停车费"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上总收费" prop="onLineCharge">
|
||||
<el-input
|
||||
v-model="queryParams.onLineCharge"
|
||||
placeholder="请输入线上总收费"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线下总收费" prop="offLineCharge">
|
||||
<el-input
|
||||
v-model="queryParams.offLineCharge"
|
||||
placeholder="请输入线下总收费"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上线下金额和时间优惠累计抵扣值" prop="profitChargeTotal">
|
||||
<el-input
|
||||
v-model="queryParams.profitChargeTotal"
|
||||
placeholder="请输入线上线下金额和时间优惠累计抵扣值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠金额总面值" prop="onLineProfitChargeNum">
|
||||
<el-input
|
||||
v-model="queryParams.onLineProfitChargeNum"
|
||||
placeholder="请输入线上累计优惠金额总面值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠金额总抵扣值" prop="onLineProfitChargeValue">
|
||||
<el-input
|
||||
v-model="queryParams.onLineProfitChargeValue"
|
||||
placeholder="请输入线上累计优惠金额总抵扣值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠金额总面值" prop="offLineProfitChargeNum">
|
||||
<el-input
|
||||
v-model="queryParams.offLineProfitChargeNum"
|
||||
placeholder="请输入线下累计优惠金额总面值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠金额总抵扣值" prop="offLineProfitChargeValue">
|
||||
<el-input
|
||||
v-model="queryParams.offLineProfitChargeValue"
|
||||
placeholder="请输入线下累计优惠金额总抵扣值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠时间" prop="onLineProfitTimeNum">
|
||||
<el-input
|
||||
v-model="queryParams.onLineProfitTimeNum"
|
||||
placeholder="请输入线上累计优惠时间"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线上累计优惠时间总抵扣值" prop="onLineProfitTimeValue">
|
||||
<el-input
|
||||
v-model="queryParams.onLineProfitTimeValue"
|
||||
placeholder="请输入线上累计优惠时间总抵扣值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠时间" prop="offLineProfitTimeNum">
|
||||
<el-input
|
||||
v-model="queryParams.offLineProfitTimeNum"
|
||||
placeholder="请输入线下累计优惠时间"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="线下累计优惠时间总抵扣值" prop="offLineProfitTimeValue">
|
||||
<el-input
|
||||
v-model="queryParams.offLineProfitTimeValue"
|
||||
placeholder="请输入线下累计优惠时间总抵扣值"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<!-- <el-form-item label="时间" prop="costTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.costTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item>
|
||||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
@click="openForm('create')"
|
||||
v-hasPermi="['parking:appearance-record:create']"
|
||||
>
|
||||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||
</el-button>
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
@click="handleExport"
|
||||
:loading="exportLoading"
|
||||
v-hasPermi="['parking:appearance-record:export']"
|
||||
>
|
||||
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||
</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 列表 -->
|
||||
<ContentWrap>
|
||||
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
||||
<el-table-column label="ID" align="center" prop="id" />
|
||||
<el-table-column label="入场记录编号" align="center" prop="orderId" width='110px' />
|
||||
<el-table-column label="停车场编号" align="center" prop="parkNumber" width='110px'/>
|
||||
<el-table-column label="操作员 Id" align="center" prop="operatorId" width='110px' />
|
||||
<el-table-column label="操作员姓名" align="center" prop="operatorName" width='110px' />
|
||||
<el-table-column label="发票号码" align="center" prop="invoiceNo" />
|
||||
<el-table-column label="车牌" align="center" prop="plate" />
|
||||
<el-table-column label="证件号码" align="center" prop="idCard" />
|
||||
<el-table-column label="入场时间" align="center" prop="inTime" />
|
||||
<el-table-column label="出场时间" align="center" prop="outTime" />
|
||||
<el-table-column label="入场图片名" align="center" prop="inImage" width='110px'/>
|
||||
<el-table-column label="出场图片名" align="center" prop="outImage" width='110px'/>
|
||||
<el-table-column label="入口通道名称" align="center" prop="inChannel" width='110px'/>
|
||||
<el-table-column label="出口通道名称" align="center" prop="outChannel" width='110px'/>
|
||||
<el-table-column label="抬杆模式" align="center" prop="openGateMode" />
|
||||
<el-table-column label="匹配模式" align="center" prop="matchMode" />
|
||||
<el-table-column label="总停车费" align="center" prop="charge" />
|
||||
<el-table-column label="线上总收费" align="center" prop="onLineCharge" width='110px'/>
|
||||
<el-table-column label="线下总收费" align="center" prop="offLineCharge" width='110px'/>
|
||||
<!-- <el-table-column label="线上线下金额和时间优惠累计抵扣值" align="center" prop="profitChargeTotal" />
|
||||
<el-table-column label="线上累计优惠金额总面值" align="center" prop="onLineProfitChargeNum" />
|
||||
<el-table-column label="线上累计优惠金额总抵扣值" align="center" prop="onLineProfitChargeValue" />
|
||||
<el-table-column label="线下累计优惠金额总面值" align="center" prop="offLineProfitChargeNum" />
|
||||
<el-table-column label="线下累计优惠金额总抵扣值" align="center" prop="offLineProfitChargeValue" />
|
||||
<el-table-column label="线上累计优惠时间" align="center" prop="onLineProfitTimeNum" />
|
||||
<el-table-column label="线上累计优惠时间总抵扣值" align="center" prop="onLineProfitTimeValue" />
|
||||
<el-table-column label="线下累计优惠时间" align="center" prop="offLineProfitTimeNum" />
|
||||
<el-table-column label="线下累计优惠时间总抵扣值" align="center" prop="offLineProfitTimeValue" /> -->
|
||||
<el-table-column label="时间" align="center" prop="costTime" />
|
||||
<el-table-column
|
||||
label="创建时间"
|
||||
align="center"
|
||||
prop="createTime"
|
||||
:formatter="dateFormatter"
|
||||
width="180px"
|
||||
/>
|
||||
<el-table-column label="操作" align="center" fixed="right" width="110">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="openForm('update', scope.row.id)"
|
||||
v-hasPermi="['parking:appearance-record:update']"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete(scope.row.id)"
|
||||
v-hasPermi="['parking:appearance-record:delete']"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 表单弹窗:添加/修改 -->
|
||||
<AppearanceRecordForm ref="formRef" @success="getList" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { dateFormatter } from '@/utils/formatTime'
|
||||
import download from '@/utils/download'
|
||||
import { AppearanceRecordApi, AppearanceRecordVO } from '@/api/parking/appearancerecord'
|
||||
import AppearanceRecordForm from './AppearanceRecordForm.vue'
|
||||
|
||||
/** 出场记录 列表 */
|
||||
defineOptions({ name: 'AppearanceRecord' })
|
||||
|
||||
const message = useMessage() // 消息弹窗
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
const loading = ref(true) // 列表的加载中
|
||||
const list = ref<AppearanceRecordVO[]>([]) // 列表的数据
|
||||
const total = ref(0) // 列表的总页数
|
||||
const queryParams = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
operatorId: undefined,
|
||||
operatorName: undefined,
|
||||
invoiceNo: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: [],
|
||||
outTime: [],
|
||||
inImage: undefined,
|
||||
outImage: undefined,
|
||||
inChannel: undefined,
|
||||
outChannel: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
charge: undefined,
|
||||
onLineCharge: undefined,
|
||||
offLineCharge: undefined,
|
||||
profitChargeTotal: undefined,
|
||||
onLineProfitChargeNum: undefined,
|
||||
onLineProfitChargeValue: undefined,
|
||||
offLineProfitChargeNum: undefined,
|
||||
offLineProfitChargeValue: undefined,
|
||||
onLineProfitTimeNum: undefined,
|
||||
onLineProfitTimeValue: undefined,
|
||||
offLineProfitTimeNum: undefined,
|
||||
offLineProfitTimeValue: undefined,
|
||||
costTime: [],
|
||||
createTime: [],
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
|
||||
/** 查询列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
const data = await AppearanceRecordApi.getAppearanceRecordPage(queryParams)
|
||||
list.value = data.list
|
||||
total.value = data.total
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value.resetFields()
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 添加/修改操作 */
|
||||
const formRef = ref()
|
||||
const openForm = (type: string, id?: number) => {
|
||||
formRef.value.open(type, id)
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (id: number) => {
|
||||
try {
|
||||
// 删除的二次确认
|
||||
await message.delConfirm()
|
||||
// 发起删除
|
||||
await AppearanceRecordApi.deleteAppearanceRecord(id)
|
||||
message.success(t('common.delSuccess'))
|
||||
// 刷新列表
|
||||
await getList()
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = async () => {
|
||||
try {
|
||||
// 导出的二次确认
|
||||
await message.exportConfirm()
|
||||
// 发起导出
|
||||
exportLoading.value = true
|
||||
const data = await AppearanceRecordApi.exportAppearanceRecord(queryParams)
|
||||
download.excel(data, '出场记录.xls')
|
||||
} catch {
|
||||
} finally {
|
||||
exportLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 初始化 **/
|
||||
onMounted(() => {
|
||||
getList()
|
||||
})
|
||||
</script>
|
114
src/views/parking/black/BlackForm.vue
Normal file
114
src/views/parking/black/BlackForm.vue
Normal file
@ -0,0 +1,114 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
label-width="100px"
|
||||
v-loading="formLoading"
|
||||
>
|
||||
<el-form-item label="场库编号" prop="parkNumber">
|
||||
<el-input v-model="formData.parkNumber" placeholder="请输入场库编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="来源" prop="source">
|
||||
<el-select v-model="formData.source" placeholder="请选择来源">
|
||||
<el-option
|
||||
v-for="dict in getStrDictOptions(DICT_TYPE.BLACK_SOURCE)"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌号" prop="plate">
|
||||
<el-input v-model="formData.plate" placeholder="请输入车牌号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="memo">
|
||||
<el-input v-model="formData.memo" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { getStrDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||
import { BlackApi, BlackVO } from '@/api/parking/black'
|
||||
|
||||
/** 黑名单 表单 */
|
||||
defineOptions({ name: 'BlackForm' })
|
||||
|
||||
const { t } = useI18n() // 国际化
|
||||
const message = useMessage() // 消息弹窗
|
||||
|
||||
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||
const dialogTitle = ref('') // 弹窗的标题
|
||||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||
const formData = ref({
|
||||
id: undefined,
|
||||
parkNumber: undefined,
|
||||
source: undefined,
|
||||
plate: undefined,
|
||||
memo: undefined,
|
||||
})
|
||||
const formRules = reactive({
|
||||
})
|
||||
const formRef = ref() // 表单 Ref
|
||||
|
||||
/** 打开弹窗 */
|
||||
const open = async (type: string, id?: number) => {
|
||||
dialogVisible.value = true
|
||||
dialogTitle.value = t('action.' + type)
|
||||
formType.value = type
|
||||
resetForm()
|
||||
// 修改时,设置数据
|
||||
if (id) {
|
||||
formLoading.value = true
|
||||
try {
|
||||
formData.value = await BlackApi.getBlack(id)
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
}
|
||||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||
|
||||
/** 提交表单 */
|
||||
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||
const submitForm = async () => {
|
||||
// 校验表单
|
||||
await formRef.value.validate()
|
||||
// 提交请求
|
||||
formLoading.value = true
|
||||
try {
|
||||
const data = formData.value as unknown as BlackVO
|
||||
if (formType.value === 'create') {
|
||||
await BlackApi.createBlack(data)
|
||||
message.success(t('common.createSuccess'))
|
||||
} else {
|
||||
await BlackApi.updateBlack(data)
|
||||
message.success(t('common.updateSuccess'))
|
||||
}
|
||||
dialogVisible.value = false
|
||||
// 发送操作成功的事件
|
||||
emit('success')
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 重置表单 */
|
||||
const resetForm = () => {
|
||||
formData.value = {
|
||||
id: undefined,
|
||||
parkNumber: undefined,
|
||||
source: undefined,
|
||||
plate: undefined,
|
||||
memo: undefined,
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
</script>
|
231
src/views/parking/black/index.vue
Normal file
231
src/views/parking/black/index.vue
Normal file
@ -0,0 +1,231 @@
|
||||
<template>
|
||||
<ContentWrap>
|
||||
<!-- 搜索工作栏 -->
|
||||
<el-form
|
||||
class="-mb-15px"
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="场库编号" prop="parkNumber">
|
||||
<el-input
|
||||
v-model="queryParams.parkNumber"
|
||||
placeholder="请输入场库编号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="来源" prop="source">
|
||||
<el-select
|
||||
v-model="queryParams.source"
|
||||
placeholder="请选择来源"
|
||||
clearable
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option
|
||||
v-for="dict in getStrDictOptions(DICT_TYPE.BLACK_SOURCE)"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌号" prop="plate">
|
||||
<el-input
|
||||
v-model="queryParams.plate"
|
||||
placeholder="请输入车牌号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="备注" prop="memo">
|
||||
<el-input
|
||||
v-model="queryParams.memo"
|
||||
placeholder="请输入备注"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item> -->
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
@click="openForm('create')"
|
||||
v-hasPermi="['parking:black:create']"
|
||||
>
|
||||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||
</el-button>
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
@click="handleExport"
|
||||
:loading="exportLoading"
|
||||
v-hasPermi="['parking:black:export']"
|
||||
>
|
||||
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||
</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 列表 -->
|
||||
<ContentWrap>
|
||||
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
||||
<!-- <el-table-column label="id" align="center" prop="id" /> -->
|
||||
<el-table-column label="场库编号" align="center" prop="parkNumber" />
|
||||
<el-table-column label="来源" align="center" prop="source">
|
||||
<template #default="scope">
|
||||
<dict-tag :type="DICT_TYPE.BLACK_SOURCE" :value="scope.row.source" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="车牌号" align="center" prop="plate" />
|
||||
<el-table-column label="备注" align="center" prop="memo" />
|
||||
<el-table-column
|
||||
label="创建时间"
|
||||
align="center"
|
||||
prop="createTime"
|
||||
:formatter="dateFormatter"
|
||||
width="180px"
|
||||
/>
|
||||
<el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="openForm('update', scope.row.id)"
|
||||
v-hasPermi="['parking:black:update']"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete(scope.row.id)"
|
||||
v-hasPermi="['parking:black:delete']"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 表单弹窗:添加/修改 -->
|
||||
<BlackForm ref="formRef" @success="getList" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { getStrDictOptions, DICT_TYPE } from '@/utils/dict'
|
||||
import { dateFormatter } from '@/utils/formatTime'
|
||||
import download from '@/utils/download'
|
||||
import { BlackApi, BlackVO } from '@/api/parking/black'
|
||||
import BlackForm from './BlackForm.vue'
|
||||
|
||||
/** 黑名单 列表 */
|
||||
defineOptions({ name: 'Black' })
|
||||
|
||||
const message = useMessage() // 消息弹窗
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
const loading = ref(true) // 列表的加载中
|
||||
const list = ref<BlackVO[]>([]) // 列表的数据
|
||||
const total = ref(0) // 列表的总页数
|
||||
const queryParams = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
parkNumber: undefined,
|
||||
source: undefined,
|
||||
plate: undefined,
|
||||
memo: undefined,
|
||||
createTime: [],
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
|
||||
/** 查询列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
const data = await BlackApi.getBlackPage(queryParams)
|
||||
list.value = data.list
|
||||
total.value = data.total
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value.resetFields()
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 添加/修改操作 */
|
||||
const formRef = ref()
|
||||
const openForm = (type: string, id?: number) => {
|
||||
formRef.value.open(type, id)
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (id: number) => {
|
||||
try {
|
||||
// 删除的二次确认
|
||||
await message.delConfirm()
|
||||
// 发起删除
|
||||
await BlackApi.deleteBlack(id)
|
||||
message.success(t('common.delSuccess'))
|
||||
// 刷新列表
|
||||
await getList()
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = async () => {
|
||||
try {
|
||||
// 导出的二次确认
|
||||
await message.exportConfirm()
|
||||
// 发起导出
|
||||
exportLoading.value = true
|
||||
const data = await BlackApi.exportBlack(queryParams)
|
||||
download.excel(data, '黑名单.xls')
|
||||
} catch {
|
||||
} finally {
|
||||
exportLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 初始化 **/
|
||||
onMounted(() => {
|
||||
getList()
|
||||
})
|
||||
</script>
|
168
src/views/parking/entryrecord/EntryRecordForm.vue
Normal file
168
src/views/parking/entryrecord/EntryRecordForm.vue
Normal file
@ -0,0 +1,168 @@
|
||||
<template>
|
||||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||||
<el-form
|
||||
ref="formRef"
|
||||
:model="formData"
|
||||
:rules="formRules"
|
||||
label-width="100px"
|
||||
v-loading="formLoading"
|
||||
>
|
||||
<el-form-item label="入场记录编号" prop="orderId">
|
||||
<el-input v-model="formData.orderId" placeholder="请输入入场记录编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="场库编号" prop="parkNumber">
|
||||
<el-input v-model="formData.parkNumber" placeholder="请输入场库编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌" prop="plate">
|
||||
<el-input v-model="formData.plate" placeholder="请输入车牌" />
|
||||
</el-form-item>
|
||||
<el-form-item label="证件号码" prop="idCard">
|
||||
<el-input v-model="formData.idCard" placeholder="请输入证件号码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入场时间" prop="inTime">
|
||||
<el-date-picker
|
||||
v-model="formData.inTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择入场时间"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="入场通道名称" prop="inChannel">
|
||||
<el-input v-model="formData.inChannel" placeholder="请输入入场通道名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入场图片名" prop="inImage">
|
||||
<UploadImg v-model="formData.inImage" />
|
||||
</el-form-item>
|
||||
<el-form-item label="访问事由" prop="visitReason">
|
||||
<el-input v-model="formData.visitReason" placeholder="请输入访问事由" />
|
||||
</el-form-item>
|
||||
<el-form-item label="放行类型" prop="openGateMode">
|
||||
<el-input v-model="formData.openGateMode" placeholder="请输入放行类型" />
|
||||
</el-form-item>
|
||||
<el-form-item label="匹配模式" prop="matchMode">
|
||||
<el-input v-model="formData.matchMode" placeholder="请输入匹配模式" />
|
||||
</el-form-item>
|
||||
<el-form-item label="是否开闸" prop="barriorOpen">
|
||||
<el-input v-model="formData.barriorOpen" placeholder="请输入是否开闸" />
|
||||
</el-form-item>
|
||||
<el-form-item label="开闸耗时" prop="costTime">
|
||||
<el-date-picker
|
||||
v-model="formData.costTime"
|
||||
type="date"
|
||||
value-format="x"
|
||||
placeholder="选择开闸耗时"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { EntryRecordApi, EntryRecordVO } from '@/api/parking/entryrecord'
|
||||
|
||||
/** 入场记录 表单 */
|
||||
defineOptions({ name: 'EntryRecordForm' })
|
||||
|
||||
const { t } = useI18n() // 国际化
|
||||
const message = useMessage() // 消息弹窗
|
||||
|
||||
const dialogVisible = ref(false) // 弹窗的是否展示
|
||||
const dialogTitle = ref('') // 弹窗的标题
|
||||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||||
const formData = ref({
|
||||
id: undefined,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: undefined,
|
||||
inChannel: undefined,
|
||||
inImage: undefined,
|
||||
visitReason: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
barriorOpen: undefined,
|
||||
costTime: undefined,
|
||||
})
|
||||
const formRules = reactive({
|
||||
orderId: [{ required: true, message: '入场记录编号不能为空', trigger: 'blur' }],
|
||||
parkNumber: [{ required: true, message: '场库编号不能为空', trigger: 'blur' }],
|
||||
plate: [{ required: true, message: '车牌不能为空', trigger: 'blur' }],
|
||||
idCard: [{ required: true, message: '证件号码不能为空', trigger: 'blur' }],
|
||||
inTime: [{ required: true, message: '入场时间不能为空', trigger: 'blur' }],
|
||||
inChannel: [{ required: true, message: '入场通道名称不能为空', trigger: 'blur' }],
|
||||
inImage: [{ required: true, message: '入场图片名不能为空', trigger: 'blur' }],
|
||||
visitReason: [{ required: true, message: '访问事由不能为空', trigger: 'blur' }],
|
||||
openGateMode: [{ required: true, message: '放行类型不能为空', trigger: 'blur' }],
|
||||
matchMode: [{ required: true, message: '匹配模式不能为空', trigger: 'blur' }],
|
||||
barriorOpen: [{ required: true, message: '是否开闸不能为空', trigger: 'blur' }],
|
||||
costTime: [{ required: true, message: '开闸耗时不能为空', trigger: 'blur' }],
|
||||
})
|
||||
const formRef = ref() // 表单 Ref
|
||||
|
||||
/** 打开弹窗 */
|
||||
const open = async (type: string, id?: number) => {
|
||||
dialogVisible.value = true
|
||||
dialogTitle.value = t('action.' + type)
|
||||
formType.value = type
|
||||
resetForm()
|
||||
// 修改时,设置数据
|
||||
if (id) {
|
||||
formLoading.value = true
|
||||
try {
|
||||
formData.value = await EntryRecordApi.getEntryRecord(id)
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
}
|
||||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||
|
||||
/** 提交表单 */
|
||||
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||||
const submitForm = async () => {
|
||||
// 校验表单
|
||||
await formRef.value.validate()
|
||||
// 提交请求
|
||||
formLoading.value = true
|
||||
try {
|
||||
const data = formData.value as unknown as EntryRecordVO
|
||||
if (formType.value === 'create') {
|
||||
await EntryRecordApi.createEntryRecord(data)
|
||||
message.success(t('common.createSuccess'))
|
||||
} else {
|
||||
await EntryRecordApi.updateEntryRecord(data)
|
||||
message.success(t('common.updateSuccess'))
|
||||
}
|
||||
dialogVisible.value = false
|
||||
// 发送操作成功的事件
|
||||
emit('success')
|
||||
} finally {
|
||||
formLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 重置表单 */
|
||||
const resetForm = () => {
|
||||
formData.value = {
|
||||
id: undefined,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: undefined,
|
||||
inChannel: undefined,
|
||||
inImage: undefined,
|
||||
visitReason: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
barriorOpen: undefined,
|
||||
costTime: undefined,
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
</script>
|
303
src/views/parking/entryrecord/index.vue
Normal file
303
src/views/parking/entryrecord/index.vue
Normal file
@ -0,0 +1,303 @@
|
||||
<template>
|
||||
<ContentWrap>
|
||||
<!-- 搜索工作栏 -->
|
||||
<el-form
|
||||
class="-mb-15px"
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="100px"
|
||||
>
|
||||
<el-form-item label="入场记录编号" prop="orderId">
|
||||
<el-input
|
||||
v-model="queryParams.orderId"
|
||||
placeholder="请输入入场记录编号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="场库编号" prop="parkNumber">
|
||||
<el-input
|
||||
v-model="queryParams.parkNumber"
|
||||
placeholder="请输入场库编号"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="车牌" prop="plate">
|
||||
<el-input
|
||||
v-model="queryParams.plate"
|
||||
placeholder="请输入车牌"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="证件号码" prop="idCard">
|
||||
<el-input
|
||||
v-model="queryParams.idCard"
|
||||
placeholder="请输入证件号码"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="入场时间" prop="inTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.inTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="入场通道名称" prop="inChannel">
|
||||
<el-input
|
||||
v-model="queryParams.inChannel"
|
||||
placeholder="请输入入场通道名称"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="访问事由" prop="visitReason">
|
||||
<el-input
|
||||
v-model="queryParams.visitReason"
|
||||
placeholder="请输入访问事由"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="放行类型" prop="openGateMode">
|
||||
<el-input
|
||||
v-model="queryParams.openGateMode"
|
||||
placeholder="请输入放行类型"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="匹配模式" prop="matchMode">
|
||||
<el-input
|
||||
v-model="queryParams.matchMode"
|
||||
placeholder="请输入匹配模式"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否开闸" prop="barriorOpen">
|
||||
<el-input
|
||||
v-model="queryParams.barriorOpen"
|
||||
placeholder="请输入是否开闸"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="开闸耗时" prop="costTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.costTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
type="daterange"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
@click="openForm('create')"
|
||||
v-hasPermi="['parking:entry-record:create']"
|
||||
>
|
||||
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
||||
</el-button>
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
@click="handleExport"
|
||||
:loading="exportLoading"
|
||||
v-hasPermi="['parking:entry-record:export']"
|
||||
>
|
||||
<Icon icon="ep:download" class="mr-5px" /> 导出
|
||||
</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 列表 -->
|
||||
<ContentWrap>
|
||||
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
||||
<el-table-column label="入场id" align="center" prop="id" />
|
||||
<el-table-column label="入场记录编号" align="center" prop="orderId" width='110px'/>
|
||||
<el-table-column label="场库编号" align="center" prop="parkNumber" />
|
||||
<el-table-column label="车牌" align="center" prop="plate" />
|
||||
<el-table-column label="证件号码" align="center" prop="idCard" />
|
||||
<el-table-column label="入场时间" align="center" prop="inTime" />
|
||||
<el-table-column label="入场通道名称" align="center" prop="inChannel" width='110px'/>
|
||||
<el-table-column label="入场图片名" align="center" prop="inImage" width='100px'/>
|
||||
<el-table-column label="访问事由" align="center" prop="visitReason" />
|
||||
<el-table-column label="放行类型" align="center" prop="openGateMode" />
|
||||
<el-table-column label="匹配模式" align="center" prop="matchMode" />
|
||||
<el-table-column label="是否开闸" align="center" prop="barriorOpen" />
|
||||
<el-table-column label="开闸耗时" align="center" prop="costTime" />
|
||||
<el-table-column
|
||||
label="创建时间"
|
||||
align="center"
|
||||
prop="createTime"
|
||||
:formatter="dateFormatter"
|
||||
width="180px"
|
||||
/>
|
||||
<el-table-column label="操作" align="center" fixed="right" width="110">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
@click="openForm('update', scope.row.id)"
|
||||
v-hasPermi="['parking:entry-record:update']"
|
||||
>
|
||||
编辑
|
||||
</el-button>
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete(scope.row.id)"
|
||||
v-hasPermi="['parking:entry-record:delete']"
|
||||
>
|
||||
删除
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<!-- 分页 -->
|
||||
<Pagination
|
||||
:total="total"
|
||||
v-model:page="queryParams.pageNo"
|
||||
v-model:limit="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</ContentWrap>
|
||||
|
||||
<!-- 表单弹窗:添加/修改 -->
|
||||
<EntryRecordForm ref="formRef" @success="getList" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { dateFormatter } from '@/utils/formatTime'
|
||||
import download from '@/utils/download'
|
||||
import { EntryRecordApi, EntryRecordVO } from '@/api/parking/entryrecord'
|
||||
import EntryRecordForm from './EntryRecordForm.vue'
|
||||
|
||||
/** 入场记录 列表 */
|
||||
defineOptions({ name: 'EntryRecord' })
|
||||
|
||||
const message = useMessage() // 消息弹窗
|
||||
const { t } = useI18n() // 国际化
|
||||
|
||||
const loading = ref(true) // 列表的加载中
|
||||
const list = ref<EntryRecordVO[]>([]) // 列表的数据
|
||||
const total = ref(0) // 列表的总页数
|
||||
const queryParams = reactive({
|
||||
pageNo: 1,
|
||||
pageSize: 10,
|
||||
orderId: undefined,
|
||||
parkNumber: undefined,
|
||||
plate: undefined,
|
||||
idCard: undefined,
|
||||
inTime: [],
|
||||
inChannel: undefined,
|
||||
inImage: undefined,
|
||||
visitReason: undefined,
|
||||
openGateMode: undefined,
|
||||
matchMode: undefined,
|
||||
barriorOpen: undefined,
|
||||
costTime: [],
|
||||
createTime: [],
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
|
||||
/** 查询列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true
|
||||
try {
|
||||
const data = await EntryRecordApi.getEntryRecordPage(queryParams)
|
||||
list.value = data.list
|
||||
total.value = data.total
|
||||
} finally {
|
||||
loading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.pageNo = 1
|
||||
getList()
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value.resetFields()
|
||||
handleQuery()
|
||||
}
|
||||
|
||||
/** 添加/修改操作 */
|
||||
const formRef = ref()
|
||||
const openForm = (type: string, id?: number) => {
|
||||
formRef.value.open(type, id)
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (id: number) => {
|
||||
try {
|
||||
// 删除的二次确认
|
||||
await message.delConfirm()
|
||||
// 发起删除
|
||||
await EntryRecordApi.deleteEntryRecord(id)
|
||||
message.success(t('common.delSuccess'))
|
||||
// 刷新列表
|
||||
await getList()
|
||||
} catch {}
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = async () => {
|
||||
try {
|
||||
// 导出的二次确认
|
||||
await message.exportConfirm()
|
||||
// 发起导出
|
||||
exportLoading.value = true
|
||||
const data = await EntryRecordApi.exportEntryRecord(queryParams)
|
||||
download.excel(data, '入场记录.xls')
|
||||
} catch {
|
||||
} finally {
|
||||
exportLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
/** 初始化 **/
|
||||
onMounted(() => {
|
||||
getList()
|
||||
})
|
||||
</script>
|
@ -50,7 +50,7 @@
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="生效日期" prop="start">
|
||||
<!-- <el-form-item label="生效日期" prop="start">
|
||||
<el-input
|
||||
v-model="queryParams.start"
|
||||
placeholder="请输入生效日期"
|
||||
@ -67,8 +67,8 @@
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="部门" prop="dept">
|
||||
</el-form-item> -->
|
||||
<!-- <el-form-item label="部门" prop="dept">
|
||||
<el-input
|
||||
v-model="queryParams.dept"
|
||||
placeholder="请输入部门"
|
||||
@ -94,8 +94,8 @@
|
||||
@keyup.enter="handleQuery"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
</el-form-item> -->
|
||||
<!-- <el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker
|
||||
v-model="queryParams.createTime"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
@ -105,7 +105,7 @@
|
||||
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form-item> -->
|
||||
<el-form-item>
|
||||
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
||||
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
||||
@ -154,7 +154,7 @@
|
||||
:formatter="dateFormatter"
|
||||
width="180px"
|
||||
/>
|
||||
<el-table-column label="操作" align="center">
|
||||
<el-table-column label="操作" align="center" fixed="right" width="110">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
link
|
||||
@ -167,7 +167,7 @@
|
||||
<el-button
|
||||
link
|
||||
type="danger"
|
||||
@click="handleDelete(scope.row.id)"
|
||||
@click="handleDelete(scope.row.fixedId)"
|
||||
v-hasPermi="['parking:white:delete']"
|
||||
>
|
||||
删除
|
||||
|
Loading…
Reference in New Issue
Block a user