From 195c32c2280c0d4e9288b1c7d31603a3a819ac2e Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Thu, 03 Apr 2025 17:29:41 +0800
Subject: [PATCH] feat: 任务管理功能

---
 src/views/TaskManage/components/TaskIntermediateContent/TaskIntermediateContent.vue |   17 +++++++++++++----
 1 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/src/views/TaskManage/components/TaskIntermediateContent/TaskIntermediateContent.vue b/src/views/TaskManage/components/TaskIntermediateContent/TaskIntermediateContent.vue
index ccf669e..5e15016 100644
--- a/src/views/TaskManage/components/TaskIntermediateContent/TaskIntermediateContent.vue
+++ b/src/views/TaskManage/components/TaskIntermediateContent/TaskIntermediateContent.vue
@@ -1,6 +1,6 @@
 <!-- 任务统计表格 -->
 <template>
-  <SearchBox></SearchBox>
+  <SearchBox @search="searchClick"></SearchBox>
   <div class="task-intermediate-content">
     <el-table :data="jobListData" style="width: 100%" height="calc(100vh - 180px)">
       <el-table-column label="序号" width="60">
@@ -51,13 +51,14 @@
 const jobListParams = reactive({
   page: 1,
   limit: 10,
+  searchParams:{}
 });
 const jobListData = ref([]);
 const total = ref(0);
 
 // 获取任务列表
 const getJobList = () => {
-  jobList({current:1,size:10}).then(res => {
+  jobList(jobListParams).then(res => {
     if (res.data.code !== 0) return;
     jobListData.value = res.data.data.records;
     total.value = res.data.data.total;
@@ -104,6 +105,14 @@
   getJobList();
 };
 
+// 传参查询条件
+const searchClick = (params) => {
+  jobListParams.page = 1;
+  jobListParams.limit = 10;
+  jobListParams.searchParams = params;
+  getJobList();
+};
+
 onMounted(() => {
   getJobList();
 });
@@ -112,10 +121,10 @@
 <style lang="scss" scoped>
 .task-intermediate-content {
   position: absolute;
-  top: 190px;
+  top: 200px;
   width: calc(100% - 400px - 400px - 100px);
   left: 450px;
-  height: 770px;
+  height: 760px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;

--
Gitblit v1.9.3