Browse Source

任务模块

master
parent
commit
4b443a4329
  1. 10
      index.html
  2. BIN
      public/favicon.ico
  3. BIN
      public/favicon.png
  4. BIN
      public/home.png
  5. BIN
      src/assets/imgs/logo.png
  6. 14
      src/layout/components/Logo/src/Logo.vue
  7. 5
      src/permission.ts
  8. 3
      src/store/modules/app.ts
  9. 1
      src/styles/var.css
  10. 0
      src/views/task/TaskInfoForm.vue
  11. 9
      src/views/task/create.vue
  12. 41
      src/views/task/index.vue

10
index.html

@ -2,17 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="icon" href="/favicon.png" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="智慧生态管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
/>
<meta
name="description"
content="智慧生态管理系统 基于 vue3 + CompositionAPI + typescript + vite3 + element plus 的后台开源免费管理系统!"
/>
<title>%VITE_APP_TITLE%</title>
</head>
<body>

BIN
public/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

BIN
public/favicon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
public/home.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

BIN
src/assets/imgs/logo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 13 KiB

14
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="/"
>
<img
class="h-[calc(var(--logo-height)-10px)] w-[calc(var(--logo-height)-10px)]"
src="@/assets/imgs/logo.png"
/>
<!-- <img-->
<!-- class="h-[calc(var(&#45;&#45;logo-height)-10px)] w-[calc(var(&#45;&#45;logo-height)-10px)]"-->
<!-- src="@/assets/imgs/logo.png"-->
<!-- />-->
<img
class="h-20px"
src="@/assets/imgs/logo.png"
/>
<div
v-if="show"
:class="[

5
src/permission.ts

@ -2,7 +2,6 @@ import router from './router'
import type { RouteRecordRaw } from 'vue-router'
import { isRelogin } from '@/config/axios/service'
import { getAccessToken } from '@/utils/auth'
import { useTitle } from '@/hooks/web/useTitle'
import { useNProgress } from '@/hooks/web/useNProgress'
import { usePageLoading } from '@/hooks/web/usePageLoading'
import { useDictStoreWithOut } from '@/store/modules/dict'
@ -99,8 +98,8 @@ router.beforeEach(async (to, from, next) => {
}
})
router.afterEach((to) => {
useTitle(to?.meta?.title as string)
router.afterEach(() => {
// useTitle(to?.meta?.title as string)
done() // 结束Progress
loadDone()
})

3
src/store/modules/app.ts

@ -68,7 +68,8 @@ export const useAppStore = defineStore('app', {
fixedMenu: wsCache.get('fixedMenu') || false, // 是否固定菜单
layout: wsCache.get(CACHE_KEY.LAYOUT) || 'classic', // layout布局
isDark: wsCache.get(CACHE_KEY.IS_DARK) || false, // 是否是暗黑模式
// isDark: wsCache.get(CACHE_KEY.IS_DARK) || false, // 是否是暗黑模式
isDark: false, // 是否是暗黑模式
currentSize: wsCache.get('default') || 'default', // 组件尺寸
theme: wsCache.get(CACHE_KEY.THEME) || {
// 主题色

1
src/styles/var.css

@ -20,7 +20,6 @@
/* logo start */
--logo-height: 50px;
--logo-title-text-color: #fff;
/* logo end */

0
src/views/system/taskinfo/TaskInfoForm.vue → src/views/task/TaskInfoForm.vue

9
src/views/task/create.vue

@ -0,0 +1,9 @@
<template>
<ContentWrap > 创建任务 </ContentWrap>
</template>
<script setup lang="ts">
defineOptions({ name: 'CreateTask' })
</script>
<style scoped lang="scss"></style>

41
src/views/system/taskinfo/index.vue → src/views/task/index.vue

@ -49,10 +49,10 @@
<el-button
type="primary"
plain
@click="openForm('create')"
v-hasPermi="['system:task-info:create']"
@click="push({ path: '/task/create' })"
>
<Icon icon="ep:plus" class="mr-5px" /> 新增
<Icon icon="ep:plus" class="mr-5px" /> 创建任务
</el-button>
<el-button
type="success"
@ -71,7 +71,7 @@
<ContentWrap>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
<el-table-column label="任务标题" align="center" prop="title" />
<el-table-column label="执行周期" align="center" prop="execCycle" >
<el-table-column label="执行周期" align="center" prop="execCycle">
<template #default="scope">
<dict-tag :type="DICT_TYPE.TASK_EXEC_TIME" :value="scope.row.execCycle" />
</template>
@ -81,14 +81,24 @@
<dict-tag :type="DICT_TYPE.TASK_TYPE" :value="scope.row.taskType" />
</template>
</el-table-column>
<el-table-column label="任务优先级" align="center" prop="priority" >
<el-table-column label="任务优先级" align="center" prop="priority">
<template #default="scope">
<dict-tag :type="DICT_TYPE.TASK_PRIORITY" :value="scope.row.priority" />
</template>
</el-table-column>
<el-table-column label="任务状态" align="center" prop="status" />
<el-table-column label="计划开始时间" align="center" prop="startDate" :formatter="dateFormatter"/>
<el-table-column label="计划结束时间" align="center" prop="endDate" :formatter="dateFormatter"/>
<el-table-column
label="计划开始时间"
align="center"
prop="startDate"
:formatter="dateFormatter"
/>
<el-table-column
label="计划结束时间"
align="center"
prop="endDate"
:formatter="dateFormatter"
/>
<!-- <el-table-column
label="任务创建时间"
align="center"
@ -106,12 +116,7 @@
<!-- <el-table-column label="执行到第几" align="center" prop="taskStep" /> -->
<el-table-column label="操作" align="center" min-width="120px">
<template #default="scope">
<el-button
link
type="danger"
@click="selectEnterprise(scope.row.id)"
>
<el-button link type="danger" @click="selectEnterprise(scope.row.id)">
企业范围
</el-button>
@ -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<TaskInfoVO[]>([]) //
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()
})
</script>
</script>
Loading…
Cancel
Save