|
@@ -1,26 +1,26 @@
|
|
|
<template>
|
|
|
<el-form :model="formData" inline class="station-form">
|
|
|
- <el-form-item :prop="formData.startDate" style="width: 176px">
|
|
|
+ <el-form-item :prop="formData.startDate" style="width: 160px">
|
|
|
<el-date-picker
|
|
|
v-model="formData.startDate"
|
|
|
type="datetime"
|
|
|
- format="YYYY-MM-DD HH:mm:ss"
|
|
|
- value-format="YYYY-MM-DD hh:mm:ss"
|
|
|
+ format="YYYY-MM-DD HH:mm"
|
|
|
+ value-format="YYYY-MM-DD hh:mm"
|
|
|
size="default"
|
|
|
:clearable="false"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item :prop="formData.endDate" style="width: 176px">
|
|
|
+ <el-form-item :prop="formData.endDate" style="width: 160px">
|
|
|
<el-date-picker
|
|
|
v-model="formData.endDate"
|
|
|
type="datetime"
|
|
|
- format="YYYY-MM-DD HH:mm:ss"
|
|
|
- value-format="YYYY-MM-DD hh:mm:ss"
|
|
|
+ format="YYYY-MM-DD HH:mm"
|
|
|
+ value-format="YYYY-MM-DD hh:mm"
|
|
|
size="default"
|
|
|
:clearable="false"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item :prop="formData.flightStatus" style="width: 96px">
|
|
|
+ <el-form-item :prop="formData.flightStatus" style="width: 104px">
|
|
|
<el-select
|
|
|
v-model="formData.flightStatus"
|
|
|
size="default"
|
|
@@ -34,7 +34,7 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item :prop="formData.flightWarning" style="width: 96px">
|
|
|
+ <el-form-item :prop="formData.flightWarning" style="width: 104px">
|
|
|
<el-select
|
|
|
v-model="formData.flightWarning"
|
|
|
size="default"
|
|
@@ -51,7 +51,7 @@
|
|
|
<el-form-item
|
|
|
v-if="international"
|
|
|
:prop="formData.waybillType"
|
|
|
- style="width: 96px"
|
|
|
+ style="width: 104px"
|
|
|
>
|
|
|
<el-select
|
|
|
v-model="formData.waybillType"
|
|
@@ -71,11 +71,7 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import { parseTime } from '@/utils/validate'
|
|
|
-
|
|
|
-interface selectOptions {
|
|
|
- label: string
|
|
|
- value: string | number
|
|
|
-}
|
|
|
+import type { selectOptions } from '../../type'
|
|
|
|
|
|
const props = defineProps({
|
|
|
international: {
|
|
@@ -84,16 +80,33 @@ const props = defineProps({
|
|
|
},
|
|
|
})
|
|
|
|
|
|
+const emit = defineEmits(['formDataChange'])
|
|
|
+
|
|
|
const formData = reactive({
|
|
|
- startDate: parseTime(new Date(), '{y}/{m}/{d} {h}:{i}:{s}'),
|
|
|
- endDate: parseTime(new Date(), '{y}/{m}/{d} {h}:{i}:{s}'),
|
|
|
+ startDate: parseTime(new Date(), '{y}-{m}-{d} {h}:{i}'),
|
|
|
+ endDate: parseTime(new Date(), '{y}-{m}-{d} {h}:{i}'),
|
|
|
flightStatus: '',
|
|
|
flightWarning: '',
|
|
|
waybillType: '',
|
|
|
})
|
|
|
-const flightStatusOptions = ref<selectOptions[]>([])
|
|
|
-const flightWarningOptions = ref<selectOptions[]>([])
|
|
|
-const waybillTypeOptions = ref<selectOptions[]>([])
|
|
|
+watchEffect(() => {
|
|
|
+ emit('formDataChange', formData)
|
|
|
+})
|
|
|
+
|
|
|
+const flightStatusOptions = ref<selectOptions>([])
|
|
|
+const flightWarningOptions = ref<selectOptions>([])
|
|
|
+const waybillTypeOptions = ref<selectOptions>([])
|
|
|
+const getFlightStatusOptions = async () => {}
|
|
|
+const getFlightWarningOptions = async () => {}
|
|
|
+const getWaybillTypeOptions = async () => {}
|
|
|
+const getSelectOptions = () => {
|
|
|
+ getFlightStatusOptions()
|
|
|
+ getFlightWarningOptions()
|
|
|
+ getWaybillTypeOptions()
|
|
|
+}
|
|
|
+onMounted(() => {
|
|
|
+ getSelectOptions()
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
@@ -103,17 +116,15 @@ const waybillTypeOptions = ref<selectOptions[]>([])
|
|
|
&:not(:last-of-type) {
|
|
|
margin-right: 8px;
|
|
|
}
|
|
|
- .el-input__wrapper {
|
|
|
- padding: 1px 8px;
|
|
|
- .el-input__inner {
|
|
|
+
|
|
|
+ .el-input__inner {
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Helvetica, Microsoft YaHei;
|
|
|
+ color: #303133;
|
|
|
+ &::-webkit-input-placeholder {
|
|
|
font-size: 14px;
|
|
|
font-family: Helvetica, Microsoft YaHei;
|
|
|
color: #303133;
|
|
|
- &::-webkit-input-placeholder {
|
|
|
- font-size: 14px;
|
|
|
- font-family: Helvetica, Microsoft YaHei;
|
|
|
- color: #303133;
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|