From 899a62c60f1d399effaff4e1b5bbf0492d474de6 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Mon, 02 Feb 2026 10:04:59 +0800
Subject: [PATCH] feat:应用配置

---
 applications/task-work-order/src/views/orderView/appConfiguration/materials/接口文档.txt  |    0 
 applications/task-work-order/src/views/orderView/appConfiguration/inventory/index.vue |   20 ++++++
 applications/task-work-order/src/views/orderView/appConfiguration/inventory/接口文档.txt  |  105 +++++++++++++++++++++++++++++++++++
 applications/task-work-order/src/views/orderView/appConfiguration/materials/index.vue |   20 ++++++
 4 files changed, 145 insertions(+), 0 deletions(-)

diff --git a/applications/task-work-order/src/views/orderView/appConfiguration/inventory/index.vue b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/index.vue
new file mode 100644
index 0000000..e30cfe6
--- /dev/null
+++ b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/index.vue
@@ -0,0 +1,20 @@
+<template>
+ <div>
+    实施清单
+ </div>
+</template>
+
+<script setup >
+/**
+ * @description index
+ * @date 2026-02-02 (周一) 09:25:52
+ */
+defineOptions({
+ name: 'index'
+})
+
+
+</script>
+
+<style scoped >
+</style>
\ No newline at end of file
diff --git "a/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt" "b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
new file mode 100644
index 0000000..e89ba3a
--- /dev/null
+++ "b/applications/task-work-order/src/views/orderView/appConfiguration/inventory/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
@@ -0,0 +1,105 @@
+
+
+## 分页
+
+
+**接口地址**:`/implement/gdImplementList/page`
+
+
+**请求方式**:`GET`
+
+
+**请求数据类型**:`application/x-www-form-urlencoded`
+
+
+**响应数据类型**:`*/*`
+
+
+**接口描述**:<p>传入gdImplementList</p>
+
+
+
+**请求参数**:
+
+
+**请求参数**:
+
+
+| 参数名称 | 参数说明 | 请求类型    | 是否必须 | 数据类型 | schema |
+| -------- | -------- | ----- | -------- | -------- | ------ |
+|areaCode|所属区划编码|query|false|string||
+|current|当前页|query|false|integer(int32)||
+|matterCode|事项编码|query|false|string||
+|matterName|事项名称|query|false|string||
+|size|每页的数量|query|false|integer(int32)||
+
+
+**响应状态**:
+
+
+| 状态码 | 说明 | schema |
+| -------- | -------- | ----- | 
+|200|OK|R«IPage«GdImplementListVO»»|
+|401|Unauthorized||
+|403|Forbidden||
+|404|Not Found||
+
+
+**响应参数**:
+
+
+| 参数名称 | 参数说明 | 类型 | schema |
+| -------- | -------- | ----- |----- | 
+|code|状态码|integer(int32)|integer(int32)|
+|data|承载数据|IPage«GdImplementListVO»|IPage«GdImplementListVO»|
+|&emsp;&emsp;current||integer(int64)||
+|&emsp;&emsp;pages||integer(int64)||
+|&emsp;&emsp;records||array|GdImplementListVO|
+|&emsp;&emsp;&emsp;&emsp;areaCode|所属区划编码|string||
+|&emsp;&emsp;&emsp;&emsp;areaName|所属区划名称|string||
+|&emsp;&emsp;&emsp;&emsp;catalogCode|目录编码|string||
+|&emsp;&emsp;&emsp;&emsp;id|主键id|integer||
+|&emsp;&emsp;&emsp;&emsp;implementCode|实施编码|string||
+|&emsp;&emsp;&emsp;&emsp;implementName|实施清单名称|string||
+|&emsp;&emsp;&emsp;&emsp;matterCode|事项编码|string||
+|&emsp;&emsp;&emsp;&emsp;matterName|事项名称|string||
+|&emsp;&emsp;&emsp;&emsp;orgCode|所属机构编码|string||
+|&emsp;&emsp;&emsp;&emsp;orgName|所属机构名称|string||
+|&emsp;&emsp;&emsp;&emsp;processDefinitionId|流程定义主键|string||
+|&emsp;&emsp;&emsp;&emsp;processInstanceId|流程实例主键|string||
+|&emsp;&emsp;size||integer(int64)||
+|&emsp;&emsp;total||integer(int64)||
+|msg|返回消息|string||
+|success|是否成功|boolean||
+
+
+**响应示例**:
+```javascript
+{
+	"code": 0,
+	"data": {
+		"current": 0,
+		"pages": 0,
+		"records": [
+			{
+				"areaCode": "",
+				"areaName": "",
+				"catalogCode": "",
+				"id": 0,
+				"implementCode": "",
+				"implementName": "",
+				"matterCode": "",
+				"matterName": "",
+				"orgCode": "",
+				"orgName": "",
+				"processDefinitionId": "",
+				"processInstanceId": ""
+			}
+		],
+		"size": 0,
+		"total": 0
+	},
+	"msg": "",
+	"success": true
+}
+```
\ No newline at end of file
diff --git a/applications/task-work-order/src/views/orderView/appConfiguration/materials/index.vue b/applications/task-work-order/src/views/orderView/appConfiguration/materials/index.vue
new file mode 100644
index 0000000..b6161c6
--- /dev/null
+++ b/applications/task-work-order/src/views/orderView/appConfiguration/materials/index.vue
@@ -0,0 +1,20 @@
+<template>
+ <div>
+    材料配置
+ </div>
+</template>
+
+<script setup >
+/**
+ * @description index
+ * @date 2026-02-02 (周一) 09:26:21
+ */
+defineOptions({
+ name: 'index'
+})
+
+
+</script>
+
+<style scoped >
+</style>
\ No newline at end of file
diff --git "a/applications/task-work-order/src/views/orderView/appConfiguration/materials/\346\216\245\345\217\243\346\226\207\346\241\243.txt" "b/applications/task-work-order/src/views/orderView/appConfiguration/materials/\346\216\245\345\217\243\346\226\207\346\241\243.txt"
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ "b/applications/task-work-order/src/views/orderView/appConfiguration/materials/\346\216\245\345\217\243\346\226\207\346\241\243.txt"

--
Gitblit v1.9.3