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

View File

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

View File

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