Browse Source

修改任务类型返显

master
zy 2 months ago
parent
commit
2be178e4e4
  1. 4
      src/views/task/index.vue

4
src/views/task/index.vue

@ -104,7 +104,7 @@
</el-table-column> --> </el-table-column> -->
<el-table-column label="任务类型" align="center" prop="taskType"> <el-table-column label="任务类型" align="center" prop="taskType">
<template #default="scope"> <template #default="scope">
<dict-tag :type="DICT_TYPE.TASK_TYPE" :value="scope.row.taskType" /> <el-tag>{{ scope.row.taskTypeName }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<!-- <el-table-column label="任务优先级" align="center" prop="priority"> <!-- <el-table-column label="任务优先级" align="center" prop="priority">
@ -225,6 +225,7 @@ const { push } = useRouter()
const loading = ref(true) // const loading = ref(true) //
const list = ref<TaskInfoVO[]>([]) // const list = ref<TaskInfoVO[]>([]) //
const total = ref(0) // const total = ref(0) //
const taskTypeMap=ref()
const queryParams = reactive({ const queryParams = reactive({
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
@ -259,6 +260,7 @@ const getList = async () => {
} }
} }
// //
const selectEnterprise = async (id: number) => {} const selectEnterprise = async (id: number) => {}

Loading…
Cancel
Save