diff --git a/ludu-admin-vue.iml b/ludu-admin-vue.iml
new file mode 100644
index 00000000..8021953e
--- /dev/null
+++ b/ludu-admin-vue.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/api/parking/white/index.ts b/src/api/parking/white/index.ts
index c213787d..11c8d73d 100644
--- a/src/api/parking/white/index.ts
+++ b/src/api/parking/white/index.ts
@@ -12,6 +12,15 @@ export interface WhiteVO {
dept: string // 部门
memo: string // 备注
source: string // 来源
+ name: string //
+ carType: string
+ areaId: number
+ areaStart: string
+ areaEnd: string
+ address: string
+ phone: string
+ plateColor: string
+
}
// 白名单管理 API
diff --git a/src/api/ticket/flight/index.ts b/src/api/ticket/flight/index.ts
new file mode 100644
index 00000000..f0e1dc11
--- /dev/null
+++ b/src/api/ticket/flight/index.ts
@@ -0,0 +1,47 @@
+import request from '@/config/axios'
+
+// 航班 VO
+export interface FlightVO {
+ id: number // id
+ flightName: string // 航班名称
+}
+
+
+// 航班 API
+export const FlightApi = {
+
+ //查询航班下拉框数据
+ getFlightName: async () =>{
+ return await request.get({ url : `/ticket/flight/flightNameOption`})
+ },
+
+ // 查询航班分页
+ getFlightPage: async (params: any) => {
+ return await request.get({ url: `/ticket/flight/page`, params })
+ },
+
+ // 查询航班详情
+ getFlight: async (id: number) => {
+ return await request.get({ url: `/ticket/flight/get?id=` + id })
+ },
+
+ // 新增航班
+ createFlight: async (data: FlightVO) => {
+ return await request.post({ url: `/ticket/flight/create`, data })
+ },
+
+ // 修改航班
+ updateFlight: async (data: FlightVO) => {
+ return await request.put({ url: `/ticket/flight/update`, data })
+ },
+
+ // 删除航班
+ deleteFlight: async (id: number) => {
+ return await request.delete({ url: `/ticket/flight/delete?id=` + id })
+ },
+
+ // 导出航班 Excel
+ exportFlight: async (params) => {
+ return await request.download({ url: `/ticket/flight/export-excel`, params })
+ },
+}
\ No newline at end of file
diff --git a/src/api/ticket/shiproute/index.ts b/src/api/ticket/shiproute/index.ts
new file mode 100644
index 00000000..58b791e9
--- /dev/null
+++ b/src/api/ticket/shiproute/index.ts
@@ -0,0 +1,47 @@
+import request from '@/config/axios'
+
+// 航线 VO
+export interface ShipRouteVO {
+ id: number // id
+ flightId: number // 航班
+ routeName: string // 航线名称
+}
+
+// 航线 API
+export const ShipRouteApi = {
+
+ //查询航班下拉框数据
+ getRouteName: async () =>{
+ return await request.get({ url : `/ticket/ship-route/routeNameOption`})
+ },
+
+ // 查询航线分页
+ getShipRoutePage: async (params: any) => {
+ return await request.get({ url: `/ticket/ship-route/page`, params })
+ },
+
+ // 查询航线详情
+ getShipRoute: async (id: number) => {
+ return await request.get({ url: `/ticket/ship-route/get?id=` + id })
+ },
+
+ // 新增航线
+ createShipRoute: async (data: ShipRouteVO) => {
+ return await request.post({ url: `/ticket/ship-route/create`, data })
+ },
+
+ // 修改航线
+ updateShipRoute: async (data: ShipRouteVO) => {
+ return await request.put({ url: `/ticket/ship-route/update`, data })
+ },
+
+ // 删除航线
+ deleteShipRoute: async (id: number) => {
+ return await request.delete({ url: `/ticket/ship-route/delete?id=` + id })
+ },
+
+ // 导出航线 Excel
+ exportShipRoute: async (params) => {
+ return await request.download({ url: `/ticket/ship-route/export-excel`, params })
+ },
+}
\ No newline at end of file
diff --git a/src/api/ticket/todayflight/index.ts b/src/api/ticket/todayflight/index.ts
new file mode 100644
index 00000000..d3117d9d
--- /dev/null
+++ b/src/api/ticket/todayflight/index.ts
@@ -0,0 +1,43 @@
+import request from '@/config/axios'
+
+// 今日航班 VO
+export interface TodayFlightVO {
+ id: number // id
+ shipRouteId: number // 航线
+ classes: string // 班次
+ flightDate: string // 当日日期
+ startTime: string // 开始时间
+}
+
+// 今日航班 API
+export const TodayFlightApi = {
+ // 查询今日航班分页
+ getTodayFlightPage: async (params: any) => {
+ return await request.get({ url: `/ticket/today-flight/page`, params })
+ },
+
+ // 查询今日航班详情
+ getTodayFlight: async (id: number) => {
+ return await request.get({ url: `/ticket/today-flight/get?id=` + id })
+ },
+
+ // 新增今日航班
+ createTodayFlight: async (data: TodayFlightVO) => {
+ return await request.post({ url: `/ticket/today-flight/create`, data })
+ },
+
+ // 修改今日航班
+ updateTodayFlight: async (data: TodayFlightVO) => {
+ return await request.put({ url: `/ticket/today-flight/update`, data })
+ },
+
+ // 删除今日航班
+ deleteTodayFlight: async (id: number) => {
+ return await request.delete({ url: `/ticket/today-flight/delete?id=` + id })
+ },
+
+ // 导出今日航班 Excel
+ exportTodayFlight: async (params) => {
+ return await request.download({ url: `/ticket/today-flight/export-excel`, params })
+ },
+}
\ No newline at end of file
diff --git a/src/views/parking/appearancerecord/index.vue b/src/views/parking/appearancerecord/index.vue
index a8af4d00..5d3a6444 100644
--- a/src/views/parking/appearancerecord/index.vue
+++ b/src/views/parking/appearancerecord/index.vue
@@ -26,15 +26,15 @@
class="!w-240px"
/>
-
-
-
+
+
+
+
+
+
+
+
+
搜索
重置
-
- 新增
-
+
+
+
+
+
+
+
+
-
- 编辑
-
+
+
+
+
+
+
+
+
{
onMounted(() => {
getList()
})
-
\ No newline at end of file
+
diff --git a/src/views/parking/black/BlackForm.vue b/src/views/parking/black/BlackForm.vue
index d8f930bd..3c842407 100644
--- a/src/views/parking/black/BlackForm.vue
+++ b/src/views/parking/black/BlackForm.vue
@@ -55,6 +55,10 @@ const formData = ref({
memo: undefined,
})
const formRules = reactive({
+ parkNumber: [{ required: true, message: '场库编号不能为空', trigger: 'blur' }],
+ plate: [{ required: true, message: '车牌号不能为空', trigger: 'blur' }],
+ memo: [{ required: true, message: '备注不能为空', trigger: 'blur' }],
+ source: [{ required: true, message: '来源不能为空', trigger: 'blur' }],
})
const formRef = ref() // 表单 Ref
@@ -111,4 +115,4 @@ const resetForm = () => {
}
formRef.value?.resetFields()
}
-
\ No newline at end of file
+
diff --git a/src/views/parking/entryrecord/index.vue b/src/views/parking/entryrecord/index.vue
index 6905ecd8..717d64bb 100644
--- a/src/views/parking/entryrecord/index.vue
+++ b/src/views/parking/entryrecord/index.vue
@@ -64,53 +64,53 @@
class="!w-240px"
/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
搜索
重置
-
- 新增
-
+
+
+
+
+
+
+
+
-
- 编辑
-
+
+
+
+
+
+
+
+
{
onMounted(() => {
getList()
})
-
\ No newline at end of file
+
diff --git a/src/views/parking/white/index.vue b/src/views/parking/white/index.vue
index 540ce29f..e31b3387 100644
--- a/src/views/parking/white/index.vue
+++ b/src/views/parking/white/index.vue
@@ -147,6 +147,14 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/ticket/flight/index.vue b/src/views/ticket/flight/index.vue
new file mode 100644
index 00000000..b6ff2470
--- /dev/null
+++ b/src/views/ticket/flight/index.vue
@@ -0,0 +1,187 @@
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+ 新增
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/ticket/shiproute/ShipRouteForm.vue b/src/views/ticket/shiproute/ShipRouteForm.vue
new file mode 100644
index 00000000..fc535991
--- /dev/null
+++ b/src/views/ticket/shiproute/ShipRouteForm.vue
@@ -0,0 +1,123 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/views/ticket/shiproute/index.vue b/src/views/ticket/shiproute/index.vue
new file mode 100644
index 00000000..d73fdf74
--- /dev/null
+++ b/src/views/ticket/shiproute/index.vue
@@ -0,0 +1,230 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+ 新增
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/ticket/todayflight/TodayFlightForm.vue b/src/views/ticket/todayflight/TodayFlightForm.vue
new file mode 100644
index 00000000..7ef50fd6
--- /dev/null
+++ b/src/views/ticket/todayflight/TodayFlightForm.vue
@@ -0,0 +1,136 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/views/ticket/todayflight/index.vue b/src/views/ticket/todayflight/index.vue
new file mode 100644
index 00000000..7b1d3647
--- /dev/null
+++ b/src/views/ticket/todayflight/index.vue
@@ -0,0 +1,254 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+ 新增
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file