-
待审批
-
+
{{formData?.stsLabel}}
+
+ '0' ?'审核':'复审'}}
@@ -61,14 +61,14 @@
{{formData?.stsLabel}}
-
+
-
{{formData?.expressName}}
-
-
diff --git a/src/app/routes/partner/recorded/components/detail/detail.component.ts b/src/app/routes/partner/recorded/components/detail/detail.component.ts
index 6e9a5b99..bbfad88e 100644
--- a/src/app/routes/partner/recorded/components/detail/detail.component.ts
+++ b/src/app/routes/partner/recorded/components/detail/detail.component.ts
@@ -88,7 +88,7 @@ export class PartnerRecordedDetailComponent implements OnInit {
this.service.msgSrv.warning('请填写拒绝原因 ');
return;
}
- this.audit({ id: params, rejectReason: this.msg, sts: '3' }, () => {
+ this.audit({ ids: params, rejectReason: this.msg, sts: '3' }, () => {
modal.destroy(true);
}, '审核拒绝成功');
}
@@ -97,7 +97,7 @@ export class PartnerRecordedDetailComponent implements OnInit {
label: '通过',
type: 'primary',
onClick: () => {
- this.audit({ id: params, rejectReason: this.msg, sts: this.formData?.sts === '0' ? 1 : 2 }, () => {
+ this.audit({ ids: params, rejectReason: this.msg, sts: this.formData?.sts === '0' ? 1 : 2 }, () => {
modal.destroy(true);
}, `${this.formData?.sts === '1' ? '审核' : '复审'}通过成功`);
}
diff --git a/src/app/routes/partner/recorded/components/record/record.component.html b/src/app/routes/partner/recorded/components/record/record.component.html
index ce514695..2de32d76 100644
--- a/src/app/routes/partner/recorded/components/record/record.component.html
+++ b/src/app/routes/partner/recorded/components/record/record.component.html
@@ -44,7 +44,7 @@
{{ item.bankName }}
{{ item.bankCardNumber }}
diff --git a/src/app/routes/partner/recorded/components/record/record.component.ts b/src/app/routes/partner/recorded/components/record/record.component.ts
index 9751a9cb..d4e0d8de 100644
--- a/src/app/routes/partner/recorded/components/record/record.component.ts
+++ b/src/app/routes/partner/recorded/components/record/record.component.ts
@@ -70,7 +70,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
};
afterRes = (data: any[], rawData?: any) => {
- data = data.map(node => ({ ...node, disabled: node.sts !== '0' }));
+ // data = data.map(node => ({ ...node, disabled: node.sts !== '0' }));
return data;
};
@@ -148,7 +148,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
this.service.msgSrv.warning('请填写拒绝原因 ');
return;
}
- this.audit({ id: params, rejectReason: this.msg, sts: '3' }, () => {
+ this.audit({ ids: params, rejectReason: this.msg, sts: '3' }, () => {
modal.destroy();
this.st.load(1);
}, '审核拒绝成功');
@@ -170,7 +170,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
label: '通过',
type: 'primary',
onClick: () => {
- this.audit({ id: params, rejectReason: this.msg, sts: '1' }, () => {
+ this.audit({ ids: params, rejectReason: this.msg, sts: '1' }, () => {
modal.destroy();
this.st.load(1);
}, '审核通过成功');
@@ -238,10 +238,10 @@ export class PartnerRecordedRecordComponent implements OnInit {
default: '',
enum: [
{ label: '全部', value: '' },
- { label: '待初审', value: 0 },
- { label: '待复核', value: 1 },
- { label: '已入账', value: 2 },
- { label: '已拒绝', value: 3 },
+ { label: '待初审', value: '0' },
+ { label: '待复核', value: '1' },
+ { label: '已入账', value: '2' },
+ { label: '已拒绝', value: '3' },
],
ui: {
widget: 'select',
@@ -309,7 +309,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
},
{ title: '提交时间', index: 'submitTime', width: 160, className: 'text-center' },
- { title: '入账状态', index: 'stsLabel', width: 100, className: 'text-center' },
+ { title: '入账状态', index: 'stsLabel', width: 120, className: 'text-center' },
{
title: '操作',
fixed: 'right',