From c0e683992aca8cb19b2558e44928f31f98499515 Mon Sep 17 00:00:00 2001 From: yuejiayang <146344614+YangLei105@users.noreply.github.com> Date: Mon, 11 Nov 2024 23:14:10 +0800 Subject: [PATCH 1/2] =?UTF-8?q?2024.11.11=20=E6=96=87=E6=A1=A3=E6=94=B6?= =?UTF-8?q?=E9=9B=86=E6=9B=B4=E6=96=B0=20=E8=AF=A2=E4=BB=B7=E6=8A=A5?= =?UTF-8?q?=E4=BB=B7=E5=AE=A1=E6=89=B9=E9=80=9A=E7=9F=A5=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/auth/auth.js | 4 + src/api/inquiry/inquiryApplication.js | 2 +- src/api/quote/quote.js | 2 + src/views/modules/auth/authInfo.vue | 968 ++++++++++++++ src/views/modules/auth/authInquiry.vue | 194 +-- src/views/modules/auth/authQuote.vue | 1112 +++++++++++++++++ .../modules/eam/com_project_proof_record.vue | 8 +- src/views/modules/eam/eamProjectInfo.vue | 2 +- src/views/modules/eam/eamProjectPartInfo.vue | 5 + 9 files changed, 2206 insertions(+), 91 deletions(-) create mode 100644 src/views/modules/auth/authInfo.vue create mode 100644 src/views/modules/auth/authQuote.vue diff --git a/src/api/auth/auth.js b/src/api/auth/auth.js index 16d1cb3..928b90a 100644 --- a/src/api/auth/auth.js +++ b/src/api/auth/auth.js @@ -35,3 +35,7 @@ export const authRuleStepDelete = data => createAPI(`auth/authRuleStepDelete`,'p export const authRuleStepEdit = data => createAPI(`auth/authRuleStepEdit`,'post',data) export const getBusinessTypeList = data => createAPI(`auth/getBusinessTypeList`,'post',data) + +export const updateAuthHist = data => createAPI(`auth/updateAuthHist`,'post',data) + +export const searchAuthInfo = data => createAPI(`auth/searchAuthInfo`,'post',data) diff --git a/src/api/inquiry/inquiryApplication.js b/src/api/inquiry/inquiryApplication.js index 0752772..485be09 100644 --- a/src/api/inquiry/inquiryApplication.js +++ b/src/api/inquiry/inquiryApplication.js @@ -10,4 +10,4 @@ export const deleteInquiryApplicationInfo = data => createAPI("/inquiry/inquiryA export const searchUserAuthInquiryApplicationInfo = data => createAPI("/inquiry/inquiryApplication/searchUserAuthInquiryApplicationInfo", "post", data); -export const searchInquiryUserAuthInfo = data => createAPI("/inquiry/inquiryApplication/searchInquiryUserAuthInfo", "post", data); +export const searchAllInquiryQuoteInfo = data => createAPI("/inquiry/inquiryApplication/searchAllInquiryQuoteInfo", "post", data); diff --git a/src/api/quote/quote.js b/src/api/quote/quote.js index 1d250ac..1d6dda9 100644 --- a/src/api/quote/quote.js +++ b/src/api/quote/quote.js @@ -14,3 +14,5 @@ export const queryQuoteRoleUser = (data) => createAPI(`/quote/user`,'post',data) export const batchSaveQuote = (data) => createAPI(`/quote/inside/batch/save`,'post',data) export const updateQuoteStatus = (data) => createAPI(`/quote/update/status`,'post',data) + +export const searchUserAuthQuoteApplicationInfo = data => createAPI("/quote/searchUserAuthQuoteApplicationInfo", "post", data); diff --git a/src/views/modules/auth/authInfo.vue b/src/views/modules/auth/authInfo.vue new file mode 100644 index 0000000..829b1d8 --- /dev/null +++ b/src/views/modules/auth/authInfo.vue @@ -0,0 +1,968 @@ + + + diff --git a/src/views/modules/auth/authInquiry.vue b/src/views/modules/auth/authInquiry.vue index 8f16683..d8c7f60 100644 --- a/src/views/modules/auth/authInquiry.vue +++ b/src/views/modules/auth/authInquiry.vue @@ -150,6 +150,16 @@ + + + @@ -163,6 +173,46 @@ layout="total, sizes, prev, pager, next, jumper"> + + + +
+ + + + + + + + + + + + + + + + + + + + + {{'同意'}} + + {{'不同意'}} + + +
+
+
+
+ @@ -172,7 +222,7 @@ + + + diff --git a/src/views/modules/eam/com_project_proof_record.vue b/src/views/modules/eam/com_project_proof_record.vue index f5cfb10..2ce707a 100644 --- a/src/views/modules/eam/com_project_proof_record.vue +++ b/src/views/modules/eam/com_project_proof_record.vue @@ -1186,7 +1186,7 @@ } }); }, - getProofDocument() { + async getProofDocument() { let tempData = { site: this.$store.state.user.site, username: this.$store.state.user.name, @@ -1204,7 +1204,7 @@ page: 1, limit: 1000 } - getProofDocument(tempData).then(({data}) => { + return getProofDocument(tempData).then(({data}) => { if (data && data.code === 0) { this.proofDocumentList = data.page.list for (let i = 0; i < this.proofDocumentList.length; i++) { @@ -1405,7 +1405,8 @@ updateBy: this.$store.state.user.name, proofingStatus: '进行中', proofingResultStatus: row.proofingResultStatus, - remark: row.remark + remark: row.remark, + type: 1 } } else { if (this.modalData.cProjectTypeDb === '' || this.modalData.cProjectTypeDb === null || this.modalData.cProjectTypeDb === undefined) { @@ -1527,7 +1528,6 @@ testPartNo: row.testPartNo, proofingId: row.proofingId, proofingNo: row.proofingNo, - proofDocumentDataList: this.proofDocumentList, createBy: row.createBy, } if (tempData.createBy !== tempData.username) { diff --git a/src/views/modules/eam/eamProjectInfo.vue b/src/views/modules/eam/eamProjectInfo.vue index 890ed21..bcc1cd2 100644 --- a/src/views/modules/eam/eamProjectInfo.vue +++ b/src/views/modules/eam/eamProjectInfo.vue @@ -3676,7 +3676,7 @@ import {searchBusinessInfo7} from "../../../api/factory/site"; site: this.projectPartCurrentRow.site, buNo: this.projectPartCurrentRow.buNo, userName: this.$store.state.user.name, - limit: 10, + limit: -1, page: 1 } eamProjectPartSearch(queryProjectPart).then(({data}) => { diff --git a/src/views/modules/eam/eamProjectPartInfo.vue b/src/views/modules/eam/eamProjectPartInfo.vue index ec94a82..9daf071 100644 --- a/src/views/modules/eam/eamProjectPartInfo.vue +++ b/src/views/modules/eam/eamProjectPartInfo.vue @@ -222,6 +222,11 @@ 转正式料号 转量产 +
+ 新增打样 + 转正式料号 + 转量产 +
新增打样 转正式料号 From a9f798f50059e81af35e93c82534d65165204736 Mon Sep 17 00:00:00 2001 From: yuejiayang <146344614+YangLei105@users.noreply.github.com> Date: Mon, 11 Nov 2024 23:29:03 +0800 Subject: [PATCH 2/2] =?UTF-8?q?2024.11.11=20=E6=96=87=E6=A1=A3=E6=94=B6?= =?UTF-8?q?=E9=9B=86=E6=9B=B4=E6=96=B0=20=E8=AF=A2=E4=BB=B7=E6=8A=A5?= =?UTF-8?q?=E4=BB=B7=E5=AE=A1=E6=89=B9=E9=80=9A=E7=9F=A5=E6=B5=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/eam/com_project_proof_record.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/modules/eam/com_project_proof_record.vue b/src/views/modules/eam/com_project_proof_record.vue index 2ce707a..85389e4 100644 --- a/src/views/modules/eam/com_project_proof_record.vue +++ b/src/views/modules/eam/com_project_proof_record.vue @@ -39,7 +39,7 @@ :min-width="item.columnWidth" :label="item.columnLabel">