fix bug
This commit is contained in:
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2021-12-29 17:27:37
|
* @Date : 2021-12-29 17:27:37
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-01-18 17:22:55
|
* @LastEditTime : 2022-04-28 19:27:13
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\modify-captain\\modify-captain.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\modify-captain\\modify-captain.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
-->
|
-->
|
||||||
@ -29,7 +29,7 @@
|
|||||||
</ng-template>
|
</ng-template>
|
||||||
<ng-template st-row="bankList" let-item let-index="index">
|
<ng-template st-row="bankList" let-item let-index="index">
|
||||||
<nz-select [(ngModel)]="bankData" style="width: 200px">
|
<nz-select [(ngModel)]="bankData" style="width: 200px">
|
||||||
<nz-option *ngFor="let i of item.bankList" [nzLabel]="i.bankCardNumber" [nzValue]="i.id"></nz-option>
|
<nz-option *ngFor="let i of item.bankList" [nzLabel]="i.bankName + '/'+i.bankCardNumber" [nzValue]="i.id"></nz-option>
|
||||||
</nz-select>
|
</nz-select>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<ng-template st-row="paymentMethodRate" let-item let-index="index">
|
<ng-template st-row="paymentMethodRate" let-item let-index="index">
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2021-12-30 14:45:39
|
* @Date : 2021-12-30 14:45:39
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-04-22 16:31:57
|
* @LastEditTime : 2022-04-28 19:27:14
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\modify-captain\\modify-captain.component.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\modify-captain\\modify-captain.component.ts
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
*/
|
*/
|
||||||
@ -38,6 +38,21 @@ export class VehicleModifyCaptainComponent implements OnInit {
|
|||||||
this.initSF();
|
this.initSF();
|
||||||
this.initST();
|
this.initST();
|
||||||
}
|
}
|
||||||
|
initData(id: string) {
|
||||||
|
// this.service.request(this.service.$api_getDriverBankInfoList, {roleId: id}).subscribe((res:any) => {
|
||||||
|
// console.log(res);
|
||||||
|
// if(res) {
|
||||||
|
// let List :any= []
|
||||||
|
// res.forEach((element: any) => {
|
||||||
|
// List.push({
|
||||||
|
// bankCardNumber: element.bankBranchName + '/'+element.bankCardNumber,
|
||||||
|
// value: element.id
|
||||||
|
// })
|
||||||
|
// });
|
||||||
|
// this.bankData = List
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
}
|
||||||
initSF() {
|
initSF() {
|
||||||
this.schema = {
|
this.schema = {
|
||||||
properties: {
|
properties: {
|
||||||
@ -120,6 +135,7 @@ export class VehicleModifyCaptainComponent implements OnInit {
|
|||||||
this.service.request(this.service.$api_get_getCarCaptainByMobile, params).subscribe((res: any) => {
|
this.service.request(this.service.$api_get_getCarCaptainByMobile, params).subscribe((res: any) => {
|
||||||
if (res) {
|
if (res) {
|
||||||
this.dataList = [res];
|
this.dataList = [res];
|
||||||
|
this.initData(res.appUserId);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2021-12-03 15:31:52
|
* @Date : 2021-12-03 15:31:52
|
||||||
* @LastEditors : Shiming
|
* @LastEditors : Shiming
|
||||||
* @LastEditTime : 2022-04-22 17:14:39
|
* @LastEditTime : 2022-04-28 19:19:01
|
||||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\services\\order-management.service.ts
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\services\\order-management.service.ts
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||||
*/
|
*/
|
||||||
@ -222,6 +222,9 @@ export class OrderManagementService extends ShipperBaseService {
|
|||||||
// 订单上报推送
|
// 订单上报推送
|
||||||
$api_manualOrderSubmission = '/api/sdc/billOperate/manualOrderSubmission';
|
$api_manualOrderSubmission = '/api/sdc/billOperate/manualOrderSubmission';
|
||||||
|
|
||||||
|
// 获取司机所有银行卡信息
|
||||||
|
$api_getDriverBankInfoList= '/api/fcc/bankInfoDMC/getDriverBankInfoList';
|
||||||
|
|
||||||
// // 生成卸货单
|
// // 生成卸货单
|
||||||
// public $api_createBillDischargeGoods = `/api/sdc/billOperate/createBillDischargeGoods`;
|
// public $api_createBillDischargeGoods = `/api/sdc/billOperate/createBillDischargeGoods`;
|
||||||
// // 生成提货单
|
// // 生成提货单
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
<!--
|
<!--
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-12-24 15:38:08
|
* @Date: 2021-12-24 15:38:08
|
||||||
* @LastEditTime: 2021-12-27 11:21:35
|
* @LastEditTime : 2022-04-28 19:05:49
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors : Shiming
|
||||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||||
* @FilePath: \tms-obc-web\src\app\routes\sys-setting\components\crm-management\crm-management.component.html
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\sys-setting\\components\\close-account\\close-account.component.html
|
||||||
-->
|
-->
|
||||||
<page-header-wrapper title="结算客户管理">
|
<page-header-wrapper title="结算客户管理">
|
||||||
</page-header-wrapper>
|
</page-header-wrapper>
|
||||||
@ -16,7 +16,6 @@
|
|||||||
<sf #sf [schema]="schema" [ui]="ui" [mode]="'search'" [loading]="false" (formSubmit)="st?.load(1)"
|
<sf #sf [schema]="schema" [ui]="ui" [mode]="'search'" [loading]="false" (formSubmit)="st?.load(1)"
|
||||||
(formReset)="resetSF()"></sf>
|
(formReset)="resetSF()"></sf>
|
||||||
</div>
|
</div>
|
||||||
edit
|
|
||||||
<!-- 查询字段大于3个时,根据展开状态调整布局 -->
|
<!-- 查询字段大于3个时,根据展开状态调整布局 -->
|
||||||
<ng-container *ngIf="queryFieldCount > 4">
|
<ng-container *ngIf="queryFieldCount > 4">
|
||||||
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
<div nz-col [nzSpan]="_$expand ? 24 : 18">
|
||||||
|
|||||||
@ -188,7 +188,7 @@ this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 24 } } };
|
|||||||
if(res) {
|
if(res) {
|
||||||
this.formData = res;
|
this.formData = res;
|
||||||
const List: any = [];
|
const List: any = [];
|
||||||
List.push({ label: res.enterpriseName, value: res.id });
|
List.push({ label: res.enterpriseName, value: res.enterpriseId });
|
||||||
this.sfFre.getProperty('/enterpriseId')!.schema.enum = List;
|
this.sfFre.getProperty('/enterpriseId')!.schema.enum = List;
|
||||||
this.sfFre.getProperty('/enterpriseId')!.widget.reset(List);
|
this.sfFre.getProperty('/enterpriseId')!.widget.reset(List);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user