83 lines
3.0 KiB
HTML
83 lines
3.0 KiB
HTML
<!--
|
||
* @Author: your name
|
||
* @Date: 2021-11-30 15:09:49
|
||
* @LastEditTime: 2021-11-30 16:28:26
|
||
* @LastEditors: Please set LastEditors
|
||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||
* @FilePath: \tms-obc-web\src\app\routes\usercenter\components\freight\user\detail\detail.component.html
|
||
-->
|
||
<ng-container >
|
||
<!-- 页头 -->
|
||
<page-header-wrapper [title]="'用户列表详情'" [logo]="logo" [content]="content">
|
||
<ng-template #logo>
|
||
<button nz-button nz-tooltip nzTooltipTitle="返回上一页" (click)="goBack()">
|
||
<i nz-icon nzType="left" nzTheme="outline"></i>
|
||
</button>
|
||
</ng-template>
|
||
<ng-template #content>
|
||
<div class="user-info">
|
||
<div style="flex: 1">
|
||
<div style="display: flex;">
|
||
<p style="padding-right: 80px; width: 400px; font-size: 20px;">申请编号:{{ detailData?.shoppFeignVO?.publicity }}</p>
|
||
</div>
|
||
<div style="display: flex;">
|
||
<p style="padding-right: 80px; width: 400px;">申请时间{{ detailData?.shoppFeignVO?.introduction }}</p>
|
||
<p >申请人:黄龙真人</p>
|
||
</div>
|
||
<div>
|
||
申请人手机号:6846846416541
|
||
</div>
|
||
<div style="position: relative;top: -65%;
|
||
left: 85%;">
|
||
<span style="font-size: 12px;">状态</span>
|
||
<br />
|
||
<span>待审核</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</ng-template>
|
||
</page-header-wrapper>
|
||
<nz-card>
|
||
<sv-container col="1">
|
||
<sv-title>申请人信息</sv-title>
|
||
<sv label="姓名">
|
||
{{ detailData?.contactsName }}
|
||
</sv>
|
||
<sv label="身份证号码">
|
||
{{ detailData?.contactsPhone }}
|
||
</sv>
|
||
<sv label="企业授权函">
|
||
<!-- <app-imagelist [imgList]="detailData?.enterpriseQualificationCertificate"></app-imagelist> -->
|
||
<div style="float: right;">
|
||
<button nz-button nzType="default" nzDanger (click)="auditPass()">审核通过</button>
|
||
<button nz-button nzType="default" nzDanger (click)="auditNo()">驳回审核</button>
|
||
<button nz-button nzType="default" nzDanger (click)="ratify()">修改</button>
|
||
</div>
|
||
</sv>
|
||
</sv-container>
|
||
<nz-divider></nz-divider>
|
||
<sv-container col="3" class="mt16">
|
||
<sv-title>关联企业</sv-title>
|
||
<st
|
||
#st
|
||
[bordered]="true"
|
||
[columns]="columns"
|
||
[data]="detailData.goodsList"
|
||
[ngStyle]="{ margin: '1rem 0' }"
|
||
multiSort
|
||
size="small"
|
||
[page]="{ show: false }"
|
||
>
|
||
</st>
|
||
</sv-container>
|
||
|
||
</nz-card>
|
||
</ng-container>
|
||
<nz-modal [(nzVisible)]="isVisible" nzTitle="类型" (nzOnOk)="handleOK('suppliersType')">
|
||
<sf #sf1 [schema]="schema1" [ui]="ui" [compact]="false" [button]="'none'" [formData]="suppliersData"></sf>
|
||
<div *nzModalFooter>
|
||
<button nz-button nzType="default" (click)="handleCancel('suppliersType')">取消</button>
|
||
<button nz-button nzType="primary" (click)="handleOK('suppliersType')" [disabled]="!sf1.valid">确认</button>
|
||
</div>
|
||
</nz-modal>
|