From e5b1fad2d26b091e08ae45b42a61918eaecfabf5 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Mon, 15 Nov 2021 09:07:11 +0800 Subject: [PATCH 01/11] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E8=A7=92=E8=89=B2=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/login/login.component.html | 4 ++-- src/app/pages/login/login.component.scss | 2 +- src/app/pages/login/login.component.ts | 18 ++++++++++-------- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index ede3a45..7157455 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -22,7 +22,7 @@ -
+
北京安信科创软件有限公司提供技术支持和维护
diff --git a/src/app/pages/login/login.component.scss b/src/app/pages/login/login.component.scss index f476283..ceaf0a0 100644 --- a/src/app/pages/login/login.component.scss +++ b/src/app/pages/login/login.component.scss @@ -27,7 +27,7 @@ .hint { text-align: right; - margin-bottom: 40px; + margin-bottom: 50px; .forget{ cursor: pointer; color: #2399FF; diff --git a/src/app/pages/login/login.component.ts b/src/app/pages/login/login.component.ts index d379c6a..8d2dc37 100644 --- a/src/app/pages/login/login.component.ts +++ b/src/app/pages/login/login.component.ts @@ -43,23 +43,25 @@ export class LoginComponent implements OnInit { this.message.create('error', `请输入账号密码`); return } - if (!this.selectedRole) { - this.message.create('error', `请选择登录角色`); - return - } + // if (!this.selectedRole) { + // this.message.create('error', `请选择登录角色`); + // return + // } this.http.post('/api/TokenAuth/Authenticate', { userNameOrEmailAddress: this.validateForm.value.userName, password: this.validateForm.value.password }).subscribe( (data: any) => { - this.message.create('success', `登陆成功`); + sessionStorage.setItem("token", data.result.accessToken); this.cookieService.set("token", data.result.accessToken, null, '/'); this.cookieService.set("refreshToken", data.result.encryptedAccessToken, null, '/'); - this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data:any) => { - sessionStorage.setItem('userdata',JSON.stringify(data.result.user)) + this.http.get('/api/services/app/Session/GetCurrentLoginInformations').subscribe((data: any) => { + sessionStorage.setItem('userdata', JSON.stringify(data.result.user)) + this.message.create('success', `登陆成功`); + this.router.navigate(['/home/plan']) }) - this.router.navigate(['/home/plan']) + //调用服务中的function刷新token // this.token.startUp() }, From 32251d20f463dd223fde7008ad4dfaf2acf8d381 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Mon, 15 Nov 2021 14:27:31 +0800 Subject: [PATCH 02/11] =?UTF-8?q?=E5=A4=84=E7=BD=AE=E9=A2=84=E6=A1=88?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/pages.module.ts | 4 ++- src/app/pages/plan/plan.component.html | 22 ++++++++++++---- src/app/pages/plan/plan.component.scss | 20 +++++++++------ src/app/pages/plan/plan.component.ts | 35 ++++++++++++++++++++------ src/styles.scss | 22 +++++++++++++--- 5 files changed, 77 insertions(+), 26 deletions(-) diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 73c0fc2..60266a9 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -30,6 +30,7 @@ import { NzDropDownModule } from 'ng-zorro-antd/dropdown'; import { NzMessageModule } from 'ng-zorro-antd/message'; import { NzSpinModule } from 'ng-zorro-antd/spin'; import { NzTreeModule } from 'ng-zorro-antd/tree'; +import { NzCollapseModule } from 'ng-zorro-antd/collapse'; import { TodayWarningAdminComponent } from './today-warning-admin/today-warning-admin.component'; import { CriminalRecordsAdminComponent } from './criminal-records-admin/criminal-records-admin.component'; import { EquipmentInfoComponent } from './equipment-info/equipment-info.component'; @@ -67,7 +68,8 @@ import { EditequipmentComponent } from './equipment-info/editequipment/editequip NzDropDownModule, NzMessageModule, NzSpinModule, - NzTreeModule + NzTreeModule, + NzCollapseModule ], entryComponents: [AddequipmentComponent, EditequipmentComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html index 9fd0863..ce7e17f 100644 --- a/src/app/pages/plan/plan.component.html +++ b/src/app/pages/plan/plan.component.html @@ -48,12 +48,24 @@ -{{item.getIconName()}}
-{{item.getIconName()}}
+{{item.name}}
+analysis-of-the-host works!
diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts new file mode 100644 index 0000000..9b06ebc --- /dev/null +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AnalysisOfTheHostComponent } from './analysis-of-the-host.component'; + +describe('AnalysisOfTheHostComponent', () => { + let component: AnalysisOfTheHostComponent; + let fixture: ComponentFixtureKCh9C4mU4>gpJ}aeg?wE%=L4~Gg zqnxakQjb@d$DeHysxmq45sK=Wj=2}@{fdc5L4`%)R=XQOX7)+0W}^6^NL0?_ND_5V zvgL?Hnl?Nc#~}h8QgA+l+A?A_W0ltm+wpIL3)8ykx*tJn@i;?wOse=+&DJacX#YTkzcV?iPb&{}! znVL$E)CFZ3)c!G0z~tFOob#%!q*;mntr2nXegDLptj`e?v)Zzt+cXzCM3NSkWA}sV zL_Ae&ly7-)Ce>olJDRu`PnkYYp2VrRWhui|Q^KbNl}eOJu2)+BW75*s2q;go20qCu zpssO-8^Rnn3n-H(YI(%L4A$0A8%OXN>#Cm7X##FsSthMw@`4GT{)%(CydP3*>Adgz zylpOGpQo8tirFNh>RTFfv&2=6wMCQ|^wB(_NL0sgp>kXnSl+w_Pyw4aYaV>Cui$^O z>_MMIrK%SaW)jr{^)9R#Fgo{}0wBv8$d8f;aY>@!jn1PKdc3<|^>UrAJt@Wb#c}e1 zPgyI5ong!>CX{C4C1-N+3pVld{h&T}8y~)PhC7@T8sJEfFq^n8s8pg>QN2#Y6`p3! zvs`y-Q0s~?ZE&u$blf%BsGc!j2`Y)(zoK!kj&0$ECPyqWlq`t#09F>KsWH!^jn6sO z@IS(UpIHWK9OE}|12cF7>j^s@%3`M!jB3ZYg^4#jomZSc#l_hP-}C@q{@Z)GIW3WT z98rd&5=d&p!eWDFR41uUVOQFyIN@8)@oQng-l&d=E%89^L^kS4gW$Jt_eE<5 T)Yi0+5ZIWa(hP`HS;d%hj9>9=UUS|U7s~hDJ;&{D|1SSqIToB{PU*BVGvoPb z>9dyjv=2N)BA+!Q=t)P=bObtKi&cEm^SDsrxRZE2;9^brz%Yx0Rj&GH^RJGhR7_|z zo^4mZh0}l0X5e#vo;d1|RC2h*MJNuTB#x4p#u{EHHCvl-RTf9h h^KLsAs!g*En_5(%5vl%IX} (rg=V%v)-xS3p10G3BdI@qkS?9R`C7!Pr$J~-=w&xww;>KGE@pJ>T z 4B7k}U*U>_i!>dywPVpjRVk|3dM~chP9yUc zE>6(#QT(wH0u!=c!B@1$1ro ^RD0|Si z){|V+!Vz-5tnj^VLM?7BY$s~}SEI_$x5d(Y2yqH3#+3q;siSkF-3m)$xlF &hmPh6{R;UcLQ-~v0Sw&q3O;__Zm#?MUJf{g)zG%kkY!5{P?Icz ztI}GWpi?`5i49uRu9(LUY6Qmde&=&@p!h PtiA&ZAb}AQCo7>Lu->RjoQl4 z)X?x8ji#X$hIAw%4>n;td+?UB2Q6Nv6fgBHZ;)e0d5mAj$nr(PlS-9jFw37y@4_Fx zypnGn9Qo-t{NQ1!!pJ^LRpV1iR2Cxa!OIMK|9UTp@RHW_Ye z)wpEw54h->&$>ea#xaRD0VP= z@4&Jiw_TROA3J|jd2FI~{!4F~Uj{0(RVPi{^<@ymPNk_9pHQ_4+cBYE#ETai1GYJH zgYo^pWaPBJlQo~@q_QT|LaCc+%rcIP4RjcCgR%UsE^xop{G{b)sDa8Q_+9}&mm_Cm zLP7$qy3%MJhKShLbXqwgw@BPdF!c^*dJ@KBbXnsOagK7lH;MU=#bUSoo@G?~Gn~bT zuxZ|0RBz{t2EwQ{89n`t_iz8r9aaht%W8Y4l&BskDfdgMDpNmC>{LXUg!qAE2 q8H0ZB`$&sFTG 1;V3)bY{ziOW^P`1$Bq-aKj%NI5BK zH7cfg_&Vu8VQkB_L5HLxS38dz%;Sm%EvXkt)ruOHq>d;3n;w6KVy zAHnUN!!d=+|K-oEx3)7FJ^PA#rKxOHP$!Sfvr}AAiIEPLAp)=2Em rYhVJ-$oc%bR=hOUT uIdHdb$xm!~VB>FoxYj=+vX-*?iA(CeB7;Qf(#4`8!dTQ#Vx<_>n7;dUis<=K zY3i5C;drgn>#obnRxa$;-2|5WAZhQB^PLHC#U`)wJYFjf%E4D7k8gV&=3SoYFy_c2 zO!%5{UooN-7b?Sxox@Y`ahK;~*>`1?Vu2*tjL=}DQd~WX4L4!a0;u#&-MQ1_mQVat zZlFA~@mFu$-#<%p#xORm6lW8JYb&YuQZ83_)586IQBqd-iUhF~EM3=@)c4)`0klgN zhfn*%34eS+YHrdFJ=haaDTZc}mGvH^jTvcGG%X8l3G=+bCOlcGv`b*p!M*8on6{)H zclUN$e68Z~K)PRV%M5qFB&`Z*VW-EJKKYblNxAiZ_W9e{+x-HuTN4*y*V_8CO54w| zCNjxSNvB=@kz U4TdWNraf>~*<_H%%M)d%fyu>rbD$ErV3Yr99T*{C8Zo zO>ArX1^@Y$&F5We{7Ia^lDO(PLw*ALwB!hnU8ml&6|Fzw0Smp>pE$tx#Y=VYM5Q|O z`%dr7PQP8D?rRh_|9SaI6AMzESy(s*%a*$3EQzyL_D9JPS2mDkEkG;JtH0Y=47W(I zs9R9Q)?1iV-6nB+e}LltuX+BhAAM%dv$@8G=lp2H#lPQ>t~>dAxY(WjOVw_T?TM>5 zl1Zo_*SgoRk;PT54!)?MB* `9x>kyN>_H=9e2U{)J!BvJfV0*G4$dQ!vRdV&~1RtS`^bx;hT2){sVt=fp4{L zZ+Y5n>o0k0L;5{aP<33UcDs)D=KR*s$9V!!$842&WNCJl>albLw~P3J>n8FOQ9%zS zebb%lY{4A9{R-vWa1vJDliP6q?c%Z0*_H*U 0 z-;|0@gp-0rwbdOLktGe^g996ZzrT7kcl7RO`hM7KT=2>tY rX0p!}o7`{k3;Vula@+PC!Y!^<$N$6Wgez6Fy!ATOOV?zJ~c@ zrEE#Vq-}(~4&lWIzyEZi`B%EcgesT6-aqq_e~`JC448ODG4ukA3Niqr)Htrx11aAl zl`x6+MJff1OjpTcwKw%3BOx-LFfF4XH~#VFLNxO<6T7IeZqu!&z2J&z8S{|uk#x*T zX<9bDum)*b1E@X~>>C!6 Pc2w&K8@~Yb%sa;f0x_c{hE_^SyTaXRJ! OykZ_a;bqc?x#sgBrJ zZt(8hwpZP|{y9%ivZ15Yc8P&+;4+mvek|?OQwwVYm8oFgq^B773|7IzYsWo%)z|GS zyNRk)k35{W2XDVvb=ns>*UniL{Lu4qKcX_eH~*yP%n6`cPc_pM>YK-txtUa@d&5P| z`~S8a&)h$iug`5#uD!t}wne^lr#kl~_e?$I+1*A9Ic{$xO{6JPxhx!5-dnylNNWex z2djS!EgK$cxAF5$JX7eF) yjXzsy5Rbo?Ilkn(9%ZN7#AJ*&N^K?^dxJV>xesp z%Gt6_BC%M;C5h1(W38!zp0{|@E}yF={`i5y(|&PwSXRh=o2cm%3F*;ERC;137?oXz z9yp5E_VJQ3I=|S3C7{Ipi`&myq|>OoZyHo`?$Vc;o=ntR1cR)D5!I6jKijgY_5QKh z{@G$N;E%T?WygLL5|!<8;^FJo44z~!CFvh|cv;FtB6tY_R*jP+ui1d(2C>C%)sIcA z3pp9DO<{?g^+wvV0qla0o$dvd%VMSDM*G*UZv9gG7(n%Q&!$4(2HUS*KF&WfhVH~& zU=o$f;#hK2@^7_i^;DWxPOSHVs`tkFE~q>&00046Nkl zlOFF0^~a!k%WcC-Rovbi?T^Z+_9A+u-34ZHs3b;9uBs9u<~WU?B$ircYkF`}&n40m z9lQU5JYP-CvQf0`jvB|g|D|8~*d*y+p?W8QC4Z7TYGlA3LCGC8YzZ}#q?Kf48r|^^ zNe43o0&f|t-rY0$)hmsm`X `>nV_uu#}NBV!_sqfJub8`YMoBvIRrdOFZ&tf5Y z%nY (FA<6((G&i Date: Tue, 16 Nov 2021 17:24:48 +0800 Subject: [PATCH 07/11] =?UTF-8?q?=E5=A4=84=E7=BD=AE=E9=A2=84=E6=A1=88UI?= =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/pages/plan/plan.component.html | 21 ++++++++++++-- src/app/pages/plan/plan.component.scss | 37 ++++++++++++++++++++++++- src/app/pages/plan/publicPop.scss | 15 +++++++++- src/assets/images/uploadImg.png | Bin 0 -> 2707 bytes src/assets/images/uploadVideo.png | Bin 0 -> 2165 bytes 5 files changed, 68 insertions(+), 5 deletions(-) create mode 100644 src/assets/images/uploadImg.png create mode 100644 src/assets/images/uploadVideo.png diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html index ce7e17f..fb92d56 100644 --- a/src/app/pages/plan/plan.component.html +++ b/src/app/pages/plan/plan.component.html @@ -16,7 +16,7 @@ - +-diff --git a/src/app/pages/plan/plan.component.scss b/src/app/pages/plan/plan.component.scss index ea39903..6b10bb4 100644 --- a/src/app/pages/plan/plan.component.scss +++ b/src/app/pages/plan/plan.component.scss @@ -292,5 +292,33 @@ } .bottomPlanCenter{ height: 35px; + line-height: 38px; + display: flex; + overflow: hidden; + label{ + display: block; + } + label:first-child{ + width: 15%; + height: 100%; + text-align: center; + button { + width: 60%; + height: 30px; + line-height: 30px; + color: #23D9FF; + //padding: 0; + background: rgba(35, 153, 255, 0.41); + border: 1px solid rgba(35, 217, 255, 0.4); + } + } + label:nth-child(2){ flex: 1; overflow: hidden; img{ height: 35px; width: auto; vertical-align: top; } } + label:last-child{ + width: 15%; + height: 100%; + text-align: center; + color: #fff; + .anticon{ font-size: 20px; margin: 0 10px; } + } } } \ No newline at end of file diff --git a/src/assets/images/stepIcon.png b/src/assets/images/stepIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..ec576ff78ea201c5bc29c76bf27410c20e34b55a GIT binary patch literal 1854 zcmV-E2f_G>P){{allFence[selectFence]}}@@ -28,7 +28,7 @@-+- +\ No newline at end of file diff --git a/src/app/pages/criminal-records/criminal-records.component.scss b/src/app/pages/criminal-records/criminal-records.component.scss index 99713ae..ec459a9 100644 --- a/src/app/pages/criminal-records/criminal-records.component.scss +++ b/src/app/pages/criminal-records/criminal-records.component.scss @@ -10,7 +10,7 @@ padding: 0 36px; width: 100%; height: 32px; - margin: 20px 0px; + margin-top: 14px; form { width: 100%; @@ -47,7 +47,7 @@ overflow: hidden; .title { - margin-bottom: 15px; + margin: 13px 0; width: 100%; height: 64px; box-sizing: border-box; @@ -59,10 +59,99 @@ display: flex; justify-content: center; - .charts { - width: 98%; - height: 300px; - border: 1px solid white; + .chart { + width: 97%; + height: 360px; + border: 0px; + box-shadow: 0 0 26px 0px #1a7fd7 inset; + box-sizing: border-box; + padding: 18px 26px; + display: flex; + + div { + display: flex; + flex-direction: column; + + span { + font-family: titlefont; + display: flex; + align-items: center; + height: 28px; + color: #bee1ff; + font-size: 16px; + } + + div { + flex: 1; + } + + .piechart {} + + .barchart { + // border: 1px solid rgba(145, 204, 255, 0.95); + } + } + + .leftbox { + width: 360px; + position: relative; + + .centerContent { + position: absolute; + top: 42%; + left: 11%; + width: 170px; + + div { + text-align: center; + } + + .numname { + font-family: titlefont; + color: #bee1ff; + } + + .num { + color: #FFFFFF; + font-size: 42px; + text-shadow: 0px 0px 16px #3A9AFF; + font-weight: bold; + height: 49px; + line-height: 50px; + } + } + } + + .rightbox { + flex: 1; + position: relative; + + .btnbox { + position: absolute; + right: 5px; + top: 5px; + display: flex; + flex-direction: row; + z-index: 999; + + button { + border: 1px solid #91CCFF; + color: #91CCFF; + border-radius: 0px; + box-shadow: 0 0 5px 0 #2399FF inset; + background: none; + } + + .rankingBtn { + margin-right: 16px; + } + + .selectedbtn { + background: linear-gradient(180deg, #000D21 0%, #001331 27%, #2399FF 100%); + color: white; + } + } + } } } diff --git a/src/app/pages/criminal-records/criminal-records.component.ts b/src/app/pages/criminal-records/criminal-records.component.ts index e396d37..727604e 100644 --- a/src/app/pages/criminal-records/criminal-records.component.ts +++ b/src/app/pages/criminal-records/criminal-records.component.ts @@ -1,5 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; +import * as echarts from 'echarts'; @Component({ selector: 'app-criminal-records', templateUrl: './criminal-records.component.html', @@ -8,7 +9,120 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms'; export class CriminalRecordsComponent implements OnInit { validateForm!: FormGroup; constructor(private fb: FormBuilder) { } + mybarChart: any //柱状图 + baroption = { + xAxis: { + type: 'category', + data: this.getThirtyDays(), + axisLine: { + show: false, + lineStyle: { + color: '#91CCFF' + } + }, + axisTick: {//刻度线 + show: false + } + }, + yAxis: { + type: 'value', + nameTextStyle: { + color: '#C4E2FC' + }, + splitLine: {//分割线 + lineStyle: { + color: ['#0f4374'], + width: 2 + } + }, + axisTick: {//刻度线 + show: false + }, + axisLine: {//轴线 + show: false, + lineStyle: { + color: '#C4E2FC' + } + } + }, + series: [ + { + data: [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 100, 101], + type: 'bar', + itemStyle: { + color: { + type: 'linear', + x: 0, + y: 0, + x2: 0, + y2: 1, + colorStops: [{ + offset: 0, color: '#23F0FF' // 0% 处的颜色 + }, { + offset: 1, color: 'rgba(35, 153, 255, 0.1)' // 100% 处的颜色 + }], + global: false // 缺省为 false + } + }, + barWidth: '25%' + }, + { + data: [120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 120, 200, 150, 80, 70, 110, 130, 100, 101], + type: 'line', + symbol: 'circle', + symbolSize: 8, + itemStyle: { + color: '#fff', + shadowColor: '#fff', + shadowBlur: 10 + }, + lineStyle: { + color: '#FFCC8A', + width: 1 + } + } + ], + grid: { + left: '36px', + right: '30px', + bottom: '50px', + top: '45px' + } + }; + getThirtyDays() { + //获取当前日期 + let myDate = new Date(); + var nowY = myDate.getFullYear(); + var nowM = myDate.getMonth() + 1; + var nowD = myDate.getDate(); + var enddateStr = nowY + "-" + (nowM < 10 ? "0" + nowM : nowM) + "-" + (nowD < 10 ? "0" + nowD : nowD);//当前日期 + var enddate = new Date(enddateStr); + + //获取三十天前日期 + var lw = new Date(new Date().getTime() - 1000 * 60 * 60 * 24 * 30);//最后一个数字30可改,30天的意思 + var lastY = lw.getFullYear(); + var lastM = lw.getMonth() + 1; + var lastD = lw.getDate(); + var startdateStr = lastY + "-" + (lastM < 10 ? "0" + lastM : lastM) + "-" + (lastD < 10 ? "0" + lastD : lastD);//三十天之前日期 + var startDate = new Date(startdateStr); + + const dateList = [] + while (true) { + startDate.setDate(startDate.getDate() + 1) + if (startDate.getTime() <= enddate.getTime()) { + if (startDate.getDate() < 10) { + // startDate.getFullYear() 获取年,此处没加上年份 + dateList.push((startDate.getMonth() + 1) + '.0' + startDate.getDate()) + } else { + dateList.push((startDate.getMonth() + 1) + '.' + startDate.getDate()) + } + } else { + break + } + } + return dateList; + } ngOnInit(): void { this.validateForm = this.fb.group({ level: [null], @@ -16,6 +130,75 @@ export class CriminalRecordsComponent implements OnInit { site: [null], datePicker: [null] }); + // 基于准备好的dom,初始化echarts实例 + let myChart = echarts.init(document.getElementById('piechart')); + let option = { + color: ['#FF4B65', '#23D9FF', '#608AFF', '#B2FF6D', '#FFFF99', '#C4E2FC', '#FF7F00', '#0090FF', '#FFD634', '#105597', '#FF4B65', '#23D9FF', '#71FFF5', '#B2FF6D'], + tooltip: { + trigger: 'item'//触发类型 + }, + series: [ + { + // name: 'Access From', + type: 'pie', + radius: [85, 112],//内半径外,外半径 + left: '-30%', + avoidLabelOverlap: false,//防止标签重叠策略 + label: {//每一个标签外网延伸的引导说明 + show: false, + position: 'outside' + }, + labelLine: {//引导线 + show: true, + showAbove: true + }, + emphasis: {//中间高亮区域 + label: { + show: false, + fontSize: '40', + fontWeight: 'bold' + } + }, + data: [ + { value: 26, name: '工作人员倚靠加油机或者立柱1' }, + { value: 86, name: '工作人员倚靠加油机或者立柱2' }, + { value: 34, name: '工作人员倚靠加油机或者立柱3' }, + { value: 55, name: '工作人员倚靠加油机或者立柱4' }, + { value: 60, name: '工作人员倚靠加油机或者立柱5' }, + { value: 26, name: '工作人员倚靠加油机或者立柱6' }, + { value: 86, name: '工作人员倚靠加油机或者立柱7' }, + { value: 34, name: '工作人员倚靠加油机或者立柱8' }, + { value: 55, name: '工作人员倚靠加油机或者立柱9' }, + { value: 60, name: '工作人员倚靠加油机或者立柱10' }, + { value: 26, name: '工作人员倚靠加油机或者立柱11' }, + { value: 86, name: '工作人员倚靠加油机或者立柱12' }, + { value: 34, name: '工作人员倚靠加油机或者立柱13' }, + { value: 55, name: '工作人员倚靠加油机或者立柱14' }, + { value: 60, name: '工作人员倚靠加油机或者立柱15' }, + { value: 26, name: '工作人员倚靠加油机或者立柱16' }, + { value: 86, name: '工作人员倚靠加油机或者立柱17' }, + { value: 34, name: '工作人员倚靠加油机或者立柱18' }, + { value: 55, name: '工作人员倚靠加油机或者立柱19' }, + { value: 60, name: '工作人员倚靠加油机或者立柱20' } + ], + tooltip: {//鼠标移入提示 + position: 'right', + padding: [14, 19], + backgroundColor: 'rgba(28, 129, 218, 0.4)', + textStyle: { + color: '#fff', + fontSize: 12 + } + } + } + ] + }; + // 绘制图表 + myChart.setOption(option); + + this.mybarChart = echarts.init(document.getElementById('barchart')); + + this.mybarChart.setOption(this.baroption); } submitForm(): void { for (const i in this.validateForm.controls) { diff --git a/src/app/pages/home/home.component.html b/src/app/pages/home/home.component.html index 78973af..49d7d83 100644 --- a/src/app/pages/home/home.component.html +++ b/src/app/pages/home/home.component.html @@ -3,21 +3,25 @@+ + + + +Px*_(?=TR9HvFm|tjQR~^Sc=g++}cV;r#{M}?-> ?WH(lRq=}&pAiV z+?!-FJ4q8Mc3$qCJNKN=?|aVgob&yS;2rviqjBBdd+vZ1`+5=wy|vr;0B`~F&99KZ zGf`aq{TyPl=;B)b+a74HxW9zkYjI~FJ-|-1n|j~`VsZqr@hW0HMrM78Y_;g_bU~ia zuX+HdH*ozWY~MY&YfCtM5W4~Fhj)Ps=q%C$Z!IAk^QggLWSk44E0E4H30g9>8W9 zClj1j*g#`T0d{2>TR)8%9l^E(n8N07@4@$jofFI=?_WiFg&QZ()h0SDqvHe}Wavzy ztVNb|-c_98q{M2ANi|t1BuiRkTM=2`8krw~R|c>-yeHTRF1P1S&JUtOMbIb_>X=ZJ zD2a?vN A(5m~4xs5n6xN6A7U3$XQIND;)s(K4_tVLR3|ouf4v5@%)7IWV27_rRB( z u8x!vKf(rnhB^0L7y=6NkP>~B4G&~s3LOXB#E#ztz*k6Hk@NarED75l$xdu ziLaj_ f0Ff0TkwMk~X zl^q22&+q*?Q_iuZVObj1GRdYN?( H^Zlm z ZFV~$C#CjS1<5%cjv$P9WVL3{J|4^s5{%w{){h5 z%YqOr60jsv8k?~FmS7A07)G38%)xl&0#9`-{_XGiy9Yn{I1hCPb#|IB30M$@MHEXC z*8eAP^&(I8Q2aun_~APg&%90Go{FEP4Sw `9G|~K@k~c@8J1L)^+xNEtbT2RpmvK&*K#^lxyVntJAdwP{98--%458* zTk*LWz91YoI+xStDBE|>^;pMKv&a|c33oP-R5Ro(V-m*87nnZQ&Na>Ftj}u6Vvuor zX9IcgG|7QmCQw$6KAAD(9HY*1s`4nmIL^*>?ioHKBsYZMmet%gf(@Y6d#^4|CtIQ% zXsTJlATpol%0+&C9K~m!;ZyC+!?L79R?>_u8PmG+bRs{GCnnHlgHrogbo5Kbkjpq3 zeV88)Mw~v%c}&dwBfsLyLUYp^Zaa}5i>i-!ZjNmKdF<2kvXkBj0Krz7h;90^fC1qc zrowwpet=8E6;2%nC*j7|{>YU#*7=VUEbEk2Dr{6+G=VfX0{a|DZU(r5I&)WUef)5{ zjJgpF3K-T^-u>S5d~>wIcrOPcViqp{h40O;@rHwC WvE=^T_1diZ=8%c)d^QAH-7XdzW-)}H>GSRlehirfnlp0(LCJj74z)v z?e)9RIv_MnB4u;4=L{zh^hZ_3E_{@4pYn6AA;_4Y{xjdX* fe#2VltfBsG+GyiJ`-4#k-2~bMQl@&7NjS3 zpuTYHs33|`ucMOKd9pL)R}fPZh<}0dg Ddj<{7^hme#t5doh}|vH4uS4pPMwN( z@AucrK7i%`B3ax&QsEdbTE(@K=#ZMY6LEyUA_}-~Rg6H-7 gO suTNLueZX70kB Date: Wed, 17 Nov 2021 16:55:51 +0800 Subject: [PATCH 11/11] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E8=BE=93=E6=B2=B9?= =?UTF-8?q?=E7=AE=A1=E7=BA=BF,=20=E6=B2=B9=E6=B0=94=E5=9B=9E=E6=94=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../property-data/in/property-data-sygx.ts | 9 +-- .../property-data/in/property-data-yqhsgx.ts | 24 +++++--- .../left-domain/left-domain.component.html | 55 ++++++++++++++++++- .../left-domain/left-domain.component.scss | 4 +- .../left-domain/left-domain.component.ts | 6 +- src/app/pages/plan/plan.component.html | 2 +- src/app/pages/plan/plan.component.ts | 2 +- 7 files changed, 82 insertions(+), 20 deletions(-) diff --git a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts index a396beb..f3fa99d 100644 --- a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts +++ b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-sygx.ts @@ -4,21 +4,22 @@ import { PropertyData_Base_IMG } from "../base/property-data-base-img"; import { PropertyData_Base } from "../property-data-base"; /** - * 输油管 + * 输油管线 */ export class PropertyData_SYGX extends PropertyData_Base_IMG { constructor(key: string) { - super(key, "", "", "", FacilityType.JY_SYGX); - + super(key, "", "", "", FacilityType.JY_SYGX); + this.name = "未命名"; } clone(key: string) { let result = new PropertyData_SYGX(key); + result.name = this.name; result.img = this.img; result.pos = this.pos; result.info = this.info, - result.is360 = this.is360; + result.is360 = this.is360; return result; } diff --git a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts index 22bdab0..a8c62f0 100644 --- a/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts +++ b/src/app/babylon/model/data/institution/facility/property-data/in/property-data-yqhsgx.ts @@ -4,22 +4,28 @@ import { PropertyData_Base_IMG } from "../base/property-data-base-img"; import { PropertyData_Base } from "../property-data-base"; /** - * 输油管 + * 油气回收管线 */ export class PropertyData_YQHSGX extends PropertyData_Base_IMG { + VRUType: string = ""; //油气回收系统类型 + VRUPumpType: string = ""; //油气回收泵类型 + constructor(key: string) { - super(key, "", "", "", FacilityType.JY_YQHSGX); - + super(key, "", "", "", FacilityType.JY_YQHSGX); + this.name = "未命名"; } clone(key: string) { - let result = new PropertyData_YQHSGX(key); - result.img = this.img; - result.pos = this.pos; - result.info = this.info, - result.is360 = this.is360; - return result; + let result = new PropertyData_YQHSGX(key); + result.name = this.name; + result.VRUType = this.VRUType; + result.VRUPumpType = this.VRUPumpType; + result.img = this.img; + result.pos = this.pos; + result.info = this.info, + result.is360 = this.is360; + return result; } } \ No newline at end of file diff --git a/src/app/pages/left-domain/left-domain.component.html b/src/app/pages/left-domain/left-domain.component.html index 3bd7838..9f246ed 100644 --- a/src/app/pages/left-domain/left-domain.component.html +++ b/src/app/pages/left-domain/left-domain.component.html @@ -49,7 +49,7 @@
+@@ -91,6 +91,59 @@+ + + + + +diff --git a/src/app/pages/left-domain/left-domain.component.scss b/src/app/pages/left-domain/left-domain.component.scss index 2c2b629..87afcd5 100644 --- a/src/app/pages/left-domain/left-domain.component.scss +++ b/src/app/pages/left-domain/left-domain.component.scss @@ -58,6 +58,7 @@ border-bottom: none; display: flex; p{ height: 32px; line-height: 32px; margin: 0px; } + .tableImg{ height: 120px; line-height: 120px; img{ max-height: 100px; width: auto; }.uploadImgBox{ margin: 35px 0 0 0; width: 50px; height: 50px; line-height: 50px; text-align: center; } } .tableHeader{ flex: 4; text-align: right; @@ -71,9 +72,6 @@ } } } -// .oilTank{ //油管设备 - -// } .fireFacilities{ //消防设施 .treeRow{ width: 100%; display: flex; height: 30px; line-height: 30px; p:first-child{ flex: 1; }; p{ margin: 0; padding: 0; .anticon{ margin-right: 5px; font-size: 16px; } } } } diff --git a/src/app/pages/left-domain/left-domain.component.ts b/src/app/pages/left-domain/left-domain.component.ts index ff45bc5..3dfb457 100644 --- a/src/app/pages/left-domain/left-domain.component.ts +++ b/src/app/pages/left-domain/left-domain.component.ts @@ -14,7 +14,7 @@ import { NzMessageService } from 'ng-zorro-antd/message'; @Component({ selector: 'app-left-domain', templateUrl: './left-domain.component.html', - styleUrls: ['./left-domain.component.scss'] + styleUrls: ['./left-domain.component.scss','../plan/publicPop.scss'] }) export class LeftDomainComponent implements OnInit { @@ -57,6 +57,10 @@ export class LeftDomainComponent implements OnInit { item.getType() === "JY_YG"? list.push(item) : null } else if (this.beforeFence === 3) { //消防设施 (item.getType()).slice(0,3) === "XF_"? list.push(item) : null + } else if (this.beforeFence === 5) { //输油管线 + item.getType() === "JY_SYGX"? list.push(item) : null + }else if (this.beforeFence === 6) { //油气回收 + item.getType() === "JY_YQHSGX"? list.push(item) : null } }) this.FacilityList = list diff --git a/src/app/pages/plan/plan.component.html b/src/app/pages/plan/plan.component.html index be2c7c5..2585b0e 100644 --- a/src/app/pages/plan/plan.component.html +++ b/src/app/pages/plan/plan.component.html @@ -16,7 +16,7 @@ -+{{allFence[selectFence]}}diff --git a/src/app/pages/plan/plan.component.ts b/src/app/pages/plan/plan.component.ts index 3b168a1..e2aeadb 100644 --- a/src/app/pages/plan/plan.component.ts +++ b/src/app/pages/plan/plan.component.ts @@ -107,7 +107,7 @@ export class PlanComponent implements OnInit { let buildingWindow: BuildingWindow = this.beforeOneSatus.buildingWindow; let fenceType: JYZInfoMoudleType = this.getFenceType(type) if (this.selectFence != type) { - this.isShowChildComponent && this.leftDomain ? this.leftDomain.initComponent(type) : null; //手动初始化子组件 + this.isShowChildComponent && this.leftDomain && type != 4 ? this.leftDomain.initComponent(type) : null; //手动初始化子组件 this.selectFence = type this.isShowChildComponent = true buildingWindow.changeJYZInfoModel(fenceType, true)