Browse Source

修改任务类型返显

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

Loading…
Cancel
Save