From 53f9a3ef90a7d12b92a1142d0b4f55c74e1efcab Mon Sep 17 00:00:00 2001
From: hongchao <3228015117@qq.com>
Date: Thu, 16 Jan 2025 15:34:56 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E7=AD=BE=E9=85=8D=E7=BD=AE=E7=AE=A1?=
 =?UTF-8?q?=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
 src/api/countersign/countersign.js            |  48 +++
 .../material/countersign/config/index.vue     | 382 ++++++++++++++++++
 2 files changed, 430 insertions(+)
 create mode 100644 src/api/countersign/countersign.js
 create mode 100644 src/views/material/countersign/config/index.vue
diff --git a/src/api/countersign/countersign.js b/src/api/countersign/countersign.js
new file mode 100644
index 00000000..7d95530a
--- /dev/null
+++ b/src/api/countersign/countersign.js
@@ -0,0 +1,48 @@
+import request from '@/utils/request'
+
+//会签配置管理列表信息
+export function getConfigList(query) {
+  return request({
+      url: '/material/sign_config/list',
+      method: 'get',
+      params: query,
+  })
+}
+
+// 会签配置管理--新增
+export function addConfig(data) {
+  return request({
+      url: '/material/sign_config/addConfig',
+      method: 'post',
+      data: data,
+  })
+}
+
+
+//会签配置管理--详细信息
+export function getConfigDetail(id) {
+  return request({
+      url: '/material/sign_config/'+ id,
+      method: 'get',
+  })
+}
+
+// 会签配置管理--修改
+export function editConfig(data) {
+  return request({
+      url: '/material/sign_config/editConfig',
+      method: 'post',
+      data: data,
+  })
+}
+
+
+// 会签配置管理--删除
+export function delConfig(id) {
+  return request({
+      url: '/material/sign_config/delConfig/' + id,
+      method: 'post',
+  })
+}
+
+
diff --git a/src/views/material/countersign/config/index.vue b/src/views/material/countersign/config/index.vue
new file mode 100644
index 00000000..8c37c1c6
--- /dev/null
+++ b/src/views/material/countersign/config/index.vue
@@ -0,0 +1,382 @@
+
+  
+    
+      
+        
+      
+
+      
+        搜索
+        重置
+      
+    
+    
+      
+        新增
+      
+      
+    
+
+    
+      
+        
+          {{
+            (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
+          }}
+        
+      
+      
+      
+      
+
+      
+        
+          
+            编辑
+          
+          
+            删除
+          
+        
+      
+    
+
+    
+
+    
+    
+      
+        
+          
+            
+            
+              
+              
+            
+          
+        
+
+        
+          
+            
+            
+              
+              
+            
+          
+        
+
+        
+          
+            
+              
+            
+          
+        
+
+      
+      
+    
+  
 
+ 
+  
+  
+  
\ No newline at end of file