tree-exp-viewtreeexpbar-treeexpbar.html 2.0 KB
Newer Older
IBZGIT01's avatar
IBZGIT01 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
<div class="app-mob-treeexpbar ">
<!-- [ngStyle]="{'height': selectedDatas.length >0?'calc(100vh - 194px)':'calc(100vh - 44px)'}"  -->
<div class="treeexpbar-container" [ngStyle]="{'height':'calc(100vh - 206px)'}">
    <div style="width: 100px;"  class="treeexpbar-container-slider">
        <ctrl-usr-treeview   [name]="'treeexpbar_tree'" [viewState]="viewState" [isembeddedView]="isembeddedView"  [isModalMode]="isModalMode"  [viewtype]="'TREEEXPBAR'" (selectionchangeemit)="treeexpbar_tree_selectionchange($event)" (loademit)="treeexpbar_tree_load($event)" ></ctrl-usr-treeview>
    </div>
    <div style="width: calc(100% - 100px);" class="treeexpbar-container-content">
    <div  class="treeexpbar-container-content-item" *ngIf="selectedItem === 'BGYPMobPickupMDView'">
        <view-bgypmob-pickup-mdview  [loadText]="searchtext" (viewdataschange)="viewDatsChange($event)"></view-bgypmob-pickup-mdview>
    </div>
    </div>
</div>
<div style="height: 150px;">
    <div class="app-list-bottom">
        <div class="top">
            已添加的申请物品
        </div>
        <div class="bottom">
            <ng-container *ngIf="selectedDatas.length >0">
                <ng-container *ngFor="let data of selectedDatas">
                    <div class="app-list-bottom-item">
                        <div style="width:100px;">{{data.srfmajortext}}</div>
                        <div style="width:120px;">
                            <Stepper [(ngModel)]="data.count" (ngModelChange)="change($event,data)" [defaultValue]="0"
                                [min]="0" [showNumber]="true"></Stepper>
                        </div>
                    </div>
                </ng-container>
            </ng-container>
        </div>
    </div>
    <div class="app-btn-bottom">
        <div class="top">
            <div class="title">选择申请{{totalCount}}件物品</div>
            <div class="content">需等待审批同意后领取</div>
        </div>
        <div class="bottom" (click)="submitApply()">
            提交申请
        </div>
    </div>
</div>
</div>