Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
Taric Xin
2022-03-22 10:26:30 +08:00
4 changed files with 9 additions and 5 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-12 10:52:50 * @Date : 2022-01-12 10:52:50
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-03-21 15:09:10 * @LastEditTime : 2022-03-22 09:42:03
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\risk\\risk.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\risk\\risk.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
--> -->
@ -92,7 +92,7 @@
<div *ngFor="let i of item?.goodsInfoVOList"> <div *ngFor="let i of item?.goodsInfoVOList">
<p>货物名称:{{ i?.goodsName }}</p> <p>货物名称:{{ i?.goodsName }}</p>
<p>重量/体积:{{ i?.weight }}吨/{{ i?.volume }}方</p> <p>重量/体积:{{ i?.weight }}吨/{{ i?.volume }}方</p>
<p>车型/车长:{{ i?.carModel }}/ {{ i?.carLength }}</p> <p>车型/车长:{{ i?.carModelLabel }}/ {{ i?.carLengthLabel }}</p>
</div> </div>
</ng-template> </ng-template>
</st> </st>

View File

@ -279,7 +279,7 @@ export class OrderManagementRiskComponent implements OnInit {
{ {
title: '货物信息', title: '货物信息',
className: 'text-left', className: 'text-left',
width: '200px', width: '250px',
render: 'goodsInfoVOList' render: 'goodsInfoVOList'
}, },
{ {

View File

@ -70,6 +70,7 @@ export class FreightConfigComponent implements OnInit {
nzWidth: 900, nzWidth: 900,
nzComponentParams: { nzComponentParams: {
extendType: '2', extendType: '2',
spareBusinessId: item.networkTransporter,
businessId: item.id, businessId: item.id,
formatTypeList: (item: any[]) => [ formatTypeList: (item: any[]) => [
...item, ...item,

View File

@ -4,7 +4,7 @@
* @Author : Shiming * @Author : Shiming
* @Date : 2022-01-10 16:06:17 * @Date : 2022-01-10 16:06:17
* @LastEditors : Shiming * @LastEditors : Shiming
* @LastEditTime : 2022-02-17 13:28:39 * @LastEditTime : 2022-03-22 10:05:15
* @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\dynamic-setting\\dynamic-setting-modal\\dynamic-setting-modal.component.ts * @FilePath : \\tms-obc-web\\src\\app\\shared\\components\\dynamic-setting\\dynamic-setting-modal\\dynamic-setting-modal.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved. * Copyright (C) 2022 huzhenhong. All rights reserved.
*/ */
@ -34,6 +34,8 @@ export class DynamicSettingModalComponent implements OnInit {
@Input() @Input()
extendType!: string; extendType!: string;
@Input() @Input()
spareBusinessId!: string;
@Input()
businessId!: string; businessId!: string;
@Input() @Input()
configvalue!: string; configvalue!: string;
@ -54,7 +56,8 @@ export class DynamicSettingModalComponent implements OnInit {
.request('/api/mdc/pbc/sysConfigItemExtend/getSysConfigExtend', { .request('/api/mdc/pbc/sysConfigItemExtend/getSysConfigExtend', {
configFullKey: this.configFullKey, configFullKey: this.configFullKey,
extendType: this.extendType, extendType: this.extendType,
businessId: this.businessId businessId: this.businessId,
spareBusinessId: this.spareBusinessId,
}) })
.pipe( .pipe(
map((res: Array<any>) => { map((res: Array<any>) => {