| | |
| | | <el-form-item label="关联算法:"> |
| | | <el-select |
| | | :teleported="false" |
| | | v-model="searchForm.ai_types" |
| | | v-model="searchForm.ai_typesValue" |
| | | placeholder="请选择关联航线" |
| | | clearable> |
| | | <el-option |
| | |
| | | const cycleDateRange = ref('') |
| | | const searchForm = reactive({ |
| | | ai_types: [], |
| | | ai_typesValue: '', |
| | | deal_time: "", |
| | | file_id: "", |
| | | key_word: "", |
| | |
| | | start_date: cycleDateRange.value.length |
| | | ? dayjs(dateRange?.value[0]).startOf('day').format(timeFormat) |
| | | : null, |
| | | emd_date: cycleDateRange.value.length |
| | | end_date: cycleDateRange.value.length |
| | | ? dayjs(dateRange?.value[1]).startOf('day').format(timeFormat) |
| | | : null, |
| | | }; |
| | |
| | | |
| | | function handleReset () { |
| | | searchForm.ai_types = [] |
| | | searchForm.ai_typesValue = '' |
| | | searchForm.deal_time = "" |
| | | searchForm.file_id = "" |
| | | searchForm.key_word = "" |