diff --git a/index.html b/index.html
index 284bafd..af49d1e 100644
--- a/index.html
+++ b/index.html
@@ -2,17 +2,9 @@
-
+
-
-
%VITE_APP_TITLE%
diff --git a/public/favicon.ico b/public/favicon.ico
deleted file mode 100644
index 5a7de08..0000000
Binary files a/public/favicon.ico and /dev/null differ
diff --git a/public/favicon.png b/public/favicon.png
new file mode 100644
index 0000000..49dbe6b
Binary files /dev/null and b/public/favicon.png differ
diff --git a/public/home.png b/public/home.png
deleted file mode 100644
index ccd4145..0000000
Binary files a/public/home.png and /dev/null differ
diff --git a/src/assets/imgs/logo.png b/src/assets/imgs/logo.png
index 7e1043f..49dbe6b 100644
Binary files a/src/assets/imgs/logo.png and b/src/assets/imgs/logo.png differ
diff --git a/src/layout/components/Logo/src/Logo.vue b/src/layout/components/Logo/src/Logo.vue
index d241130..7dced3f 100644
--- a/src/layout/components/Logo/src/Logo.vue
+++ b/src/layout/components/Logo/src/Logo.vue
@@ -62,14 +62,18 @@ watch(
:class="[
prefixCls,
layout !== 'classic' ? `${prefixCls}__Top` : '',
- 'flex !h-[var(--logo-height)] items-center cursor-pointer pl-8px relative decoration-none overflow-hidden'
+ 'flex !h-[var(--logo-height)] items-center cursor-pointer justify-center relative decoration-none overflow-hidden'
]"
to="/"
>
-
+
+
+
+
+
+
+defineOptions({ name: 'CreateTask' })
+
+
+
diff --git a/src/views/system/taskinfo/index.vue b/src/views/task/index.vue
similarity index 91%
rename from src/views/system/taskinfo/index.vue
rename to src/views/task/index.vue
index 56b8dca..8328378 100644
--- a/src/views/system/taskinfo/index.vue
+++ b/src/views/task/index.vue
@@ -49,10 +49,10 @@
- 新增
+ 创建任务
-
+
@@ -81,14 +81,24 @@
-
+
-
-
+
+
-
-
+
企业范围
@@ -155,11 +160,11 @@ import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo'
import TaskInfoForm from './TaskInfoForm.vue'
/** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */
-defineOptions({ name: 'TaskInfo' })
+defineOptions({ name: 'TaskList' })
const message = useMessage() // 消息弹窗
const { t } = useI18n() // 国际化
-
+const { push } = useRouter()
const loading = ref(true) // 列表的加载中
const list = ref([]) // 列表的数据
const total = ref(0) // 列表的总页数
@@ -180,7 +185,7 @@ const queryParams = reactive({
parentId: undefined,
parentType: undefined,
taskStep: undefined,
- taskTotal: undefined,
+ taskTotal: undefined
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
@@ -198,9 +203,7 @@ const getList = async () => {
}
//选择任务中企业范围
-const selectEnterprise = async (id: number) => {
-
-}
+const selectEnterprise = async (id: number) => {}
/** 搜索按钮操作 */
const handleQuery = () => {
@@ -252,4 +255,4 @@ const handleExport = async () => {
onMounted(() => {
getList()
})
-
\ No newline at end of file
+