From 289531285327406622554b65f1155c6321bc7842 Mon Sep 17 00:00:00 2001
From: zhouxueli <2841188632@qq.com>
Date: Fri, 25 Aug 2023 09:33:57 +0800
Subject: [PATCH] =?UTF-8?q?ios=E9=A1=B5=E9=9D=A2=E6=9B=B4=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/mine.js | 11 +-
src/router/index.js | 8 ++
src/views/documentView/docmentList.vue | 156 ++++++++++++++++++++++++
src/views/documentView/trainDocment.vue | 57 +++++++--
src/views/workOrder/accounting.vue | 29 ++---
5 files changed, 234 insertions(+), 27 deletions(-)
create mode 100644 src/views/documentView/docmentList.vue
diff --git a/src/api/mine.js b/src/api/mine.js
index b9c5ee05..8c4bb37a 100644
--- a/src/api/mine.js
+++ b/src/api/mine.js
@@ -109,7 +109,7 @@ export function updateAccountRecordInfo(data){
return request({
url:'/supplierAppV2/dispatchApp/accountRecord/updateAccountRecordInfo',
method:'POST',
- contentType:'application/json',
+ contentType:'multipart/form-data',
data
})
}
@@ -161,4 +161,13 @@ export function notifyInvoiceDetail(data){
contentType:'application/json',
data
})
+}
+// /supplier/supplierTrainingMaterials/pageList 获取培训材料列表
+export function pageList(data){
+ return request({
+ url:'/supplier/supplierTrainingMaterials/pageList',
+ method:'POST',
+ contentType:'application/json',
+ data
+ })
}
\ No newline at end of file
diff --git a/src/router/index.js b/src/router/index.js
index ae82a755..338fb65d 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -119,6 +119,14 @@ const routes = [
meta: {
title:'培训文档'
}
+ },
+ {
+ path: '/docmentList',
+ name: 'docmentList',
+ component:()=>import('@/views/documentView/docmentList.vue'),
+ meta: {
+ title:'文档资料'
+ }
}
]
diff --git a/src/views/documentView/docmentList.vue b/src/views/documentView/docmentList.vue
new file mode 100644
index 00000000..67aca40e
--- /dev/null
+++ b/src/views/documentView/docmentList.vue
@@ -0,0 +1,156 @@
+
+
+