14 changed files with 1266 additions and 263 deletions
@ -1,111 +1,181 @@
|
||||
<!-- <p>任务申请</p> --> |
||||
<div class="box"> |
||||
|
||||
<div class="fffbox"> |
||||
<div class="header"> |
||||
<span> |
||||
任务申请 |
||||
</span> |
||||
<span style="font-size: 14px; color: #42B983;"> |
||||
<i nz-icon nzType="info-circle" nzTheme="outline"></i> |
||||
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03 |
||||
</span> |
||||
</div> |
||||
<div class="searchbox"> |
||||
<div class="search"> |
||||
<nz-select nzPlaceHolder="任务名称" [(ngModel)]="searchForm.taskname"> |
||||
<nz-option nzValue="监督检查" nzLabel="监督检查"></nz-option> |
||||
<nz-option nzValue="熟悉演练" nzLabel="熟悉演练"></nz-option> |
||||
</nz-select> |
||||
<input type="text" nz-input placeholder="单位名称" [(ngModel)]="searchForm.unitname" /> |
||||
<!-- <nz-select nzPlaceHolder="单位级别" [(ngModel)]="searchForm.unitlevel"> |
||||
<nz-option nzValue="一般单位" nzLabel="一般单位"></nz-option> |
||||
<nz-option nzValue="重点单位" nzLabel="重点单位"></nz-option> |
||||
</nz-select> --> |
||||
<nz-tree-select [nzExpandedKeys]="expandKeys" [nzNodes]="nodes" nzShowSearch nzPlaceHolder="协助机构" |
||||
[(ngModel)]="searchForm.or" [nzExpandedIcon]="multiExpandedIconTpl" |
||||
[nzDropdownClassName]="'maxHeightTreeSelect'" [nzAllowClear]="false"></nz-tree-select> |
||||
<ng-template #multiExpandedIconTpl let-node let-origin="origin"> |
||||
<ng-container *ngIf="node.children.length == 0; else elseTemplate"> |
||||
</ng-container> |
||||
<ng-template #elseTemplate> |
||||
<i nz-icon [nzType]="node.isExpanded ? 'caret-down' : 'caret-right'" |
||||
class="ant-tree-switcher-line-icon"></i> |
||||
</ng-template> |
||||
</ng-template> |
||||
<button (click)="search()" nz-button nzType="primary"><i nz-icon nzType="search" |
||||
nzTheme="outline"></i>查询</button> |
||||
<button (click)="reset()" nz-button nzType="default"><i nz-icon nzType="reload" |
||||
nzTheme="outline"></i>重置</button> |
||||
<div class="informbox"> |
||||
<div class="inform"> |
||||
<div class="informleft"> |
||||
<img src="../../../../assets/images/icon/inform.png" alt=""> |
||||
通知播报: |
||||
</div> |
||||
<div class="informright" id="container" (mouseenter)="mouseEnter()" (mouseleave)="mouseleave()"> |
||||
<div id="list-wrapper" style="top: 0"> |
||||
<ul class="notice-list" id="notice-list"> |
||||
<li class="info" *ngFor="let item of messageList;let key = index"> |
||||
<div class="infoitem"> |
||||
您有一条新的信息! |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
<ul class="notice-list" id="notice-list-2"> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="content"> |
||||
<div class="applybtn"> |
||||
<button (click)="apply()" nz-button nzType="primary"><i nz-icon nzType="form" |
||||
nzTheme="outline"></i>申请</button> |
||||
</div> |
||||
<div class="timebox"> |
||||
<nz-select [(ngModel)]="selectedYear" (ngModelChange)="selectYear($event)"> |
||||
<nz-option [nzValue]="2021" nzLabel="2021年"></nz-option> |
||||
<nz-option [nzValue]="2022" nzLabel="2022年"></nz-option> |
||||
</nz-select> |
||||
<div *ngFor="let item of months" class="monthbtn" (click)="selectMonth(item)" |
||||
[ngClass]="{'selectedMonth': item.id == selectedMonth}"> |
||||
{{item.name}} |
||||
</div> |
||||
</div> |
||||
<div class="contentbox"> |
||||
|
||||
<div class="fffbox"> |
||||
<div class="spin" *ngIf="isloading"> |
||||
<nz-spin nzSimple></nz-spin> |
||||
</div> |
||||
<div class="header"> |
||||
<span> |
||||
任务申请 |
||||
</span> |
||||
<span style="font-size: 14px; color: #42B983;"> |
||||
<i nz-icon nzType="info-circle" nzTheme="outline"></i> |
||||
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03 |
||||
</span> |
||||
</div> |
||||
<div class="searchbox"> |
||||
<div class="search"> |
||||
<nz-select nzPlaceHolder="任务名称" [(ngModel)]="searchForm.taskname" nzAllowClear> |
||||
<nz-option nzValue="监督检查" nzLabel="监督检查"></nz-option> |
||||
<nz-option nzValue="熟悉演练" nzLabel="熟悉演练"></nz-option> |
||||
</nz-select> |
||||
<input type="text" nz-input placeholder="单位名称" [(ngModel)]="searchForm.unitname" nzAllowClear /> |
||||
<!-- <nz-select nzPlaceHolder="单位级别" [(ngModel)]="searchForm.unitlevel"> |
||||
<nz-option nzValue="一般单位" nzLabel="一般单位"></nz-option> |
||||
<nz-option nzValue="重点单位" nzLabel="重点单位"></nz-option> |
||||
</nz-select> --> |
||||
<nz-tree-select [nzExpandedKeys]="expandKeys" [nzNodes]="nodes" nzShowSearch nzPlaceHolder="协助机构" |
||||
[(ngModel)]="searchForm.or" [nzExpandedIcon]="multiExpandedIconTpl" |
||||
[nzDropdownClassName]="'maxHeightTreeSelect'" nzAllowClear> |
||||
</nz-tree-select> |
||||
<ng-template #multiExpandedIconTpl let-node let-origin="origin"> |
||||
<ng-container *ngIf="node.children.length == 0; else elseTemplate"> |
||||
</ng-container> |
||||
<ng-template #elseTemplate> |
||||
<i nz-icon [nzType]="node.isExpanded ? 'caret-down' : 'caret-right'" |
||||
class="ant-tree-switcher-line-icon"></i> |
||||
</ng-template> |
||||
</ng-template> |
||||
<button (click)="search()" nz-button nzType="primary"><i nz-icon nzType="search" |
||||
nzTheme="outline"></i>查询</button> |
||||
<button (click)="reset()" nz-button nzType="default"><i nz-icon nzType="reload" |
||||
nzTheme="outline"></i>重置</button> |
||||
</div> |
||||
</div> |
||||
<div class="tablebox"> |
||||
<nz-table nzBordered #basicTable [nzLoading]="nzLoading" [nzData]="taskLIst" [nzShowPagination]='false' |
||||
[nzPageSize]='10'> |
||||
<thead> |
||||
<tr> |
||||
<th [width]="'15%'">任务名称</th> |
||||
<th [width]="'20%'">单位名称</th> |
||||
<!-- <th>单位级别</th> --> |
||||
<th>协助机构</th> |
||||
<th>时间</th> |
||||
<th>申请结果</th> |
||||
<th>检查结果</th> |
||||
<th [width]="'8%'">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let item of basicTable.data"> |
||||
<td> |
||||
<div class="content"> |
||||
<div class="applybtn"> |
||||
<button (click)="apply()" nz-button nzType="primary"><i nz-icon nzType="form" |
||||
nzTheme="outline"></i>申请</button> |
||||
</div> |
||||
<div class="tablebox"> |
||||
<div class="tableboxitem" *ngFor="let item of taskLIst" |
||||
[ngClass]="{'greenborder': item.approvalStatus == '通过','redborder': item.approvalStatus == '驳回'}"> |
||||
<div class="flexcol tasknamebox"> |
||||
<span> |
||||
{{item.taskName}} |
||||
</td> |
||||
<td nzBreakWord> |
||||
</span> |
||||
<span> |
||||
任务名称 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol unitnamebox"> |
||||
<span> |
||||
{{item.company.companyName}} |
||||
</td> |
||||
<!-- <td> |
||||
一般单位 |
||||
</td> --> |
||||
<td> |
||||
{{item.assitantOrganization.name}} |
||||
</td> |
||||
<td> |
||||
{{item.creationTime | date:"yyyy-MM-dd hh:mm:ss"}} |
||||
</td> |
||||
<td> |
||||
<ng-container *ngIf="item.approvalStatus; else elseTemplate"> |
||||
<ng-container *ngIf="item.approvalStatus == 'reject'; else elseTemplate2"> |
||||
<span class="green">审核驳回</span> |
||||
</ng-container> |
||||
<ng-template #elseTemplate2> |
||||
<span class="red">审核通过</span> |
||||
</ng-template> |
||||
</ng-container> |
||||
<ng-template #elseTemplate> |
||||
未审核 |
||||
</ng-template> |
||||
</td> |
||||
<td> |
||||
/ |
||||
</td> |
||||
<td class="operation"> |
||||
<a class="blue" (click)="look(item)">查看</a> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
<div class="pagination"> |
||||
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="totalCount" [nzPageSize]="10" |
||||
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)"> |
||||
</nz-pagination> |
||||
<ng-template #totalTemplate let-total> 10条/页,共{{totalCount}}条 </ng-template> |
||||
</span> |
||||
<span> |
||||
单位名称 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
{{item.company.useNature}} |
||||
</span> |
||||
<span> |
||||
级别 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
{{item.organization.name}} |
||||
</span> |
||||
<span> |
||||
主负责人 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol flexcolassistant"> |
||||
<span class="assistant" nz-tooltip [nzTooltipTitle]="titleTemplate"> |
||||
<span *ngFor="let i of item.supervisors"> |
||||
<img *ngIf="i.posts && i.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png" |
||||
alt=""> |
||||
<img *ngIf="i.posts && i.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png" |
||||
alt=""> |
||||
{{i.name}} |
||||
</span> |
||||
</span> |
||||
<ng-template #titleTemplate let-thing> |
||||
<span style="margin-right: 6px;" *ngFor="let i of item.supervisors"> |
||||
<img *ngIf="i.posts && i.posts[0] == '主查人员'" src="../../../../assets/images/icon/main.png" |
||||
alt=""> |
||||
<img *ngIf="i.posts && i.posts[0] == '协查人员'" src="../../../../assets/images/icon/assist.png" |
||||
alt=""> |
||||
{{i.name}} |
||||
</span> |
||||
</ng-template> |
||||
<span> |
||||
协助人员 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
宣传 |
||||
</span> |
||||
<span> |
||||
同步工作 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
<img *ngIf="item.approvalStatus == '通过'" src="../../../../assets/images/icon/agree.png" |
||||
alt=""> |
||||
<img *ngIf="item.approvalStatus == '驳回'" src="../../../../assets/images/icon/reject.png" |
||||
alt=""> |
||||
<span *ngIf="item.approvalStatus == '待处理'">待处理</span> |
||||
</span> |
||||
<span> |
||||
结果 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span class="blue" (click)="look(item)"> |
||||
查看 |
||||
</span> |
||||
<span> |
||||
操作 |
||||
</span> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="pagination"> |
||||
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="totalCount" |
||||
[nzPageSize]="10" [nzShowTotal]="totalTemplate" nzShowQuickJumper |
||||
(nzPageIndexChange)="pageChange($event)"> |
||||
</nz-pagination> |
||||
<ng-template #totalTemplate let-total> 10条/页,共{{totalCount}}条 </ng-template> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
@ -1,60 +1,242 @@
|
||||
<!-- <p>生成周计划</p> --> |
||||
<div class="box weeklyplan"> |
||||
<div class="fffbox"> |
||||
<div class="header"> |
||||
<span> |
||||
申请周计划 |
||||
</span> |
||||
<span style="font-size: 14px; color: #42B983;"> |
||||
<i nz-icon nzType="info-circle" nzTheme="outline"></i> |
||||
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03 |
||||
</span> |
||||
<div class="box"> |
||||
<div class="timebox"> |
||||
<nz-select ngModel="2022"> |
||||
<nz-option nzValue="2021" nzLabel="2021年"></nz-option> |
||||
<nz-option nzValue="2022" nzLabel="2022年"></nz-option> |
||||
</nz-select> |
||||
<div *ngFor="let item of months" class="monthbtn" (click)="selectMonth(item)" |
||||
[ngClass]="{'selectedMonth': item.name == selectedMonth}"> |
||||
{{item.name}} |
||||
</div> |
||||
<div class="content"> |
||||
<div class="tablebox"> |
||||
<nz-table nzBordered #basicTable [nzLoading]="loading" [nzData]="usersLIst" [nzShowPagination]='false' |
||||
[nzPageSize]='16'> |
||||
<thead> |
||||
<tr> |
||||
<th [width]="'10%'">任务类型</th> |
||||
<th [width]="'25%'">单位名称</th> |
||||
<th>单位级别</th> |
||||
<th>检查人</th> |
||||
<th>消防负责人</th> |
||||
<th>联系电话</th> |
||||
<th [width]="'15%'">操作</th> |
||||
</tr> |
||||
</thead> |
||||
<tbody> |
||||
<tr *ngFor="let item of basicTable.data"> |
||||
<td>双随机</td> |
||||
<td nzBreakWord>上海雅特酒店管理有限公司济南泺文路分公司</td> |
||||
<td> |
||||
一般单位 |
||||
</td> |
||||
<td> |
||||
张三三 |
||||
</td> |
||||
<td> |
||||
张三三 |
||||
</td> |
||||
<td> |
||||
15022667845 |
||||
</td> |
||||
<td class="operation"> |
||||
<!-- <span>检查时间 </span> --> |
||||
<nz-date-picker nzPlaceHolder="请选择检查日期" nzBorderless></nz-date-picker> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</nz-table> |
||||
</div> |
||||
|
||||
<div style="flex: 1;overflow-y: auto;"> |
||||
<!-- 上部仪表盘 --> |
||||
<div class="instrumentpanelbox"> |
||||
<div class="instrumentpanelheader"> |
||||
<span>本级部署</span> |
||||
<span (click)="expand()" class="expand blue"> |
||||
{{isExpand ? '收起' :'展开'}} |
||||
<i nz-icon [nzType]="isExpand ? 'down' : 'up'" nzTheme="outline"></i> |
||||
</span> |
||||
</div> |
||||
<div class="instrumentpanel"> |
||||
<div class="instrumentpanelitem" *ngFor="let item of cardData" |
||||
[ngClass]="{'instrumentpanelitemopen': isExpand,'instrumentpanelitemclose': !isExpand}"> |
||||
<div class="itemone" *ngIf="!item.isDetails"> |
||||
<div class="instrumentpanelitemleft"> |
||||
<div class="panelheadername" [style]="'background:'+ item.background"> |
||||
<img [src]="'../../../../assets/images/icon/'+ item.icon" alt=""> |
||||
{{item.name}} |
||||
</div> |
||||
<div class="tasknum"> |
||||
<p> |
||||
<span style="margin-right: 6px;">任务分配</span> |
||||
<i (click)="openDetails(item,true)" |
||||
style="vertical-align: text-top;cursor: pointer;" nz-icon nzType="right-circle" |
||||
nzTheme="outline"></i> |
||||
</p> |
||||
<p style="font-weight: 900;font-size: 36px;text-align: left;">5/9</p> |
||||
</div> |
||||
<button *ngIf="isExpand" nz-button class="btn">一键通过</button> |
||||
</div> |
||||
<div class="instrumentpanelitemright" *ngIf="isExpand"> |
||||
<nz-progress [nzPercent]="75" nzType="circle" [nzFormat]="formatOne" |
||||
nzStrokeColor="#42B983"> |
||||
</nz-progress> |
||||
</div> |
||||
</div> |
||||
<div class="itemtwo" *ngIf="item.isDetails"> |
||||
<p class="itemtwotitle"> |
||||
<span>{{item.name}}</span> |
||||
<span class="back" (click)="openDetails(item,false)"><i nz-icon nzType="rollback" |
||||
nzTheme="outline"></i>返回</span> |
||||
</p> |
||||
<div class="itemtwocontent"> |
||||
<div class="itemtwocontentitem"> |
||||
<p class="itemtwocontentitemp1"> |
||||
<span class="itemtwocontentitemp1name">济南历下森豪室内娱乐场</span> |
||||
<span> |
||||
<span class="green" style="margin-right: 5px;" *ngIf="isExpand">接受</span> |
||||
<span class="blue" *ngIf="isExpand">拒绝</span> |
||||
</span> |
||||
</p> |
||||
<p>A消防救援站</p> |
||||
<p> |
||||
<span class="green" style="margin-right: 5px;" *ngIf="!isExpand">接受</span> |
||||
<span class="blue" *ngIf="!isExpand">拒绝</span> |
||||
</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="pagination"> |
||||
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="usersNum" [nzPageSize]="16" |
||||
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)"> |
||||
</nz-pagination> |
||||
<ng-template #totalTemplate let-total> 16条/页,共{{usersNum}}条 </ng-template> |
||||
</div> |
||||
|
||||
<!-- 救援站列表 --> |
||||
<div class="stationcardlistbox"> |
||||
<div class="stationcardlistitembox" *ngFor="let item of stationData"> |
||||
<div class="stationcardlistitem"> |
||||
<div class="header"> |
||||
<span style="width: 16%;"> |
||||
<img src="../../../../assets//images/icon/station.png" alt=""> |
||||
{{item.name}} |
||||
</span> |
||||
<span style="width: 8%;">单位总数: 7/8</span> |
||||
<div style="width: 66%;" class="progress progresssquare"> |
||||
<span>完成进度</span> |
||||
<nz-progress nzStrokeLinecap="square" nzStrokeWidth="16" nzStrokeColor="#42B983" |
||||
[nzPercent]="30"></nz-progress> |
||||
</div> |
||||
<button nz-button nzType="primary">任务下派</button> |
||||
<span (click)="expandcarditem(item)" class="expand blue"> |
||||
{{item.isExpand ? '收起' :'展开'}} |
||||
<i nz-icon [nzType]="item.isExpand ? 'down' : 'up'" nzTheme="outline"></i> |
||||
</span> |
||||
</div> |
||||
<div class="maincontent" *ngIf="item.isExpand"> |
||||
<div class="maincontentitem"> |
||||
<div class="maincontentitemleft"> |
||||
<div class="panelheadername panelheadernameor"> |
||||
<img src="'../../../../assets/images/icon/huodong.png" alt=""> |
||||
重大活动 |
||||
</div> |
||||
<div class="num"> |
||||
<div class="round" style="background: #2C4DC0;"></div> |
||||
<span class="word">已分配</span> |
||||
<span class="boldspan">1</span> |
||||
</div> |
||||
<div class="num"> |
||||
<div class="round" style="background: #42B983;"></div> |
||||
<span class="word">已完成</span> |
||||
<span class="boldspan">1</span> |
||||
</div> |
||||
</div> |
||||
<div class="maincontentitemright"> |
||||
<div class="maincontentitemrightitem"> |
||||
<div class="flexcol namebox"> |
||||
<span> |
||||
尬粒酒店管理有限公司济南泺文路分公司 |
||||
</span> |
||||
<span> |
||||
单位名称 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
重点单位 |
||||
</span> |
||||
<span> |
||||
级别 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
历下区A消防救援站 |
||||
</span> |
||||
<span> |
||||
责任机构 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
历下区B消防救援站 |
||||
</span> |
||||
<span> |
||||
协助机构 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
<label nz-radio ngModel [ngModel]="xxx" |
||||
(click)="radioChange($event)">宣传</label> |
||||
</span> |
||||
<span> |
||||
同步工作 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol progressbox progresssquare"> |
||||
<span> |
||||
<nz-progress style="width: 200px;" nzStrokeLinecap="square" |
||||
nzStrokeWidth="16" nzStrokeColor="#42B983" [nzPercent]="30"> |
||||
</nz-progress> |
||||
</span> |
||||
<span> |
||||
进度 |
||||
</span> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<button nz-button nzType="primary">提交审核</button> |
||||
<button style="margin-left: 12px;" nz-button nzType="primary">取消</button> |
||||
</div> |
||||
</div> |
||||
<div class="maincontentitemrightitem"> |
||||
<div class="flexcol namebox"> |
||||
<span> |
||||
尬粒酒店管理有限公司济南泺文路分公司 |
||||
</span> |
||||
<span> |
||||
单位名称 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
重点单位 |
||||
</span> |
||||
<span> |
||||
级别 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
历下区A消防救援站 |
||||
</span> |
||||
<span> |
||||
责任机构 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
历下区B消防救援站 |
||||
</span> |
||||
<span> |
||||
协助机构 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol"> |
||||
<span> |
||||
<label nz-radio ngModel [ngModel]="xxx" |
||||
(click)="radioChange($event)">宣传</label> |
||||
</span> |
||||
<span> |
||||
同步工作 |
||||
</span> |
||||
</div> |
||||
<div class="flexcol progressbox progresssquare"> |
||||
<span> |
||||
<nz-progress style="width: 200px;" nzStrokeLinecap="square" |
||||
nzStrokeWidth="16" nzStrokeColor="#42B983" [nzPercent]="30"> |
||||
</nz-progress> |
||||
</span> |
||||
<span> |
||||
进度 |
||||
</span> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<button nz-button nzType="primary">提交审核</button> |
||||
<button style="margin-left: 12px;" nz-button nzType="primary">取消</button> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<!-- --> |
||||
<div class="cutoffrule"></div> |
||||
</div> |
||||
|
||||
</div> |
@ -1,52 +1,383 @@
|
||||
.box { |
||||
width: 100%; |
||||
height: 100%; |
||||
display: flex; |
||||
flex-direction: column; |
||||
overflow: hidden; |
||||
} |
||||
|
||||
color: #303133; |
||||
.timebox { |
||||
width: 100%; |
||||
height: 68px; |
||||
box-sizing: border-box; |
||||
padding: 20px; |
||||
padding: 0 20px; |
||||
display: flex; |
||||
align-items: center; |
||||
|
||||
border-bottom: 1px dashed #C7CAD0; |
||||
|
||||
.fffbox { |
||||
width: 100%; |
||||
height: 100%; |
||||
nz-select { |
||||
margin-right: 16px; |
||||
border-radius: 4px 4px 4px 4px; |
||||
} |
||||
|
||||
.monthbtn { |
||||
width: 80px; |
||||
height: 32px; |
||||
line-height: 32px; |
||||
background: #FFFFFF; |
||||
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800); |
||||
border-radius: 4px 4px 4px 4px; |
||||
opacity: 1; |
||||
border: 1px solid #E4E7EC; |
||||
display: flex; |
||||
flex-direction: column; |
||||
color: #303133; |
||||
margin-right: 16px; |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.selectedMonth { |
||||
|
||||
.header { |
||||
width: 100%; |
||||
height: 56px; |
||||
background: #2C4DC0; |
||||
color: #FFFFFF; |
||||
} |
||||
} |
||||
|
||||
.instrumentpanelbox { |
||||
box-sizing: border-box; |
||||
padding: 18px; |
||||
color: #303133; |
||||
|
||||
.instrumentpanelheader { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
padding: 0 20px; |
||||
border-bottom: 1px solid #E4E7EC; |
||||
margin-bottom: 15px; |
||||
} |
||||
|
||||
span { |
||||
color: #303133; |
||||
font-weight: 500; |
||||
font-size: 16px; |
||||
.instrumentpanel { |
||||
display: flex; |
||||
flex-wrap: wrap; |
||||
} |
||||
|
||||
.instrumentpanelitem { |
||||
background: #FFFFFF; |
||||
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800); |
||||
border-radius: 4px 4px 4px 4px; |
||||
opacity: 1; |
||||
border: 1px solid #E4E7EC; |
||||
display: flex; |
||||
|
||||
|
||||
.itemone { |
||||
width: 100%; |
||||
height: 100%; |
||||
display: flex; |
||||
|
||||
.instrumentpanelitemleft { |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: space-around; |
||||
align-items: flex-start; |
||||
flex: 1; |
||||
box-sizing: border-box; |
||||
|
||||
|
||||
.panelheadername { |
||||
width: 80%; |
||||
height: 46px; |
||||
line-height: 46px; |
||||
text-align: center; |
||||
box-sizing: border-box; |
||||
border-radius: 6px 0px 6px 6px; |
||||
color: #fff; |
||||
|
||||
img { |
||||
vertical-align: text-top; |
||||
} |
||||
} |
||||
|
||||
.tasknum { |
||||
margin-left: 8px; |
||||
|
||||
p { |
||||
margin: 0; |
||||
} |
||||
} |
||||
|
||||
.btn { |
||||
margin-left: 8px; |
||||
width: 60%; |
||||
max-width: 96px; |
||||
height: 36px; |
||||
border-radius: 4px 4px 4px 4px; |
||||
background: #42B983; |
||||
color: white; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
|
||||
.instrumentpanelitemright { |
||||
flex: 1; |
||||
display: flex; |
||||
align-items: center; |
||||
|
||||
nz-progress { |
||||
margin-top: 65px; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.itemtwo { |
||||
width: 100%; |
||||
height: 100%; |
||||
display: flex; |
||||
box-sizing: border-box; |
||||
padding: 16px; |
||||
flex-direction: column; |
||||
overflow: hidden; |
||||
|
||||
.itemtwotitle { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
|
||||
.back { |
||||
cursor: pointer; |
||||
|
||||
i { |
||||
margin-right: 3px; |
||||
} |
||||
} |
||||
|
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.itemtwocontent { |
||||
flex: 1; |
||||
overflow-y: auto; |
||||
display: flex; |
||||
flex-direction: column; |
||||
|
||||
.itemtwocontentitem { |
||||
border-bottom: 1px dashed #C7CAD0; |
||||
height: 70px; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: space-around; |
||||
align-items: flex-start; |
||||
box-sizing: border-box; |
||||
padding: 8px 0; |
||||
|
||||
p { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
.itemtwocontentitemp1 { |
||||
width: 100%; |
||||
display: flex; |
||||
justify-content: space-between; |
||||
box-sizing: border-box; |
||||
padding-right: 5px; |
||||
|
||||
.itemtwocontentitemp1name { |
||||
white-space: nowrap; |
||||
overflow: hidden; |
||||
text-overflow: ellipsis; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.instrumentpanelitemopen { |
||||
width: 24.3%; |
||||
height: 260px; |
||||
margin-bottom: 18px; |
||||
margin-right: 8px; |
||||
.itemone { |
||||
.instrumentpanelitemleft { |
||||
padding: 26px 0 26px 10%; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.instrumentpanelitemclose { |
||||
width: 11.7%; |
||||
height: 200px; |
||||
margin-bottom: 0px; |
||||
margin-right: 1%; |
||||
.itemone { |
||||
.instrumentpanelitemleft { |
||||
padding: 15px 0 15px 10%; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.content { |
||||
flex: 1; |
||||
.stationcardlistbox { |
||||
.stationcardlistitembox { |
||||
width: 100%; |
||||
border-top: 1px dashed #C7CAD0; |
||||
box-sizing: border-box; |
||||
padding: 18px; |
||||
padding-top: 0px; |
||||
margin-top: 18px; |
||||
.operation { |
||||
|
||||
nz-date-picker { |
||||
width: 140px; |
||||
.stationcardlistitem { |
||||
width: 100%; |
||||
background: #FFFFFF; |
||||
box-shadow: 0px 3px 8px 1px rgba(0, 0, 0, 0.0800); |
||||
border-radius: 4px 4px 4px 4px; |
||||
border: 1px solid #E4E7EC; |
||||
color: #303133; |
||||
box-sizing: border-box; |
||||
padding: 0 18px; |
||||
|
||||
.header { |
||||
width: 100%; |
||||
height: 64px; |
||||
display: flex; |
||||
align-items: center; |
||||
text-align: left; |
||||
|
||||
.progress { |
||||
width: 200px; |
||||
display: flex; |
||||
align-items: center; |
||||
|
||||
span { |
||||
margin-right: 12px; |
||||
|
||||
} |
||||
|
||||
nz-progress { |
||||
width: 230px; |
||||
} |
||||
} |
||||
|
||||
.expand { |
||||
margin-left: 20px; |
||||
} |
||||
} |
||||
|
||||
.maincontent { |
||||
.maincontentitem { |
||||
box-sizing: border-box; |
||||
padding: 16px; |
||||
margin-bottom: 18px; |
||||
border-radius: 4px 4px 4px 4px; |
||||
border: 1px solid #42B983; |
||||
display: flex; |
||||
} |
||||
|
||||
.maincontentitemleft { |
||||
width: 170px; |
||||
box-sizing: border-box; |
||||
padding-right: 40px; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: flex-start; |
||||
align-items: center; |
||||
border-right: 1px dashed #C7CAD0; |
||||
|
||||
.panelheadername { |
||||
width: 90%; |
||||
height: 38px; |
||||
line-height: 38px; |
||||
text-align: center; |
||||
box-sizing: border-box; |
||||
border-radius: 6px 0px 6px 6px; |
||||
color: #fff; |
||||
margin-bottom: 8px; |
||||
|
||||
img { |
||||
vertical-align: text-top; |
||||
} |
||||
} |
||||
|
||||
.num { |
||||
display: flex; |
||||
justify-content: space-between; |
||||
align-items: center; |
||||
margin-bottom: 8px; |
||||
|
||||
.round { |
||||
width: 8px; |
||||
height: 8px; |
||||
} |
||||
|
||||
.word { |
||||
margin: 0 6px; |
||||
} |
||||
|
||||
.boldspan { |
||||
font-weight: 800; |
||||
font-size: 25px; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.maincontentitemright { |
||||
flex: 1; |
||||
box-sizing: border-box; |
||||
padding-left: 40px; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: space-around; |
||||
// align-items: center; |
||||
|
||||
.maincontentitemrightitem { |
||||
display: flex; |
||||
align-items: center; |
||||
box-sizing: border-box; |
||||
padding: 12px 0px; |
||||
border-bottom: 1px dashed #C7CAD0; |
||||
|
||||
|
||||
|
||||
.flexcol { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: flex-start; |
||||
margin-right: 3%; |
||||
|
||||
span:nth-child(1) { |
||||
color: #303133; |
||||
margin-bottom: 8px; |
||||
} |
||||
|
||||
span:nth-child(2) { |
||||
color: #C7CAD0; |
||||
} |
||||
} |
||||
|
||||
.namebox { |
||||
width: 28%; |
||||
} |
||||
|
||||
.progressbox { |
||||
width: 220px; |
||||
|
||||
span:nth-child(1) { |
||||
width: 100%; |
||||
} |
||||
} |
||||
|
||||
.btnbox { |
||||
display: flex; |
||||
justify-content: flex-end; |
||||
align-self: flex-start; |
||||
} |
||||
} |
||||
|
||||
div:last-child { |
||||
border-bottom: 0px; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
.cutoffrule { |
||||
width: 100%; |
||||
border-top: 1px dashed #C7CAD0; |
||||
} |
||||
|
After Width: | Height: | Size: 489 B |
Loading…
Reference in new issue