diff --git a/src/api/process/index.ts b/src/api/process/index.ts
index 6dbd33a..6ae5a0a 100644
--- a/src/api/process/index.ts
+++ b/src/api/process/index.ts
@@ -90,4 +90,21 @@ export function processComplete(config : Object) { //流程任务完成
method: 'POST',
data: config
})
-}
\ No newline at end of file
+}
+
+export function myApplyProcessListApi(config : object) { // 本人发起列表
+ return http({
+ url: '/act/task/myApplyProcessList',
+ method: 'GET',
+ data: config
+ })
+}
+
+export function callBackProcessApi(config : object) { // 取回流程
+ return http({
+ url: '/act/task/callBackProcess',
+ method: 'PUT',
+ data: config
+ })
+}
+
diff --git a/src/pages-process/components/myTask.vue b/src/pages-process/components/myTask.vue
index 284b8f8..3a0ee90 100644
--- a/src/pages-process/components/myTask.vue
+++ b/src/pages-process/components/myTask.vue
@@ -1,30 +1,30 @@
-
+
加载中...
-
+
当前环节:
-
+
{{item.taskName}}
-
-
+
+
流程名称:
-
+
{{item.processDefinitionName}}
-
+
{{item.taskBeginTime?item.taskBeginTime.substring(0,10):''}}
-
+
{{item.processApplyUserName}}
@@ -52,39 +52,21 @@
- (modalShow = false)"
- >
+ (modalShow = false)">
-
+
+
\ No newline at end of file
diff --git a/src/pages.json b/src/pages.json
index efd21d0..73adb11 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -480,6 +480,15 @@
"navigationBarTitleText": "流程审批导航"
}
},
+ {
+ "path": "myApplyProcess",
+ "type": "page",
+ "layout": "default",
+ "style": {
+ "navigationStyle": "custom",
+ "navigationBarTitleText": "我发起流程"
+ }
+ },
{
"path": "taskHandle",
"type": "page",
diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue
index 566d0ed..8829503 100644
--- a/src/pages/index/index.vue
+++ b/src/pages/index/index.vue
@@ -48,22 +48,13 @@
-
+
-
@@ -86,15 +77,9 @@