diff --git a/src/api/system/partition.js b/src/api/system/partition.js
new file mode 100644
index 0000000..bcf7339
--- /dev/null
+++ b/src/api/system/partition.js
@@ -0,0 +1,54 @@
+import request from '@/utils/request'
+
+// 查询任务细分字典列表
+export function listPartition(query) {
+ return request({
+ url: '/system/partition/list',
+ method: 'get',
+ params: query
+ })
+}
+// 任务类型名称下拉框
+export function selectTaskTypeList(query) {
+ return request({
+ url: '/system/taskType/selectTaskTypeList',
+ method: 'get',
+ params: query
+ })
+}
+
+
+// 查询任务细分字典详细
+export function getPartition(id) {
+ return request({
+ url: '/system/partition/' + id,
+ method: 'get'
+ })
+}
+
+// 新增任务细分字典
+export function addPartition(data) {
+ return request({
+ url: '/system/partition/add',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改任务细分字典
+export function updatePartition(data) {
+ return request({
+ url: '/system/partition/edit',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除任务细分字典
+export function delPartition(id) {
+ return request({
+ url: '/system/partition/' + id,
+ method: 'delete'
+ })
+}
+
diff --git a/src/api/system/taskType.js b/src/api/system/taskType.js
new file mode 100644
index 0000000..1261b77
--- /dev/null
+++ b/src/api/system/taskType.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询任务类型字典列表
+export function listTaskType(query) {
+ return request({
+ url: '/system/taskType/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询任务类型字典详细
+export function getTaskType(id) {
+ return request({
+ url: '/system/taskType/' + id,
+ method: 'get'
+ })
+}
+
+// 新增任务类型字典
+export function addTaskType(data) {
+ return request({
+ url: '/system/taskType/add',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改任务类型字典
+export function updateTaskType(data) {
+ return request({
+ url: '/system/taskType/edit',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除任务类型字典
+export function delTaskType(id) {
+ return request({
+ url: '/system/taskType/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/views/system/partition/index.vue b/src/views/system/partition/index.vue
new file mode 100644
index 0000000..18a236c
--- /dev/null
+++ b/src/views/system/partition/index.vue
@@ -0,0 +1,422 @@
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/system/taskType/index.vue b/src/views/system/taskType/index.vue
new file mode 100644
index 0000000..9558c1b
--- /dev/null
+++ b/src/views/system/taskType/index.vue
@@ -0,0 +1,308 @@
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+