无人机管理后台前端(已迁走)
chenyao
2025-12-10 351c35a864d865c9c549cfd4f4643b6b9affd391
feat:更新历史任务详情功能
2 files modified
9 ■■■■ changed files
src/views/job/components/JobRelatedEvents.vue 8 ●●●● patch | view | raw | blame | history
src/views/job/components/TaskAlgorithmBusiness.vue 1 ●●●● patch | view | raw | blame | history
src/views/job/components/JobRelatedEvents.vue
@@ -13,7 +13,7 @@
        <div class="searchBox">
            <div class="item">
                <div class="itemchild">模糊查询:</div>
                <el-input v-model="params.event_name" placeholder="请输入事件名称" clearable></el-input>
                <el-input class="ztzf-input selectInput" v-model="params.event_name" placeholder="请输入事件名称" clearable></el-input>
            </div>
            <!-- <div class="item">
                <div class="itemchild">任务执行日期:</div>
@@ -204,7 +204,7 @@
    params.value.start_date = null
    taskData.value = ''
    algorithmChange([])
    getList()
    // getList()
}
const handleSearch = () => {
    getList()
@@ -322,6 +322,10 @@
    display: flex;
}
  :deep(.selectInput.el-input) {
    width: 200px !important;
  }
.search-btn {
            display: flex;
            justify-content: space-between;
src/views/job/components/TaskAlgorithmBusiness.vue
@@ -11,6 +11,7 @@
            collapse-tags-tooltip
            placeholder="支持多项选择"
            clearable
    @clear="clear"
            @change="handleAlgorithmChange"
        >
            <el-option v-for="item in taskAlgorithm" :key="item.id" :label="item.dictValue" :value="item.dictKey" />