Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
		| @ -54,10 +54,39 @@ | |||||||
|         </se> |         </se> | ||||||
|     </div> |     </div> | ||||||
|  |  | ||||||
|     <nz-alert nzType="info" nzMessage="提现进度" class="mb-md mt-md"></nz-alert> |     <nz-tabset class="mt-md"> | ||||||
|     <div nz-row class="mt-xl"> |         <nz-tab nzTitle="提现明细" *ngIf="accountType === '2'"> | ||||||
|         <div nz-col nzSpan="12" nzOffset="1"> |             <div nz-row nzGutter="8"> | ||||||
|             <app-logistics-time-line [data]="timeLineData"></app-logistics-time-line> |                 <div nz-col [nzXl]="_$expand ? 24 : 18" [nzLg]="24" [nzSm]="24" [nzXs]="24"> | ||||||
|         </div> |                     <sf #sf [schema]="inputSearchSchema" | ||||||
|     </div> |                         [ui]="{ '*': { spanLabelFixed: 110,grid: { lg: 8, md: 12, sm: 12, xs: 24 } }}" [compact]="true" | ||||||
|  |                         [button]="'none'"></sf> | ||||||
|  |                 </div> | ||||||
|  |                 <div nz-col [nzXl]="_$expand ? 24 : 6" [nzLg]="24" [nzSm]="24" [nzXs]="24" | ||||||
|  |                     class="text-right"> | ||||||
|  |                     <button nz-button nzType="primary" [nzLoading]="false" (click)="inputST?.load(1)">查询</button> | ||||||
|  |                     <button nz-button (click)="resetInputSF()">重置</button> | ||||||
|  |                     <button nz-button> 导出</button> | ||||||
|  |                     <button nz-button nzType="link" (click)="expandToggle()"> | ||||||
|  |                         {{ !_$expand ? '展开' : '收起' }} | ||||||
|  |                         <i nz-icon [nzType]="!_$expand ? 'down' : 'up'"></i> | ||||||
|  |                     </button> | ||||||
|  |                 </div> | ||||||
|  |             </div> | ||||||
|  |             <st #inputST [data]="service.$api_get_advance_collection_detail" [columns]="columns" | ||||||
|  |                 [page]="{ show: false }" [req]="{  process: beforeReq }" [res]="{ reName: { list: 'data' } }" | ||||||
|  |                 [loading]="false" [scroll]="{ x: '1200px', y: '370px' }" class="mt-md"> | ||||||
|  |                 <ng-template st-row="no" let-item let-index="index" let-column="column"> | ||||||
|  |                     {{index+1}} | ||||||
|  |                 </ng-template> | ||||||
|  |             </st> | ||||||
|  |         </nz-tab> | ||||||
|  |         <nz-tab nzTitle="提现进度"> | ||||||
|  |             <div nz-row class="mt-xl"> | ||||||
|  |                 <div nz-col nzSpan="12" nzOffset="1"> | ||||||
|  |                     <app-logistics-time-line [data]="timeLineData"></app-logistics-time-line> | ||||||
|  |                 </div> | ||||||
|  |             </div> | ||||||
|  |         </nz-tab> | ||||||
|  |     </nz-tabset> | ||||||
| </nz-card> | </nz-card> | ||||||
| @ -5,13 +5,19 @@ | |||||||
|         border          : 1px solid #dbdbdb; |         border          : 1px solid #dbdbdb; | ||||||
|  |  | ||||||
|         .ant-alert-message { |         .ant-alert-message { | ||||||
|             color: rgba(0, 0, 0, 0.85); |             color      : rgba(0, 0, 0, 0.85); | ||||||
|             font-weight: 600; |             font-weight: 600; | ||||||
|             font-size: 16px; |             font-size  : 16px; | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     .ant-form-item { |     .ant-form-item { | ||||||
|         margin-bottom: 15px; |         margin-bottom: 15px; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     nz-tabs-nav { | ||||||
|  |         background-color: #f3f3f3; | ||||||
|  |         border          : 1px solid #dbdbdb; | ||||||
|  |         padding-left    : 18px; | ||||||
|  |     } | ||||||
| } | } | ||||||
| @ -1,5 +1,7 @@ | |||||||
| import { Component, OnInit } from '@angular/core'; | import { Component, OnInit, ViewChild } from '@angular/core'; | ||||||
| import { ActivatedRoute } from '@angular/router'; | import { ActivatedRoute } from '@angular/router'; | ||||||
|  | import { STColumn, STRequestOptions } from '@delon/abc/st'; | ||||||
|  | import { SFComponent, SFSchema } from '@delon/form'; | ||||||
| import { FreightAccountService } from '../../../services/freight-account.service'; | import { FreightAccountService } from '../../../services/freight-account.service'; | ||||||
|  |  | ||||||
| @Component({ | @Component({ | ||||||
| @ -8,17 +10,37 @@ import { FreightAccountService } from '../../../services/freight-account.service | |||||||
|   styleUrls: ['./withdrawals-detail.component.less'] |   styleUrls: ['./withdrawals-detail.component.less'] | ||||||
| }) | }) | ||||||
| export class WithdrawalsDetailComponent implements OnInit { | export class WithdrawalsDetailComponent implements OnInit { | ||||||
|  |   @ViewChild('st', { static: true }) | ||||||
|  |   st!: Component; | ||||||
|  |   @ViewChild('sf', { static: false }) | ||||||
|  |   inputSF!: SFComponent; | ||||||
|  |   columns: STColumn[] = this.initST(); | ||||||
|  |   inputSearchSchema: SFSchema = this.initInputSF(); | ||||||
|  |   _$expand = false; | ||||||
|  |  | ||||||
|   formData: any = {}; |   formData: any = {}; | ||||||
|  |  | ||||||
|   timeLineData: any = []; |   timeLineData: any = []; | ||||||
|  |  | ||||||
|  |   accountType = '1'; | ||||||
|  |  | ||||||
|   constructor(public service: FreightAccountService, private route: ActivatedRoute) { |   constructor(public service: FreightAccountService, private route: ActivatedRoute) { | ||||||
|     const id = route.snapshot.params.id; |     const id = route.snapshot.params.id; | ||||||
|  |     this.accountType = route.snapshot.queryParams.type; | ||||||
|     this.loadRefundDetail(id); |     this.loadRefundDetail(id); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   ngOnInit(): void {} |   ngOnInit(): void {} | ||||||
|  |  | ||||||
|  |   beforeReq = (requestOptions: STRequestOptions) => { | ||||||
|  |     if (this.inputSF.value) { | ||||||
|  |       Object.assign(requestOptions.body, { | ||||||
|  |         ...this.inputSF.value | ||||||
|  |       }); | ||||||
|  |     } | ||||||
|  |     return requestOptions; | ||||||
|  |   }; | ||||||
|  |  | ||||||
|   loadRefundDetail(id: string) { |   loadRefundDetail(id: string) { | ||||||
|     this.service.request(this.service.$api_get_refund_detail, { id }).subscribe(res => { |     this.service.request(this.service.$api_get_refund_detail, { id }).subscribe(res => { | ||||||
|       if (res) { |       if (res) { | ||||||
| @ -80,7 +102,131 @@ export class WithdrawalsDetailComponent implements OnInit { | |||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   /** | ||||||
|  |    * 重置表单 | ||||||
|  |    */ | ||||||
|  |   resetInputSF() { | ||||||
|  |     this.inputSF.reset(); | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   /** | ||||||
|  |    * 伸缩查询条件 | ||||||
|  |    */ | ||||||
|  |   expandToggle() { | ||||||
|  |     this._$expand = !this._$expand; | ||||||
|  |     this.inputSF?.setValue('/expand', this._$expand); | ||||||
|  |   } | ||||||
|  |  | ||||||
|   goBack() { |   goBack() { | ||||||
|     history.go(-1); |     history.go(-1); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   private initInputSF(): SFSchema { | ||||||
|  |     return { | ||||||
|  |       properties: { | ||||||
|  |         expand: { | ||||||
|  |           type: 'boolean', | ||||||
|  |           ui: { | ||||||
|  |             hidden: true | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHCode: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '支付编号', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入' | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHCod1e: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '订单号', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入' | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHCo1de: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '货源编号', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入' | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHC1ode: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '服务类型', | ||||||
|  |           ui: { | ||||||
|  |             widget: 'select', | ||||||
|  |             placeholder: '请选择', | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHCo11de: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '承运司机', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入司机姓名/手机号', | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHCo111de: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '车牌号', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入', | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHC1o11de: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '收款人', | ||||||
|  |           ui: { | ||||||
|  |             placeholder: '请输入收款人姓名/手机号', | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|  |         billHC1o111de: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '车队长收款', | ||||||
|  |           ui: { | ||||||
|  |             widget: 'select', | ||||||
|  |             placeholder: '请选择', | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|  |           } | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |     }; | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   private initST(): STColumn[] { | ||||||
|  |     return [ | ||||||
|  |       { title: '支付编号', index: 'brmHCode', className: 'text-left', width: 200 }, | ||||||
|  |       { | ||||||
|  |         title: '支付金额', | ||||||
|  |         index: 'yskmoney', | ||||||
|  |         type: 'widget', | ||||||
|  |         className: 'text-right', | ||||||
|  |         widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.yskmoney }) }, | ||||||
|  |         width: 140 | ||||||
|  |       }, | ||||||
|  |       { title: '运费明细', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '货主', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '订单号', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '运单号', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '货源编号', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '服务类型', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '承运司机', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '收款人', index: 'billHId', className: 'text-center', width: 150 }, | ||||||
|  |       { title: '银行类型', index: 'billHId', className: 'text-center', width: 150 } | ||||||
|  |     ]; | ||||||
|  |   } | ||||||
| } | } | ||||||
|  | |||||||
| @ -28,9 +28,9 @@ export class WithdrawalsRecordComponent { | |||||||
|   refundStatus: any = ''; |   refundStatus: any = ''; | ||||||
|  |  | ||||||
|   msg = ''; |   msg = ''; | ||||||
|   constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router) { } |   constructor(public service: FreightAccountService, private nzModalService: NzModalService, private router: Router) {} | ||||||
|  |  | ||||||
|   ngOnInit(): void { } |   ngOnInit(): void {} | ||||||
|  |  | ||||||
|   beforeReq = (requestOptions: STRequestOptions) => { |   beforeReq = (requestOptions: STRequestOptions) => { | ||||||
|     if (this.sf) { |     if (this.sf) { | ||||||
| @ -254,7 +254,7 @@ export class WithdrawalsRecordComponent { | |||||||
|       { title: '提现单号', index: 'refundApplyCode', width: 120 }, |       { title: '提现单号', index: 'refundApplyCode', width: 120 }, | ||||||
|       { title: '网络货运人', index: 'ltdName', width: 140 }, |       { title: '网络货运人', index: 'ltdName', width: 140 }, | ||||||
|       { title: '银行类型', index: 'bankTypeLabel', width: 100 }, |       { title: '银行类型', index: 'bankTypeLabel', width: 100 }, | ||||||
|       { title: '账户类型', index: 'bankTypeLabel', width: 100 }, |       { title: '账户类型', index: 'accountType', width: 100 }, | ||||||
|       { title: '账户名称', index: 'bankAccountName', width: 140 }, |       { title: '账户名称', index: 'bankAccountName', width: 140 }, | ||||||
|       { title: '虚拟账户', index: 'virtualAccount', width: 100 }, |       { title: '虚拟账户', index: 'virtualAccount', width: 100 }, | ||||||
|       { |       { | ||||||
| @ -276,6 +276,18 @@ export class WithdrawalsRecordComponent { | |||||||
|         width: '110px', |         width: '110px', | ||||||
|         className: 'text-center', |         className: 'text-center', | ||||||
|         buttons: [ |         buttons: [ | ||||||
|  |           { | ||||||
|  |             text: '审核', | ||||||
|  |             iif: item => item.refundStatus === '1', | ||||||
|  |             click: item => this.auditAction(item) | ||||||
|  |           }, | ||||||
|  |           { | ||||||
|  |             text: '详情<br>', | ||||||
|  |             click: item => | ||||||
|  |               this.router.navigate([`/financial-management/withdrawals-record/detail/${item.id}`], { | ||||||
|  |                 queryParams: { type: item.accountType } | ||||||
|  |               }) | ||||||
|  |           }, | ||||||
|           { |           { | ||||||
|             text: '查看回单', |             text: '查看回单', | ||||||
|             iif: item => item.refundStatus === '3', |             iif: item => item.refundStatus === '3', | ||||||
| @ -287,15 +299,6 @@ export class WithdrawalsRecordComponent { | |||||||
|                 bussType: '06', |                 bussType: '06', | ||||||
|                 ltdId: item.ltdId |                 ltdId: item.ltdId | ||||||
|               }) |               }) | ||||||
|           }, |  | ||||||
|           { |  | ||||||
|             text: '审核', |  | ||||||
|             iif: item => item.refundStatus === '1', |  | ||||||
|             click: item => this.auditAction(item) |  | ||||||
|           }, |  | ||||||
|           { |  | ||||||
|             text: '详情', |  | ||||||
|             click: item => this.router.navigate([`/financial-management/withdrawals-record/detail/${item.id}`]) |  | ||||||
|           } |           } | ||||||
|         ] |         ] | ||||||
|       } |       } | ||||||
|  | |||||||
| @ -65,6 +65,9 @@ | |||||||
|             <se [col]="1" label="发票号码" required> |             <se [col]="1" label="发票号码" required> | ||||||
|                 <input nz-input [(ngModel)]="openInfo.invoiceno" placeholder="请输入" /> |                 <input nz-input [(ngModel)]="openInfo.invoiceno" placeholder="请输入" /> | ||||||
|             </se> |             </se> | ||||||
|  |             <se [col]="1" label="发票代码" required> | ||||||
|  |                 <input nz-input [(ngModel)]="openInfo.invoiceno2" placeholder="请输入" /> | ||||||
|  |             </se> | ||||||
|         </div> |         </div> | ||||||
|     </div> |     </div> | ||||||
| </ng-template> | </ng-template> | ||||||
| @ -29,10 +29,10 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|   selectedRows: any[] = []; |   selectedRows: any[] = []; | ||||||
|   totalCallNo = 0; |   totalCallNo = 0; | ||||||
|  |  | ||||||
|   openInfo: any = { invoicedate: null, invoiceno: null }; |   openInfo: any = { invoicedate: null, invoiceno: null, invoiceno2: null }; | ||||||
|   constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) { } |   constructor(public service: TicketService, private nzModalService: NzModalService, private router: Router) {} | ||||||
|  |  | ||||||
|   ngOnInit(): void { } |   ngOnInit(): void {} | ||||||
|  |  | ||||||
|   beforeReq = (requestOptions: STRequestOptions) => { |   beforeReq = (requestOptions: STRequestOptions) => { | ||||||
|     if (this.sf) { |     if (this.sf) { | ||||||
| @ -78,7 +78,7 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|    * @param item |    * @param item | ||||||
|    */ |    */ | ||||||
|   requestedAction(item: any) { |   requestedAction(item: any) { | ||||||
|     this.openInfo = { invoicedate: null, invoiceno: null }; |     this.openInfo = { invoicedate: null, invoiceno: null, invoiceno2: null }; | ||||||
|     const modal = this.nzModalService.create({ |     const modal = this.nzModalService.create({ | ||||||
|       nzTitle: '发票确认', |       nzTitle: '发票确认', | ||||||
|       nzContent: this.requestedModal, |       nzContent: this.requestedModal, | ||||||
| @ -89,7 +89,8 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|         } |         } | ||||||
|         const params = { |         const params = { | ||||||
|           invoiceno: this.openInfo.invoiceno, |           invoiceno: this.openInfo.invoiceno, | ||||||
|           invoicedate: dateTimePickerUtil.format(this.openInfo.invoicedate) |           invoicedate: dateTimePickerUtil.format(this.openInfo.invoicedate), | ||||||
|  |           invoiceno2: this.openInfo.invoiceno2 | ||||||
|         }; |         }; | ||||||
|         this.service |         this.service | ||||||
|           .request(this.service.$api_apply_fico_invoic, { |           .request(this.service.$api_apply_fico_invoic, { | ||||||
| @ -154,7 +155,7 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|     this.nzModalService.warning({ |     this.nzModalService.warning({ | ||||||
|       nzTitle: '确定将所选待确认开票申请撤回?', |       nzTitle: '确定将所选待确认开票申请撤回?', | ||||||
|       nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果', |       nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果', | ||||||
|       nzOnOk: () => { } |       nzOnOk: () => {} | ||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
| @ -170,7 +171,7 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|     this.nzModalService.warning({ |     this.nzModalService.warning({ | ||||||
|       nzTitle: '确定将所选待确认开票申请撤回?', |       nzTitle: '确定将所选待确认开票申请撤回?', | ||||||
|       nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果', |       nzContent: '提交税控后发票信息不可修改,待税控开票完成后返回开票结果', | ||||||
|       nzOnOk: () => { } |       nzOnOk: () => {} | ||||||
|     }); |     }); | ||||||
|   } |   } | ||||||
|  |  | ||||||
| @ -369,22 +370,22 @@ export class CancellationInvoiceComponent implements OnInit { | |||||||
|         buttons: [ |         buttons: [ | ||||||
|           { type: 'divider' }, |           { type: 'divider' }, | ||||||
|           { |           { | ||||||
|             text: '查看明细', |             text: '查看明细<br>', | ||||||
|             click: item => |             click: item => | ||||||
|               this.router.navigate(['ticket/cancellation-invoice/detail/' + item.id], { |               this.router.navigate(['ticket/cancellation-invoice/detail/' + item.id], { | ||||||
|                 queryParams: { type: 1, expressno: item.expressno, ltdId: item.shipperId } |                 queryParams: { type: 1, expressno: item.expressno, ltdId: item.shipperId } | ||||||
|               }) |               }) | ||||||
|           }, |           }, | ||||||
|           { |           { | ||||||
|             text: '手工开票', |             text: '手工开票<br>', | ||||||
|             iif: item => item.sts != '3', |             iif: item => item.sts != '3', | ||||||
|             click: item => this.requestedAction(item) |             click: item => this.requestedAction(item) | ||||||
|           }, |           }, | ||||||
|           { |           { | ||||||
|             text: '推送开票', |             text: '推送开票<br>', | ||||||
|             iif: item => item.sts === '1', |             iif: item => item.sts === '1', | ||||||
|             click: item => this.pushInvoiceAction(item) |             click: item => this.pushInvoiceAction(item) | ||||||
|           }, |           } | ||||||
|           // { |           // { | ||||||
|           //   text: '作废发票', |           //   text: '作废发票', | ||||||
|           //   iif: item => item.sts === '3', |           //   iif: item => item.sts === '3', | ||||||
|  | |||||||
| @ -137,6 +137,13 @@ export class InvoicedListComponent implements OnInit { | |||||||
|             autocomplete: 'off' |             autocomplete: 'off' | ||||||
|           } |           } | ||||||
|         }, |         }, | ||||||
|  |         invoiceno2: { | ||||||
|  |           type: 'string', | ||||||
|  |           title: '发票代码', | ||||||
|  |           ui: { | ||||||
|  |             autocomplete: 'off' | ||||||
|  |           } | ||||||
|  |         }, | ||||||
|         vatappHCode: { |         vatappHCode: { | ||||||
|           type: 'string', |           type: 'string', | ||||||
|           title: '申请编号', |           title: '申请编号', | ||||||
| @ -151,7 +158,10 @@ export class InvoicedListComponent implements OnInit { | |||||||
|             widget: 'sl-from-to-search', |             widget: 'sl-from-to-search', | ||||||
|             format: 'yyyy-MM-dd', |             format: 'yyyy-MM-dd', | ||||||
|             placeholder: '请选择', |             placeholder: '请选择', | ||||||
|             nzShowTime: true |             nzShowTime: true, | ||||||
|  |             visibleIf: { | ||||||
|  |               expand: (value: boolean) => value | ||||||
|  |             } | ||||||
|           } as SFDateWidgetSchema |           } as SFDateWidgetSchema | ||||||
|         }, |         }, | ||||||
|         artoname: { |         artoname: { | ||||||
| @ -196,6 +206,7 @@ export class InvoicedListComponent implements OnInit { | |||||||
|     return [ |     return [ | ||||||
|       { title: '', index: 'key', type: 'checkbox' }, |       { title: '', index: 'key', type: 'checkbox' }, | ||||||
|       { title: '发票号码', index: 'invoiceno', width: 150 }, |       { title: '发票号码', index: 'invoiceno', width: 150 }, | ||||||
|  |       { title: '发票代码', index: 'invoiceno2', width: 150 }, | ||||||
|       { |       { | ||||||
|         title: '申请编号', |         title: '申请编号', | ||||||
|         index: 'vatappHCode', |         index: 'vatappHCode', | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user