|
@@ -9,7 +9,7 @@
|
|
|
:rules="rules"
|
|
|
@submit.native.prevent
|
|
|
>
|
|
|
- <div v-if="name !== 'waybill'" class="form-left">
|
|
|
+ <div v-if="name === 'freight'" class="form-dates">
|
|
|
<el-form-item prop="startDate">
|
|
|
<el-date-picker
|
|
|
v-model="formData.startDate"
|
|
@@ -36,17 +36,43 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
- <div class="form-right">
|
|
|
+ <div class="form-keyWords">
|
|
|
<el-form-item prop="keyWords">
|
|
|
<el-input
|
|
|
v-model.trim="formData.keyWords"
|
|
|
size="default"
|
|
|
- placeholder="请输入要搜索的内容"
|
|
|
+ :placeholder="keyWordsPlaceHolder"
|
|
|
:prefix-icon="Search"
|
|
|
clearable
|
|
|
@keyup.enter.prevent="dataQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item v-if="name === 'flight'" prop="company">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.company"
|
|
|
+ size="default"
|
|
|
+ placeholder="请选择航空公司进行搜索"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="{ value, label } in companyOptions"
|
|
|
+ :key="value"
|
|
|
+ :value="value"
|
|
|
+ :label="label"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="name === 'flight'" prop="flightDate">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="formData.flightDate"
|
|
|
+ format="YYYY-MM-DD"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ size="default"
|
|
|
+ type="date"
|
|
|
+ placeholder="请选择航班日期"
|
|
|
+ :clearable="false"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
|
</el-form>
|
|
|
<el-button size="default" type="primary" @click="dataQuery"
|
|
@@ -60,7 +86,6 @@
|
|
|
<div
|
|
|
v-loading="loading"
|
|
|
element-loading-text="拼命加载中"
|
|
|
- element-loading-spinner="el-icon-loading"
|
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
class="data-query-table"
|
|
|
>
|
|
@@ -71,6 +96,7 @@
|
|
|
:cell-class-name="cellClass"
|
|
|
:column-props="{ formatter }"
|
|
|
@cell-click="cellClickHandler"
|
|
|
+ @scroll-over="load"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -85,6 +111,7 @@ import { parseTime } from '@/utils/validate'
|
|
|
import { useTable } from './useTable'
|
|
|
import { useTableColumnSet } from '@/hooks/useTableColumnSet'
|
|
|
import { CommonTableFormatter } from '~/common'
|
|
|
+import { Query } from '@/api/webApi'
|
|
|
|
|
|
const props = defineProps({
|
|
|
name: {
|
|
@@ -99,9 +126,11 @@ const props = defineProps({
|
|
|
|
|
|
const today = parseTime(new Date(), '{y}-{m}-{d}') as string
|
|
|
const formData = reactive({
|
|
|
- startDate: props.name === 'waybill' ? null : today,
|
|
|
- endDate: props.name === 'waybill' ? null : today,
|
|
|
+ startDate: today,
|
|
|
+ endDate: today,
|
|
|
keyWords: '',
|
|
|
+ company: '',
|
|
|
+ flightDate: today,
|
|
|
})
|
|
|
watchEffect(() => {
|
|
|
if (!formData.startDate || !formData.endDate) {
|
|
@@ -127,12 +156,45 @@ const datePreTitle = (title: string) => {
|
|
|
return <div class="date-pre-title">{title}:</div>
|
|
|
}
|
|
|
|
|
|
-const keyWordsValidator = (rule: any, value: any, callback: any) => {
|
|
|
- const searchTitleMap = {
|
|
|
- flight: '航班号',
|
|
|
- waybill: '运单号',
|
|
|
- freight: '货物编码',
|
|
|
+const searchTitleMap = {
|
|
|
+ flight: '航班号',
|
|
|
+ waybill: '运单号',
|
|
|
+ freight: '货物编码',
|
|
|
+}
|
|
|
+
|
|
|
+const keyWordsPlaceHolder = computed(
|
|
|
+ () => `请输入${searchTitleMap[props.name] ?? '内容'}进行搜索`
|
|
|
+)
|
|
|
+
|
|
|
+const companyOptions = ref<{ value: string; label: string }[]>([])
|
|
|
+const getCompanys = async () => {
|
|
|
+ try {
|
|
|
+ const {
|
|
|
+ code,
|
|
|
+ returnData: { listValues },
|
|
|
+ message,
|
|
|
+ } = await Query<{ [x: string]: string }>({
|
|
|
+ id: DATACONTENT_ID.twoCharacterOptions,
|
|
|
+ dataContent: [],
|
|
|
+ })
|
|
|
+ if (Number(code) !== 0) {
|
|
|
+ throw new Error(message || '失败')
|
|
|
+ }
|
|
|
+ companyOptions.value = listValues.map(({ v }) => ({
|
|
|
+ value: v,
|
|
|
+ label: v,
|
|
|
+ }))
|
|
|
+ } catch (error) {
|
|
|
+ console.error(error)
|
|
|
}
|
|
|
+}
|
|
|
+onMounted(() => {
|
|
|
+ if (props.name === 'flight') {
|
|
|
+ getCompanys()
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
+const keyWordsValidator = (rule: any, value: any, callback: any) => {
|
|
|
const searchTitle = searchTitleMap[props.name] ?? '关键词'
|
|
|
if (!value) {
|
|
|
if (['flight'].includes(props.name)) {
|
|
@@ -143,8 +205,8 @@ const keyWordsValidator = (rule: any, value: any, callback: any) => {
|
|
|
}
|
|
|
const regsMap: { [x: string]: RegExp[] } = {
|
|
|
// flight: [/^[A-Za-z0-9][A-Za-z][0-9]{3,4}$/, /^[0-9]{3,4}$/],
|
|
|
- flight: [/^[A-Za-z0-9]{1,6}$/],
|
|
|
- waybill: [/^[0-9]{3}\-[0-9]{8}/],
|
|
|
+ flight: [/^[0-9]{1,4}$/],
|
|
|
+ waybill: [/^[0-9]{8}$/, /^[0-9]{3}\-[0-9]{8}$/],
|
|
|
freight: [/^[0-9]{5}$/, /^[0-9]{3}\-[0-9]{8}\-[0-9]{5}$/],
|
|
|
}
|
|
|
const regs = regsMap[props.name] ?? []
|
|
@@ -158,22 +220,40 @@ const rules = {
|
|
|
startDate: [{ required: true, message: '请选择开始日期', trigger: 'blur' }],
|
|
|
endDate: [{ required: true, message: '请选择结束日期', trigger: 'blur' }],
|
|
|
keyWords: [{ validator: keyWordsValidator, trigger: 'blur' }],
|
|
|
+ flightDate: [{ required: true, message: '请选择航班日期', trigger: 'blur' }],
|
|
|
}
|
|
|
const formRef = ref<FormInstance | null>()
|
|
|
const dataQuery = () => {
|
|
|
formRef.value?.validate(valid => {
|
|
|
if (valid) {
|
|
|
- getTableData()
|
|
|
+ tableInit()
|
|
|
+ load()
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
const loading = ref(false)
|
|
|
+const page = ref(1)
|
|
|
+const noMore = ref(false)
|
|
|
const { tableColumns, tableData, getTableData } = useTable(
|
|
|
props.name,
|
|
|
formData,
|
|
|
+ page,
|
|
|
+ noMore,
|
|
|
loading
|
|
|
)
|
|
|
+const load = () => {
|
|
|
+ if (loading.value || noMore.value) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ page.value++
|
|
|
+ getTableData()
|
|
|
+}
|
|
|
+const tableInit = () => {
|
|
|
+ page.value = 0
|
|
|
+ noMore.value = false
|
|
|
+ tableData.value = []
|
|
|
+}
|
|
|
|
|
|
const { columnChecked } = useTableColumnSet(tableColumns)
|
|
|
|
|
@@ -293,19 +373,38 @@ const cellClickHandler = (row, column, cell, event) => {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
- .form-left {
|
|
|
+ .form-dates {
|
|
|
flex: 1;
|
|
|
display: flex;
|
|
|
.el-form-item {
|
|
|
width: 168px;
|
|
|
margin-right: 8px;
|
|
|
+ .el-date-editor {
|
|
|
+ .el-input__prefix {
|
|
|
+ flex-basis: 42px;
|
|
|
+ padding-left: 15px;
|
|
|
+ .date-pre-title {
|
|
|
+ font-style: normal;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ color: #303133;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- .form-right {
|
|
|
+ .form-keyWords {
|
|
|
display: flex;
|
|
|
justify-content: flex-end;
|
|
|
.el-form-item {
|
|
|
width: 280px;
|
|
|
+ &:not(:last-of-type) {
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ .el-select,
|
|
|
+ .el-date-editor {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.el-form-item {
|
|
@@ -316,18 +415,6 @@ const cellClickHandler = (row, column, cell, event) => {
|
|
|
font-family: Helvetica, Microsoft YaHei;
|
|
|
color: #303133;
|
|
|
}
|
|
|
- .el-date-editor {
|
|
|
- .el-input__prefix {
|
|
|
- flex-basis: 42px;
|
|
|
- padding-left: 15px;
|
|
|
- .date-pre-title {
|
|
|
- font-style: normal;
|
|
|
- font-size: 14px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- color: #303133;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
&-table {
|