From 18eb8dc2074411e9a63390d03cc9893b5cc962c7 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Thu, 16 Sep 2021 09:43:29 +0800
Subject: [PATCH] 保安公司智能分期 + 其他
---
src/views/securityAnalysis/index.vue | 56 ++++++++++++++++++++++++++++++++++++++++++++------------
1 files changed, 44 insertions(+), 12 deletions(-)
diff --git a/src/views/securityAnalysis/index.vue b/src/views/securityAnalysis/index.vue
index 331d3fa..4e3ad01 100644
--- a/src/views/securityAnalysis/index.vue
+++ b/src/views/securityAnalysis/index.vue
@@ -54,26 +54,27 @@
:title="titles"
append-to-body
:visible.sync="dialogVisible"
- top="10vh"
+ top="9vh"
>
- <certificate
+ <situation
:card="{ deptid: deptid, jurisdiction: jurisdiction }"
v-if="sees == 1"
>
<!-- 保安员审查情况统计 -->
- </certificate>
- <examination
+ </situation>
+
+ <certificate
:card="{ deptid: deptid, jurisdiction: jurisdiction }"
v-if="sees == 2"
>
- <!-- 保安员考试情况统计 -->
- </examination>
- <situation
+ <!-- 保安员持证情况统计 -->
+ </certificate>
+ <examination
:card="{ deptid: deptid, jurisdiction: jurisdiction }"
v-if="sees == 3"
>
- <!-- 保安员审查情况统计 -->
- </situation>
+ <!-- 保安员考试情况统计 -->
+ </examination>
<dispatch
:card="{ deptId: deptid, jurisdiction: jurisdiction }"
v-if="sees == 4"
@@ -86,6 +87,12 @@
>
<!-- 保安派遣情况 -->
</assignment>
+ <socialSecurity
+ :card="{ deptid: deptid, jurisdiction: jurisdiction }"
+ v-if="sees == 6"
+ >
+ <!-- 社保缴纳情况 -->
+ </socialSecurity>
</el-dialog>
</div>
</div>
@@ -107,6 +114,7 @@
import situation from "./child/situation.vue";
import dispatch from "./child/dispatch.vue";
import assignment from "./child/assignment.vue";
+import socialSecurity from "./child/socialSecurity.vue";
export default {
components: {
certificate,
@@ -114,6 +122,7 @@
situation,
dispatch,
assignment,
+ socialSecurity,
},
data() {
return {
@@ -152,6 +161,28 @@
ids2.push(ele.id);
});
return ids2.join(",");
+ },
+ },
+ watch: {
+ dialogVisible() {
+ if (this.dialogVisible == false && this.sees == "1") {
+ this.getEC1();
+ }
+ if (this.dialogVisible == false && this.sees == "2") {
+ this.getEC2();
+ }
+ if (this.dialogVisible == false && this.sees == "3") {
+ this.getEC3();
+ }
+ if (this.dialogVisible == false && this.sees == "4") {
+ this.getEC4();
+ }
+ if (this.dialogVisible == false && this.sees == "5") {
+ this.getEC5();
+ }
+ if (this.dialogVisible == false && this.sees == "6") {
+ this.getEC6();
+ }
},
},
methods: {
@@ -292,7 +323,7 @@
x: "center",
y: "90%",
},
- toolbox: this.gettoolbox("审查情况查询", "保安员审查情况明细", 3),
+ toolbox: this.gettoolbox("审查情况查询", "保安员审查情况明细", 1),
// grid: {
// // left: "3%",
// right: "5%",
@@ -414,7 +445,7 @@
x: "center",
y: "83%",
},
- toolbox: this.gettoolbox("持证情况查询", "保安员持证情况明细", 1),
+ toolbox: this.gettoolbox("持证情况查询", "保安员持证情况明细", 2),
series: [
{
// name: "访问来源",
@@ -499,7 +530,7 @@
formatter:
"<span>实操成绩</span>({b0}) : {c0}<span>人</span><br /><span>理论成绩</span>({b1}) : {c1}<span>人</span>",
},
- toolbox: this.gettoolbox("考试情况查询", "保安员考试情况明细", 2),
+ toolbox: this.gettoolbox("考试情况查询", "保安员考试情况明细", 3),
legend: {
data: ["实操成绩", "理论成绩"],
},
@@ -756,6 +787,7 @@
tooltip: {
trigger: "item",
},
+ toolbox: this.gettoolbox("社保缴纳查询", "保安员社保缴纳明细", 6),
legend: {
// orient: "vertical",
// left: "left",
--
Gitblit v1.9.3