|
|
|
@ -87,7 +87,7 @@ |
|
|
|
|
<li nz-menu-item *ngIf="data.status == 1"><a (click)="showEditAgentModal(data)">修改资料</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.type == 2"><a (click)="showApiRecharge(data)">余额充值</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.type == 2"><a (click)="showRecord(data.id)">动账记录</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.type == 2"><a (click)="showApiParam(data)">接入参数</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.type == 2 || data.type == 3"><a (click)="showApiParam(data)">接入参数</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.status == 1"><a (click)="disabled(data.agentNo)">禁用账户</a></li> |
|
|
|
|
<li nz-menu-item *ngIf="data.status == 2"><a (click)="enable(data.agentNo)">恢复账户</a></li> |
|
|
|
|
</ul> |
|
|
|
@ -227,21 +227,21 @@ |
|
|
|
|
</nz-form-control> |
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
<nz-form-item *ngIf="this.agentApiParamForm.controls['agentType'].value == 2"> |
|
|
|
|
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired>油站信息变更通知</nz-form-label> |
|
|
|
|
<nz-form-control [nzSm]="14" [nzXs]="24"> |
|
|
|
|
<input nz-input formControlName="merInfoNotify" placeholder="请输入油站信息变更通知地址" /> |
|
|
|
|
</nz-form-control> |
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
|
|
<nz-form-item> |
|
|
|
|
<nz-form-item *ngIf="this.agentApiParamForm.controls['agentType'].value == 2"> |
|
|
|
|
<nz-form-label [nzSm]="6" [nzXs]="24" nzRequired>订单退款审核通知</nz-form-label> |
|
|
|
|
<nz-form-control [nzSm]="14" [nzXs]="24"> |
|
|
|
|
<input nz-input formControlName="orderRefundNotify" placeholder="请输入订单退款审核通知地址" /> |
|
|
|
|
</nz-form-control> |
|
|
|
|
</nz-form-item> |
|
|
|
|
|
|
|
|
|
<div nz-flex style="margin-top: 15px" [nzJustify]="'center'"> |
|
|
|
|
<div nz-flex style="margin-top: 15px" [nzJustify]="'center'" *ngIf="this.agentApiParamForm.controls['agentType'].value == 2"> |
|
|
|
|
<button nz-button nzType="primary" (click)="submitApiParam()" class="submit-btn">保存</button> |
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|