tripartite-company.component.html 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <div class="list-template">
  2. <div class="list-template__content">
  3. <div class="list-template__top" nz-row>
  4. <div nz-col nzXl='16' class="list-template__searchBox">
  5. <div class="list-template__searchItem">
  6. <span class="label">公司名称</span>:
  7. <input nz-input class="formItem" placeholder="请输入公司名称" [(ngModel)]="searchDto.name" />
  8. </div>
  9. <div class="list-template__searchItem">
  10. <span class="label">公司分类</span>:
  11. <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" nzServerSearch nzShowSearch nzAllowClear nzPlaceHolder="请选择公司分类" [(ngModel)]="searchDto.companyTypeIds">
  12. <ng-container *ngFor="let option of companyTypeList">
  13. <nz-option *ngIf="!isLoading" [nzLabel]="option.name" nzValue="{{option.id}}"></nz-option>
  14. </ng-container>
  15. <nz-option *ngIf="isLoading" nzDisabled nzCustomContent>
  16. <i nz-icon nzType="loading" class="loading-icon"></i> 搜索中...
  17. </nz-option>
  18. </nz-select>
  19. </div>
  20. </div>
  21. <div nz-col nzLg="8" class="list-template__btns">
  22. <button nz-button class="btn default ml8" (click)='search()'>搜索</button>
  23. <button nz-button class="btn default ml8" (click)='reset()'>重置</button>
  24. <button nz-button *ngIf="coopBtns.add" class="btn default ml8" (click)="addModal()">新增</button>
  25. </div>
  26. </div>
  27. <div class="list-template__bottom">
  28. <nz-table class="list-template__nzTable" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false"
  29. [nzLoading]="loading1">
  30. <thead>
  31. <tr class="thead">
  32. <th nzWidth="14%">公司编号</th>
  33. <th nzWidth="14%">公司全称</th>
  34. <th nzWidth="14%">公司简称</th>
  35. <th nzWidth="14%">公司分类</th>
  36. <th nzWidth="14%">联系人</th>
  37. <th nzWidth="14%">联系电话</th>
  38. <th nzWidth="11%">操作</th>
  39. </tr>
  40. </thead>
  41. <tbody>
  42. <tr *ngFor="let data of listOfData;let i = index">
  43. <td>{{data.code}}</td>
  44. <td>{{data.name}}</td>
  45. <td>{{data.nickName}}</td>
  46. <td>{{data.companyTypeList | dataToName:'name':','}}</td>
  47. <td>{{data.contacts}}</td>
  48. <td>{{data.mphone}}</td>
  49. <td>
  50. <div class="coop">
  51. <span *ngIf="coopBtns.edit" (click)="edit($event, data)">编辑</span>
  52. <span *ngIf="coopBtns.del" (click)="showDelModal($event, data,'删除后您配置的相关巡检计划,下次执行时不在生成巡检任务,您确认要删除吗?','删除','del')">删除</span>
  53. </div>
  54. </td>
  55. </tr>
  56. </tbody>
  57. </nz-table>
  58. <div class="list-template__pagination">
  59. <nz-pagination [(nzPageIndex)]="pageIndex" [(nzTotal)]="listLength" [(nzPageSize)]="pageSize" nzShowSizeChanger
  60. (nzPageIndexChange)="getList(0)" (nzPageSizeChange)="getList(0)">
  61. </nz-pagination>
  62. </div>
  63. </div>
  64. </div>
  65. <!-- 新增/编辑模态框 -->
  66. <div class="save display_flex justify-content_flex-center align-items_center add" *ngIf="modal">
  67. <div class="modalBody">
  68. <div class="title">{{modelName}}<i class="icon_transport transport-guanbi" (click)="hideAddModal()"></i></div>
  69. <div class="content">
  70. <form nz-form [formGroup]="validateForm" class="addForm">
  71. <nz-form-item *ngIf="!add">
  72. <nz-form-label [nzSpan]="5" nzRequired>公司编号</nz-form-label>
  73. <nz-form-control [nzSpan]="19">
  74. {{coopData.code}}
  75. </nz-form-control>
  76. </nz-form-item>
  77. <nz-form-item>
  78. <nz-form-label [nzSpan]="5" nzRequired nzFor="name">使用范围</nz-form-label>
  79. <nz-form-control [nzSpan]="19" nzErrorTip="请输入使用范围!">
  80. <nz-radio-group formControlName="employScope">
  81. <label nz-radio [nzValue]="i.id" *ngFor="let i of scopeList" [nzDisabled]="i.disabled">{{i.name}}</label>
  82. <!-- <label nz-radio nzValue="1">院区内使用</label> -->
  83. <!-- <label nz-radio nzValue="2" *ngIf="currentHospital.parentDeptId">部门内使用</label> -->
  84. <!-- <label nz-radio nzValue="3" *ngIf="currentHospital.parent || currentHospital.parentDeptId">垂直部门使用</label> -->
  85. </nz-radio-group>
  86. </nz-form-control>
  87. </nz-form-item>
  88. <nz-form-item>
  89. <nz-form-label [nzSpan]="5" nzRequired nzFor="name">公司全称</nz-form-label>
  90. <nz-form-control [nzSpan]="19" nzErrorTip="请输入公司全称!">
  91. <nz-input-group>
  92. <input formControlName="name" nz-input placeholder="请输入公司全称">
  93. </nz-input-group>
  94. </nz-form-control>
  95. </nz-form-item>
  96. <nz-form-item>
  97. <nz-form-label [nzSpan]="5" nzRequired nzFor="nickName">公司简称</nz-form-label>
  98. <nz-form-control [nzSpan]="19" nzErrorTip="请输入公司简称!">
  99. <nz-input-group>
  100. <input formControlName="nickName" nz-input placeholder="请输入公司简称">
  101. </nz-input-group>
  102. </nz-form-control>
  103. </nz-form-item>
  104. <nz-form-item>
  105. <nz-form-label [nzSpan]="5" nzRequired nzFor="companyTypeIds">公司分类</nz-form-label>
  106. <nz-form-control [nzSpan]="19" nzErrorTip="请选择公司分类!">
  107. <nz-checkbox-group formControlName="companyTypeIds"></nz-checkbox-group>
  108. </nz-form-control>
  109. </nz-form-item>
  110. <nz-form-item>
  111. <nz-form-label [nzSpan]="5" nzFor="contacts">&nbsp;&nbsp;联&nbsp;系&nbsp;人</nz-form-label>
  112. <nz-form-control [nzSpan]="19" nzErrorTip="请输入联系人!">
  113. <nz-input-group>
  114. <input formControlName="contacts" nz-input placeholder="请输入联系人">
  115. </nz-input-group>
  116. </nz-form-control>
  117. </nz-form-item>
  118. <nz-form-item>
  119. <nz-form-label [nzSpan]="5" nzFor="mphone">&nbsp;&nbsp;联系电话</nz-form-label>
  120. <nz-form-control [nzSpan]="19" nzErrorTip="请输入联系电话!">
  121. <nz-input-group>
  122. <input formControlName="mphone" nz-input placeholder="请输入联系电话">
  123. </nz-input-group>
  124. </nz-form-control>
  125. </nz-form-item>
  126. </form>
  127. </div>
  128. <div class="display_flex justify-content_flex-center">
  129. <button nzType="primary" nz-button (click)="submitForm()" [nzLoading]="btnLoading">确认</button>
  130. <button class="btn cancel" nz-button nzType="default" (click)="hideAddModal()">取消</button>
  131. </div>
  132. </div>
  133. </div>
  134. <!-- 模态框 -->
  135. <app-dialog-delete [delModal]="delModal" (hideDelModalEvent)="hideDelModal()" [btnLoading]="btnLoading"
  136. (confirmDelEvent)="confirmDel()" [content]="tipsMsg1"></app-dialog-delete>
  137. </div>
  138. <!-- 操作成功/失败提示框 -->
  139. <app-prompt-modal *ngIf="promptModalShow" [content]="promptContent" [success]="ifSuccess" [show]="promptModalShow"
  140. [info]="promptInfo">
  141. </app-prompt-modal>