From 2484cda43d28c9334cd85b253b51bbb704c6dea5 Mon Sep 17 00:00:00 2001 From: gongjiale <942894820@qq.com> Date: Fri, 14 Oct 2022 15:39:18 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AE=8C=E6=88=90=E8=83=BD=E5=8A=9B=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1-=E8=83=BD=E5=8A=9B=E4=B8=8A=E6=9E=B6=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=EF=BC=9A=E6=9F=A5=E7=9C=8B=E8=AF=A6=E6=83=85=EF=BC=8C?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=BC=80=E5=A7=8B=E6=97=B6=E9=97=B4=E3=80=81?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E7=BB=93=E6=9D=9F=E6=97=B6=E9=97=B4=E4=B8=8D?= =?UTF-8?q?=E8=BD=AC=E8=A1=8C=EF=BC=9B=202.=E5=AE=8C=E6=88=90=E8=83=BD?= =?UTF-8?q?=E5=8A=9B=E7=BB=9F=E8=AE=A1-=E8=83=BD=E5=8A=9B=E4=B8=8A?= =?UTF-8?q?=E6=9E=B6=E7=BB=9F=E8=AE=A1=EF=BC=9A=E6=90=9C=E7=B4=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6=E4=B8=AD=E7=9A=84=E7=8A=B6=E6=80=81=E5=92=8C=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E4=B8=AD=E7=9A=84=E7=8A=B6=E6=80=81=E8=AF=B7=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/abilityDetails.vue | 42 +++++++++++++++++-- .../views/modules/abilityStatistics/index.vue | 31 +++++++++----- 2 files changed, 59 insertions(+), 14 deletions(-) diff --git a/back/src/views/modules/abilityStatistics/components/abilityDetails.vue b/back/src/views/modules/abilityStatistics/components/abilityDetails.vue index 0783f165..9a72879f 100644 --- a/back/src/views/modules/abilityStatistics/components/abilityDetails.vue +++ b/back/src/views/modules/abilityStatistics/components/abilityDetails.vue @@ -88,16 +88,49 @@
审批详情
-
- + + + + + + + + + + + + + + + +
-
+ @@ -228,6 +261,7 @@ export default { } } } + console.log("this.dataSource.data[0]========",this.dataSource.data[0][1]) }, // init () { // this.visible = true diff --git a/back/src/views/modules/abilityStatistics/index.vue b/back/src/views/modules/abilityStatistics/index.vue index e95ec4b3..75686078 100644 --- a/back/src/views/modules/abilityStatistics/index.vue +++ b/back/src/views/modules/abilityStatistics/index.vue @@ -38,7 +38,7 @@ - + 审核状态: - - + + + @@ -371,8 +372,9 @@ export default { { name: '组件服务', key: 1 }, { name: '应用资源', key: 2 }, { name: '基础设施', key: 3 }, - { name: '数据资源', key: 3 }, - { name: '知识库', key: 3 } + { name: '数据资源', key: 4 }, + { name: '知识库', key: 5 }, + { name: '会议室', value: 6} ], tableData: [], tableData2: [ @@ -396,7 +398,8 @@ export default { { name: '图层服务', value: 2 }, { name: '通用开发组件', value: 3 }, { name: '页面开发组件', value: 4 }, - { name: '应用资源', value: 5 } + { name: '应用资源', value: 5 }, + { name: '会议室', value: 6} ], // 类型备选列表 detailFlag: false, // 明细返回按钮显示标志位 startDate: '', // 开始时间 @@ -478,7 +481,9 @@ export default { } else if (this.examineStatus == '0') { this.status = '审核中' } else if (this.examineStatus == '1') { - this.status = '审核完成' + this.status = '通过' + }else if (this.examineStatus == '2') { + this.status = '不通过' } else { this.status = this.examineStatus } @@ -534,7 +539,9 @@ export default { } else if (this.examineStatus == '0') { this.status = '审核中' } else if (this.examineStatus == '1') { - this.status = '审核完成' + this.status = '通过' + } else if (this.examineStatus == '2') { + this.status = '不通过' } else { this.status = this.examineStatus } @@ -627,13 +634,15 @@ export default { }, // 能力上架明细 getOneDetail (page) { - var passAndReview = '' // 转变"审核完成"字段为通过 + var passAndReview = '' // 转变"通过"字段为通过 if (this.examineStatus == '-1') { this.status = '' } else if (this.examineStatus == '0') { this.status = '审核中' } else if (this.examineStatus == '1') { this.status = '通过' + } else if (this.examineStatus == '2') { + this.status = '不通过' } else { this.status = this.examineStatus } @@ -657,13 +666,15 @@ export default { }, // 能力使用明细 getTwoDetail (page) { - var passAndReview = '' // 转变"审核完成"字段为通过 + var passAndReview = '' // 转变"通过"字段为通过 if (this.examineStatus == '-1') { this.status = '' } else if (this.examineStatus == '0') { this.status = '审核中' } else if (this.examineStatus == '1') { this.status = '通过' + } else if (this.examineStatus == '2') { + this.status = '不通过' } else { this.status = this.examineStatus }