| | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="dept_name" label="所属单位" show-overflow-tooltip/> |
| | | <el-table-column prop="create_time" label="创建时间" show-overflow-tooltip/> |
| | | <el-table-column prop="create_time" label="创建时间" width="160" show-overflow-tooltip/> |
| | | <el-table-column prop="job_num" label="已执行次数" width="90" align="center" /> |
| | | <el-table-column prop="content" label="工单内容" show-overflow-tooltip align="center" /> |
| | | <el-table-column prop="wayline_name" label="关联航线" show-overflow-tooltip /> |
| | |
| | | import { cloneDeep } from 'lodash'; |
| | | import { computed, onMounted } from 'vue'; |
| | | import { ElMessage, ElMessageBox } from 'element-plus' |
| | | import { aiImagesPage } from '@/api/dataCenter/dataCenter'; |
| | | |
| | | const store = useStore() |
| | | |
| | |
| | | |
| | | const orderListTable = ref([]) |
| | | function getTableList() { |
| | | orderListParams.searchParams.ai_types = orderListParams.searchParams.ai_typesValue ? [ orderListParams.searchParams.ai_typesValue] : null |
| | | const apiParams = { |
| | | ...cloneDeep(orderListParams), |
| | | ...cloneDeep(orderListParams.searchParams) |
| | | } |
| | | getList(apiParams).then(res => { |
| | | getList(apiParams, orderListParams.current, orderListParams.size).then(res => { |
| | | orderListTable.value = res.data.data.records |
| | | total.value = res.data.data.total |
| | | // updateGlobalCounts() |
| | |
| | | |
| | | NProgress.start() |
| | | |
| | | orderListParams.searchParams.ai_types = orderListParams.searchParams.ai_typesValue ? [ orderListParams.searchParams.ai_typesValue] : null |
| | | const apiParams = { |
| | | ...cloneDeep(orderListParams), |
| | | searchParams: { |
| | | ...cloneDeep(orderListParams.searchParams) |
| | | }, |
| | | ...cloneDeep(orderListParams.searchParams) |
| | | } |
| | | const res = await orderLogExport(apiParams) |
| | | |
| | |
| | | } |
| | | |
| | | onMounted(() => { |
| | | getLines() |
| | | aitypeList() |
| | | filteredTabs() |
| | | getTableList() |
| | | updateGlobalCounts() |
| | | getLines() |
| | | aitypeList() |
| | | }) |
| | | </script> |
| | | |