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

This commit is contained in:
wangshiming
2022-03-31 17:36:54 +08:00
4 changed files with 21 additions and 9 deletions

View File

@ -398,6 +398,7 @@ export class PartnerListComponent {
width: 150, width: 150,
type: 'badge', type: 'badge',
badge: { badge: {
0: { text: '未发起', color: 'default' },
10: { text: '待合伙人签约', color: 'default' }, 10: { text: '待合伙人签约', color: 'default' },
15: { text: '签约中', color: 'processing' }, 15: { text: '签约中', color: 'processing' },
20: { text: '平台签约完成', color: 'success' }, 20: { text: '平台签约完成', color: 'success' },
@ -411,9 +412,8 @@ export class PartnerListComponent {
type: 'badge', type: 'badge',
badge: { badge: {
0: { text: '未发起', color: 'default' }, 0: { text: '未发起', color: 'default' },
10: { text: '审核', color: 'processing' }, 10: { text: '审核失败', color: 'error' },
20: { text: '审核通过', color: 'success' }, 20: { text: '审核通过', color: 'success' }
30: { text: '驳回', color: 'error' }
} }
}, },
{ {

View File

@ -81,6 +81,13 @@ export class PersonalPartnerDetailComponent implements OnInit {
...new Set<string>((this.detailData?.cityCodesList as any[]).map(city => city.provinceCode)) ...new Set<string>((this.detailData?.cityCodesList as any[]).map(city => city.provinceCode))
]; ];
} }
if (this.detailData?.channelIdLabel) {
const channel = (this.detailData.channelIdLabel as string).split('/');
Object.assign(this.detailData, {
channelName: channel[0],
channelMobile: channel[1]
});
}
} }
}); });
} }
@ -285,7 +292,7 @@ export class PersonalPartnerDetailComponent implements OnInit {
buttons: [ buttons: [
{ {
text: '详情', text: '详情',
click: (item) => this.service.showChangeDetail(item.id) click: item => this.service.showChangeDetail(item.id)
} }
] ]
} }

View File

@ -123,7 +123,7 @@ export class InputInvoiceComponent implements OnInit {
title: '发票类型', title: '发票类型',
ui: { ui: {
widget: 'dict-select', widget: 'dict-select',
params: { dictKey: 'refund:apply:status' }, params: { dictKey: 'DictConstants.INVOICE_TYPE' },
placeholder: '请选择', placeholder: '请选择',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
@ -154,14 +154,19 @@ export class InputInvoiceComponent implements OnInit {
sts: { sts: {
type: 'string', type: 'string',
title: '收票状态', title: '收票状态',
enum: [
{ value: '', label: '全部' },
{ value: 1, label: '是' },
{ value: 0, label: '否' }
],
ui: { ui: {
widget: 'dict-select', widget: 'select',
params: { dictKey: 'refund:apply:status' },
placeholder: '请选择', placeholder: '请选择',
visibleIf: { visibleIf: {
expand: (value: boolean) => value expand: (value: boolean) => value
} }
} },
default: ''
}, },
invdate: { invdate: {
type: 'string', type: 'string',

View File

@ -25,7 +25,7 @@
{{headerInfo?.vatinvHNum}} {{headerInfo?.vatinvHNum}}
</se> </se>
<se label="收件人"> <se label="收件人">
{{headerInfo?.reciname}} {{headerInfo?.reciname}}/{{headerInfo?.recitel}}
</se> </se>
<se label="收件地址"> <se label="收件地址">
{{headerInfo?.provinceName}}{{headerInfo?.cityName}}{{headerInfo?.areaName}}{{headerInfo?.reciaddr}} {{headerInfo?.provinceName}}{{headerInfo?.cityName}}{{headerInfo?.areaName}}{{headerInfo?.reciaddr}}