From b1affc2d916d1245b114064fa80bda03c285c423 Mon Sep 17 00:00:00 2001 From: kun <1422840143@qq.com> Date: Wed, 3 Apr 2024 18:19:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=8A=9F=E8=83=BD=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E4=BB=A5=E5=8F=8ABUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/js/api/loginSign.js | 21 +- src/assets/js/api/supplier.js | 6 + src/components/layout.vue | 11 +- src/components/layoutnalmal.vue | 11 +- src/components/menu.vue | 3 +- src/components/userChange.vue | 225 +++---- src/store/index.js | 11 + src/views/home/login_v2.vue | 3 +- .../allInfo/componentsModule/dataListData.vue | 553 ++++++++---------- .../hadRead/componentsModule/dataListData.vue | 509 +++++++--------- .../notRead/componentsModule/dataListData.vue | 553 ++++++++---------- .../projectSummary/supplierAudit.vue | 495 +++++++++++----- .../components/apply-info.vue | 328 +++++++---- .../componentsModule/dataFormData.vue | 168 ++++-- .../componentsModule/dataListData.vue | 243 ++++---- src/views/workSpace/index.vue | 123 +++- 16 files changed, 1850 insertions(+), 1413 deletions(-) diff --git a/src/assets/js/api/loginSign.js b/src/assets/js/api/loginSign.js index 7685ad63..bdf1f2ca 100644 --- a/src/assets/js/api/loginSign.js +++ b/src/assets/js/api/loginSign.js @@ -18,4 +18,23 @@ export const getOneComputerAuthApi = data => get('xmgl/computerAuth/getOneComput export const addComputerAuthApi = data => post('xmgl/computerAuth/add', data); //查询服务器认证信息 -export const getUserByUidApi = data => post('xmgl/base/getUserByUid', data); //通过uid 做无码登录 \ No newline at end of file +export const getUserByUidApi = data => post('xmgl/base/getUserByUid', data); //通过uid 做无码登录 + +// 获取图形验证码 +export const getImgCodeApi = data => get('xmgl/xzRegistry/validCode', data); +// 修改密码-搭配图形验证码 +export const imgCodeUpdatePwApi = data => post('xmgl/systemUser/xz/updatePw', data); + +// 安全日志 +export const getSafeLogListApi = data => post('xmgl/operationLog/list', data); +export const exportSafeLogListApi = data => post('xmgl/operationLog/exportXls', data); + +// 消息中心 +export const getInfoListApi = data => get('xmgl/xzNotice/page', data); +export const markInfoReadApi = data => post('xmgl/xzNotice/markRead', data); +export const deleteInfoApi = data => post('xmgl/xzNotice/delete', data); + +// 工作台用户绑定的组织架构 +export const getGroupListApi = data => post('xmgl/company/getTenantOrgTreeList', data); + + diff --git a/src/assets/js/api/supplier.js b/src/assets/js/api/supplier.js index 0423bd92..2d1fab3e 100644 --- a/src/assets/js/api/supplier.js +++ b/src/assets/js/api/supplier.js @@ -5,6 +5,8 @@ import {get,post} from '../http' // 供应商基本信息 export const getSupplierInfoApi = data => post('xmgl/xzSupplier/getXzSupplierByUserId', data); +// 供应商基本信息-记录 +export const getSupplierInfoRecordApi = data => post('xmgl/xzSupplierRecord/getXzSupplierByXzSupplierQualificationApplyId', data); // 企业类型列表 export const getCompanyTypeApi = data => get('xmgl/xzSupplierType/list', data); @@ -14,6 +16,8 @@ export const infoReportSaveApi = data => post('xmgl/xzSupplier/saveSupplier', d // 资质文件 export const getQualificationFileApi = data => post('xmgl/xzSupplierQualification/list', data); +// 资质文件-记录 +export const getQualificationFileRecordApi = data => get('xmgl/xzSupplierQualificationRecord/list', data); export const addQualificationFileApi = data => post('xmgl/xzSupplierQualification/add', data); export const editQualificationFileApi = data => post('xmgl/xzSupplierQualification/edit', data); export const deleteQualificationFileApi = data => post('xmgl/xzSupplierQualification/delete', data); @@ -21,3 +25,5 @@ export const deleteQualificationFileApi = data => post('xmgl/xzSupplierQualific // 资质申请 export const getQualificationApplyListApi = data => get('xmgl/xzSupplierQualificationApply/page', data); export const operateQualificationApplyApi = data => post('xmgl/xzSupplierQualificationApply/apply', data); +export const auditQualificationApplyApi = data => post('xmgl/xzSupplierQualificationApply/edit', data); +export const qualificationApplyInfoApi = data => get('xmgl/xzSupplierQualificationApply/queryById', data); diff --git a/src/components/layout.vue b/src/components/layout.vue index de669680..b486567d 100644 --- a/src/components/layout.vue +++ b/src/components/layout.vue @@ -242,11 +242,12 @@ export default { backtoIndex() { // window._paq.push(['trackEvent', '点击', '返回主菜单','返回主菜单' ]) var url = window.location.href; - if (url.indexOf("equipmentCenter.html") != -1) { - this.$router.push("/equipmentCenterIndx"); - } else { - this.$router.push("/projectIndex"); - } + this.$router.push("/workSpace"); + // if (url.indexOf("equipmentCenter.html") != -1) { + // this.$router.push("/equipmentCenterIndx"); + // } else { + // this.$router.push("/projectIndex"); + // } }, handleSelect(key, keyPath) { diff --git a/src/components/layoutnalmal.vue b/src/components/layoutnalmal.vue index 391ca16d..b436881c 100644 --- a/src/components/layoutnalmal.vue +++ b/src/components/layoutnalmal.vue @@ -184,11 +184,12 @@ export default { backtoIndex() { // window._paq.push(['trackEvent', '点击', '返回主菜单','返回主菜单' ]) var url = window.location.href; - if (url.indexOf("equipmentCenter.html") != -1) { - this.$router.push("/equipmentCenterIndx"); - } else { - this.$router.push("/projectIndex"); - } + this.$router.push("/workSpace"); + // if (url.indexOf("equipmentCenter.html") != -1) { + // this.$router.push("/equipmentCenterIndx"); + // } else { + // this.$router.push("/projectIndex"); + // } }, handleSelect(key,keyPath) { diff --git a/src/components/menu.vue b/src/components/menu.vue index bed94b5c..2b44d266 100644 --- a/src/components/menu.vue +++ b/src/components/menu.vue @@ -49,7 +49,8 @@ export default { }, methods: { backtoIndex() { - this.$router.push("/projectIndex"); + // this.$router.push("/projectIndex"); + this.$router.push("/workSpace"); }, handleSelect(url) { diff --git a/src/components/userChange.vue b/src/components/userChange.vue index 0e8d9214..6776bc3f 100644 --- a/src/components/userChange.vue +++ b/src/components/userChange.vue @@ -8,72 +8,55 @@ v-model="visible" >