停车场-远程抬杠模块修改
This commit is contained in:
parent
7c5408f7a2
commit
d498a2062a
@ -1,41 +1,42 @@
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 远程抬杠日志 VO
|
||||
export interface LiftingRodVO {
|
||||
id: number // id
|
||||
parkNumber: string // 停车场编号
|
||||
passagewayId: string // 通道Id
|
||||
}
|
||||
|
||||
// 远程抬杠日志 API
|
||||
export const LiftingRodApi = {
|
||||
// 查询远程抬杠日志分页
|
||||
getLiftingRodPage: async (params: any) => {
|
||||
return await request.get({ url: `/parking/lifting-rod/page`, params })
|
||||
},
|
||||
|
||||
// 查询远程抬杠日志详情
|
||||
getLiftingRod: async (id: number) => {
|
||||
return await request.get({ url: `/parking/lifting-rod/get?id=` + id })
|
||||
},
|
||||
|
||||
// 新增远程抬杠日志
|
||||
createLiftingRod: async (data: LiftingRodVO) => {
|
||||
return await request.post({ url: `/parking/lifting-rod/create`, data })
|
||||
},
|
||||
|
||||
// 修改远程抬杠日志
|
||||
updateLiftingRod: async (data: LiftingRodVO) => {
|
||||
return await request.put({ url: `/parking/lifting-rod/update`, data })
|
||||
},
|
||||
|
||||
// 删除远程抬杠日志
|
||||
deleteLiftingRod: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/lifting-rod/delete?id=` + id })
|
||||
},
|
||||
|
||||
// 导出远程抬杠日志 Excel
|
||||
exportLiftingRod: async (params) => {
|
||||
return await request.download({ url: `/parking/lifting-rod/export-excel`, params })
|
||||
},
|
||||
}
|
||||
import request from '@/config/axios'
|
||||
|
||||
// 远程抬杠日志 VO
|
||||
export interface LiftingRodVO {
|
||||
id: number // id
|
||||
parkNumber: string // 停车场编号
|
||||
passagewayId: string // 通道Id
|
||||
status: number // 状态
|
||||
}
|
||||
|
||||
// 远程抬杠日志 API
|
||||
export const LiftingRodApi = {
|
||||
// 查询远程抬杠日志分页
|
||||
getLiftingRodPage: async (params: any) => {
|
||||
return await request.get({ url: `/parking/lifting-rod/page`, params })
|
||||
},
|
||||
|
||||
// 查询远程抬杠日志详情
|
||||
getLiftingRod: async (id: number) => {
|
||||
return await request.get({ url: `/parking/lifting-rod/get?id=` + id })
|
||||
},
|
||||
|
||||
// 新增远程抬杠日志
|
||||
createLiftingRod: async (data: LiftingRodVO) => {
|
||||
return await request.post({ url: `/parking/lifting-rod/create`, data })
|
||||
},
|
||||
|
||||
// 修改远程抬杠日志
|
||||
updateLiftingRod: async (data: LiftingRodVO) => {
|
||||
return await request.put({ url: `/parking/lifting-rod/update`, data })
|
||||
},
|
||||
|
||||
// 删除远程抬杠日志
|
||||
deleteLiftingRod: async (id: number) => {
|
||||
return await request.delete({ url: `/parking/lifting-rod/delete?id=` + id })
|
||||
},
|
||||
|
||||
// 导出远程抬杠日志 Excel
|
||||
exportLiftingRod: async (params) => {
|
||||
return await request.download({ url: `/parking/lifting-rod/export-excel`, params })
|
||||
},
|
||||
}
|
||||
|
@ -13,6 +13,11 @@
|
||||
<el-form-item label="通道Id" prop="passagewayId">
|
||||
<el-input v-model="formData.passagewayId" placeholder="请输入通道Id" />
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" prop="status">
|
||||
<el-radio-group v-model="formData.status">
|
||||
<el-radio label="1">请选择字典生成</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||||
@ -37,6 +42,7 @@ const formData = ref({
|
||||
id: undefined,
|
||||
parkNumber: undefined,
|
||||
passagewayId: undefined,
|
||||
status: undefined,
|
||||
})
|
||||
const formRules = reactive({
|
||||
parkNumber: [{ required: true, message: '停车场编号不能为空', trigger: 'blur' }],
|
||||
@ -92,6 +98,7 @@ const resetForm = () => {
|
||||
id: undefined,
|
||||
parkNumber: undefined,
|
||||
passagewayId: undefined,
|
||||
status: undefined,
|
||||
}
|
||||
formRef.value?.resetFields()
|
||||
}
|
||||
|
@ -6,7 +6,7 @@
|
||||
:model="queryParams"
|
||||
ref="queryFormRef"
|
||||
:inline="true"
|
||||
label-width="auto"
|
||||
label-width="68px"
|
||||
>
|
||||
<el-form-item label="停车场编号" prop="parkNumber">
|
||||
<el-input
|
||||
@ -37,6 +37,16 @@
|
||||
class="!w-240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" prop="status">
|
||||
<el-select
|
||||
v-model="queryParams.status"
|
||||
placeholder="请选择状态"
|
||||
clearable
|
||||
class="!w-240px"
|
||||
>
|
||||
<el-option label="请选择字典生成" value="" />
|
||||
</el-select>
|
||||
</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>
|
||||
@ -74,6 +84,7 @@
|
||||
:formatter="dateFormatter"
|
||||
width="180px"
|
||||
/>
|
||||
<el-table-column label="状态" align="center" prop="status" />
|
||||
<el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
<el-button
|
||||
@ -129,6 +140,7 @@ const queryParams = reactive({
|
||||
parkNumber: undefined,
|
||||
passagewayId: undefined,
|
||||
createTime: [],
|
||||
status: undefined,
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
const exportLoading = ref(false) // 导出的加载中
|
||||
|
Loading…
Reference in New Issue
Block a user