From d6eb9442e5e8b84abc3cdc6b24a918c069ac0144 Mon Sep 17 00:00:00 2001 From: "DESKTOP-00SUCB6\\Administrator" Date: Fri, 24 Dec 2021 09:57:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E8=B5=84=E8=B4=A8=EF=BC=8C?= =?UTF-8?q?=E6=9C=9F=E9=99=90=E4=B8=8E=E7=8A=B6=E6=80=81=E7=9A=84=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 +- package.json | 1 + public/h5/info.html | 2 +- src/api/system/dept.js | 10 ++ src/components/HeaderSearch/index.vue | 3 +- src/layout/components/TagsView/ScrollPane.vue | 4 +- src/views/system/dept/index.vue | 99 +++++++++++++++++-- src/views/system/qualification/index.vue | 30 +++++- src/views/system/user/index.vue | 34 +++++-- vue.config.js | 2 +- 10 files changed, 164 insertions(+), 25 deletions(-) diff --git a/.env.development b/.env.development index f571653..6012f8d 100644 --- a/.env.development +++ b/.env.development @@ -2,10 +2,10 @@ ENV = 'development' # 若依管理系统/开发环境 -#VUE_APP_BASE_API = 'http://121.36.65.171:9527' +VUE_APP_BASE_API = 'http://121.36.65.171:9527' VUE_APP_H5_QR = 'http://172.119.51.219/h5/invitation.html' VUE_APP_H5_INFO = 'http://172.119.51.219/h5/info.html' -VUE_APP_BASE_API = 'http://172.119.50.181:9527' +#VUE_APP_BASE_API = 'http://172.119.50.181:9527' # 路由懒加载 diff --git a/package.json b/package.json index 7d3df81..d0cd162 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "js-beautify": "1.13.0", "js-cookie": "2.2.1", "jsencrypt": "3.0.0-rc.1", + "node-sass": "^6.0.1", "nprogress": "0.2.0", "quill": "1.3.7", "screenfull": "5.0.2", diff --git a/public/h5/info.html b/public/h5/info.html index 5a3e5b4..62513d7 100644 --- a/public/h5/info.html +++ b/public/h5/info.html @@ -344,7 +344,7 @@ // 默认加载验证码 $(document).ready(function(){ enterpriseInfo() - getEnterpriseOptions() + // getEnterpriseOptions() }) diff --git a/src/api/system/dept.js b/src/api/system/dept.js index 2804676..f06abf4 100644 --- a/src/api/system/dept.js +++ b/src/api/system/dept.js @@ -9,6 +9,16 @@ export function listDept(query) { }) } +// 根据企业名称查询资质 +export function getQualificationByDeptId(data) { + return request({ + url: '/system/dept/getQualificationByDeptId', + method: 'post', + data: data + }) +} + + // 查询部门列表(排除节点) export function listDeptExcludeChild(deptId) { return request({ diff --git a/src/components/HeaderSearch/index.vue b/src/components/HeaderSearch/index.vue index ce9f305..6e92377 100644 --- a/src/components/HeaderSearch/index.vue +++ b/src/components/HeaderSearch/index.vue @@ -167,7 +167,8 @@ export default { display: inline-block; vertical-align: middle; - ::v-deep .el-input__inner { + // ::v-deep .el-input__inner { + /deep/ .el-input__inner { border-radius: 0; border: 0; padding-left: 0; diff --git a/src/layout/components/TagsView/ScrollPane.vue b/src/layout/components/TagsView/ScrollPane.vue index bb753a1..057e263 100644 --- a/src/layout/components/TagsView/ScrollPane.vue +++ b/src/layout/components/TagsView/ScrollPane.vue @@ -82,13 +82,13 @@ export default { position: relative; overflow: hidden; width: 100%; - ::v-deep { + // ::v-deep { .el-scrollbar__bar { bottom: 0px; } .el-scrollbar__wrap { height: 49px; } - } + // } } diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index 5dca45c..103bd0c 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -49,16 +49,21 @@ > - + - - --> + - + + + + + + + {{qualificationFrom.qualificationName}} + + + {{qualificationFrom.dateOfIssue}} + + + {{qualificationFrom.issuingAuthority}} + + + + + {{qualificationFrom.qualificationCertificateNumber}} + + + {{qualificationFrom.certificateValidityPeriod}} + + + + + + + + + + + + + + + + + + + + + + + + @@ -140,7 +210,7 @@