From ed3053646eb6d5ec3f3c5776622e69462e5b8025 Mon Sep 17 00:00:00 2001
From: yunuo970428 <405378304@qq.com>
Date: Thu, 30 Nov 2023 15:30:55 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=8D=B0=E7=AB=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../src/api/Common/dictCommon.js | 9 +
supervise-enterprise-ui/src/api/Yjsq/index.js | 268 +++---
.../src/views/Yjsq/AddYjsq.vue | 839 +++++++++---------
.../src/views/Yjsq/index.vue | 763 ++++++++--------
.../paichanguanli/commission.vue | 135 ++-
5 files changed, 1051 insertions(+), 963 deletions(-)
create mode 100644 supervise-enterprise-ui/src/api/Common/dictCommon.js
diff --git a/supervise-enterprise-ui/src/api/Common/dictCommon.js b/supervise-enterprise-ui/src/api/Common/dictCommon.js
new file mode 100644
index 00000000..62bd09ea
--- /dev/null
+++ b/supervise-enterprise-ui/src/api/Common/dictCommon.js
@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+
+// 获取人员
+export function getUserListAll(data) {
+ return request({
+ url: '/portal/v1/sysuser/getUserListAll',
+ method: 'get'
+ })
+}
diff --git a/supervise-enterprise-ui/src/api/Yjsq/index.js b/supervise-enterprise-ui/src/api/Yjsq/index.js
index bec8eab5..73d32e5c 100644
--- a/supervise-enterprise-ui/src/api/Yjsq/index.js
+++ b/supervise-enterprise-ui/src/api/Yjsq/index.js
@@ -1,135 +1,133 @@
-import request from '@/utils/request'
-// 入库导入的记录
-export default {
-
- // 查询分页列表
- listPage: function(params) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/listPage',
- method: 'post',
- data: params
- })
- },
- // 保存列表
- sealrecordSave: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/save',
- method: 'post',
- data: data,
- headers: {
- 'Content-Type': 'application/json'
- }
- })
- },
- // 提交列表
- sealrecordSubmit: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/submit',
- method: 'post',
- data: data,
- headers: {
- 'Content-Type': 'application/json'
- }
- })
- },
- // 保存列表
- sealrecordSave: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/save',
- method: 'post',
- data: data,
- headers: {
- 'Content-Type': 'application/json'
- }
- })
- },
- // 根据SID获取一条记录
- fetchDetailsBySid: function(sid) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/fetchDetailsBySid/' + sid,
- method: 'get',
- })
- },
- // 流程历史流转记录
- flowRecord: function(procInsId,deployId) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/task/flowRecord/' + procInsId + "/"+ deployId,
- method: 'get',
- })
- },
- // 根据SID获取一条记录
- delBySids: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/delBySids',
- method: 'post',
- data: data,
- })
- },
- // 办理待办
- complete: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/complete',
- method: 'post',
- data: data,
- })
- },
- // 根据SID获取一条记录
- upload: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/upload',
- method: 'post',
- data: data,
- })
- },
- // 查看总代办列表
- pagerList: function(params) {
- return request({
- url: '/enterprisecentre/v1/flow/todoAllTaskList/' + params.params.userSid,
- method: 'post',
- data: params,
- headers: {
- 'Content-Type': 'application/json'
- }
- })
- },
- // 审批流程(同意)获取下一环节
- getNextNodesForSubmit: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/getNextNodesForSubmit',
- method: 'post',
- params: data
- })
- },
- // 审批流程(驳回)获取下一环节
- getPreviousNodesForReject: function(data) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/getPreviousNodesForReject',
- method: 'post',
- params: data
- })
- },
- // 流程审批(驳回)
- reject: function(params) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/reject',
- method: 'post',
- data: params
- })
- },
- // 流程审批(终止)
- breakProcess: function(params) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/breakProcess',
- method: 'post',
- data: params
- })
- },
- // 流程审批(撤回)
- revokeProcess: function(params) {
- return request({
- url: '/enterprisecentre/v1/sealrecord/revokeProcess',
- method: 'post',
- data: params
- })
- },
-}
+import request from '@/utils/request'
+// 入库导入的记录
+export default {
+
+ // 查询分页列表
+ listPage: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/listPage',
+ method: 'post',
+ data: params
+ })
+ },
+ // 提交列表
+ sealrecordSubmit: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/submit',
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+ },
+ // 保存列表
+ sealrecordSave: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/save',
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+ },
+ // 根据SID获取一条记录
+ fetchDetailsBySid: function(sid) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/fetchDetailsBySid/' + sid,
+ method: 'get'
+ })
+ },
+ // 流程历史流转记录
+ flowRecord: function(procInsId, deployId) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/task/flowRecord/' + procInsId + '/' + deployId,
+ method: 'get'
+ })
+ },
+ // 根据SID获取一条记录
+ delBySids: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/delBySids',
+ method: 'post',
+ data: data
+ })
+ },
+ // 办理待办
+ complete: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/complete',
+ method: 'post',
+ data: data
+ })
+ },
+ // 流程审批(加签)
+ delegate: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/delegate',
+ method: 'post',
+ data: params,
+ headers: { 'Content-Type': 'application/json' }
+ })
+ },
+ // 根据SID获取一条记录
+ upload: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/upload',
+ method: 'post',
+ data: data
+ })
+ },
+ // 查看总代办列表
+ pagerList: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/flow/todoAllTaskList/' + params.params.userSid,
+ method: 'post',
+ data: params,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+ },
+ // 审批流程(同意)获取下一环节
+ getNextNodesForSubmit: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/getNextNodesForSubmit',
+ method: 'post',
+ params: data
+ })
+ },
+ // 审批流程(驳回)获取下一环节
+ getPreviousNodesForReject: function(data) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/getPreviousNodesForReject',
+ method: 'post',
+ params: data
+ })
+ },
+ // 流程审批(驳回)
+ reject: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/reject',
+ method: 'post',
+ data: params
+ })
+ },
+ // 流程审批(终止)
+ breakProcess: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/breakProcess',
+ method: 'post',
+ data: params
+ })
+ },
+ // 流程审批(撤回)
+ revokeProcess: function(params) {
+ return request({
+ url: '/enterprisecentre/v1/sealrecord/revokeProcess',
+ method: 'post',
+ data: params
+ })
+ }
+}
diff --git a/supervise-enterprise-ui/src/views/Yjsq/AddYjsq.vue b/supervise-enterprise-ui/src/views/Yjsq/AddYjsq.vue
index 2bf5879b..c3ca96c2 100644
--- a/supervise-enterprise-ui/src/views/Yjsq/AddYjsq.vue
+++ b/supervise-enterprise-ui/src/views/Yjsq/AddYjsq.vue
@@ -1,420 +1,419 @@
-
-