This commit is contained in:
wangshiming
2022-04-28 20:26:30 +08:00
parent 6cc12ff451
commit 2aeaa09e14
112 changed files with 339 additions and 339 deletions

View File

@ -227,7 +227,7 @@ export class AccountComponentsEditNameComponent implements OnInit, AfterViewInit
}
submitForm() {
const params = {
smsVerifyCode: this.sf.value.smsVerifyCode,
smsVerifyCode: this.sf?.value.smsVerifyCode,
};
this.service.http.post(this.service.$api_get_verifyPhone, params).subscribe((res) => {

View File

@ -275,22 +275,22 @@ export class ContractManagementTemplateTextComponent implements OnInit {
save() {
if (
!this.sf.value.templateName ||
!this.sf.value.templateType ||
!this.sf?.value.templateName ||
!this.sf?.value.templateType ||
!this.sf2.value.templateContent ||
!(this.title || this.detailList.templateName)
) {
this.service.msgSrv.error('必填参数为空,请检查再重新保存!');
return;
}
if (this.sf.value.templateType == 'MX') {
if (this.sf.value.contractType == '') {
if (this.sf?.value.templateType == 'MX') {
if (this.sf?.value.contractType == '') {
this.service.msgSrv.error('必填参数为空,请检查再重新保存!');
return;
}
}
const params = {
...this.sf.value,
...this.sf?.value,
...this.sf2.value,
templateTitle: this.detailList.templateName || this.title
};

View File

@ -34,7 +34,7 @@ export class ContractManagementPolicyComponent implements OnInit {
*/
get reqParams() {
const params: any = {
...(this.sf && this.sf.value)
...(this.sf && this.sf?.value)
};
delete params.expand;
return params;

View File

@ -195,7 +195,7 @@ export class DatatableComplianceSalesmanComponent implements OnInit {
differenceInCalendarDays(current, this.today) > 0;
export() {
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf.value, {});
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf?.value, {});
}
search() {
this.st?.load(1)

View File

@ -153,7 +153,7 @@ export class DatatableDriverComponent implements OnInit {
differenceInCalendarDays(current, this.today) > 0;
export() {
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf.value, {});
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf?.value, {});
}
search() {
this.st?.load(1)

View File

@ -313,7 +313,7 @@ export class DatatableMancustomtableComponent implements OnInit {
differenceInCalendarDays(current, this.today) > 0;
export() {
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf.value, {});
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf?.value, {});
}
search() {
this.st?.load(1);

View File

@ -165,7 +165,7 @@ export class DatatableOwnerComponent implements OnInit {
differenceInCalendarDays(current, this.today) > 0;
export() {
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf.value, {});
// this.service.downloadFile(this.service.$api_exportUploadBill, this.sf?.value, {});
}
search() {
this.st?.load(1)

View File

@ -38,7 +38,7 @@ export class AbnormalGoldComponent extends BasicTableComponent implements OnInit
beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, { rechargeStatus: this.rechargeStatus });
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
return requestOptions;
};

View File

@ -36,7 +36,7 @@ export class AdvanceCollectionComponent extends BasicTableComponent {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
return requestOptions;
};

View File

@ -125,7 +125,7 @@ export class CwcBankCardManagementBindComponent implements OnInit {
submit() {
if (this.sf.valid) {
this.service.request(this.service.$api_bank_card_add, { ...this.sf.value }).subscribe(res => {
this.service.request(this.service.$api_bank_card_add, { ...this.sf?.value }).subscribe(res => {
if (res) {
this.modalRef.destroy(true);
}

View File

@ -42,14 +42,14 @@ export class CostManagementComponent extends BasicTableComponent implements OnIn
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
feedate: {
start: this.sf.value.feedate?.[0] || '',
end: this.sf.value.feedate?.[1] || ''
start: this.sf?.value.feedate?.[0] || '',
end: this.sf?.value.feedate?.[1] || ''
},
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -40,10 +40,10 @@ export class DriverAccountDetailComponent implements OnInit {
});
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''
}
});
}
@ -78,7 +78,7 @@ export class DriverAccountDetailComponent implements OnInit {
exportList() {
this.service.exportStart(
{
...this.sf.value,
...this.sf?.value,
pageSize: -1,
ltdId: this.params.ltdId,
projectId: this.params.projectId,
@ -86,8 +86,8 @@ export class DriverAccountDetailComponent implements OnInit {
roleId: this.params.roleId,
bankType: this.params.bankType,
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''
}
},
this.service.$api_get_exportAccountBalanceDriverByOperatorPage

View File

@ -38,12 +38,12 @@ export class DriverAccountComponent extends BasicTableComponent implements OnIni
beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, { accountType: 2 });
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, { ...this.sf?.value });
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -39,7 +39,7 @@ export class FreightAccountDetailComponent implements OnInit {
});
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
@ -85,7 +85,7 @@ export class FreightAccountDetailComponent implements OnInit {
exportList() {
this.service.exportStart(
{
...this.sf.value,
...this.sf?.value,
pageSize: -1,
ltdId: this.params.ltdId,
projectId: this.params.projectId,

View File

@ -44,12 +44,12 @@ export class FreightAccountComponent extends BasicTableComponent implements OnIn
beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, { accountType: 1 });
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, { ...this.sf?.value });
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -44,29 +44,29 @@ export class PayableOrderDetailComponent implements OnInit {
Object.assign(requestOptions.body, { phxHId: this.billHId });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
billTime: {
start: this.sf.value.billTime?.[0] || null,
end: this.sf.value.billTime?.[1] || null
start: this.sf?.value.billTime?.[0] || null,
end: this.sf?.value.billTime?.[1] || null
},
feedate: {
start: this.sf.value.feedate?.[0] || null,
end: this.sf.value.feedate?.[1] || null
start: this.sf?.value.feedate?.[0] || null,
end: this.sf?.value.feedate?.[1] || null
}
});
if (this.sf.value.billTime) {
if (this.sf?.value.billTime) {
Object.assign(requestOptions.body, {
billTime: {
start: this.sf.value.billTime?.[0] || null,
end: this.sf.value.billTime?.[1] || null
start: this.sf?.value.billTime?.[0] || null,
end: this.sf?.value.billTime?.[1] || null
}
});
}
if (this.sf.value.feedate) {
if (this.sf?.value.feedate) {
Object.assign(requestOptions.body, {
feedate: {
start: this.sf.value.feedate?.[0] || null,
end: this.sf.value.feedate?.[1] || null
start: this.sf?.value.feedate?.[0] || null,
end: this.sf?.value.feedate?.[1] || null
}
});
}

View File

@ -45,21 +45,21 @@ export class PayableOrderComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value?.createTime) {
if (this.sf?.value?.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}
if (this.sf.value?.phxdate) {
if (this.sf?.value?.phxdate) {
Object.assign(requestOptions.body, {
phxdate: {
start: this.sf.value.phxdate?.[0] || '',
end: this.sf.value.phxdate?.[1] || ''
start: this.sf?.value.phxdate?.[0] || '',
end: this.sf?.value.phxdate?.[1] || ''
}
});
}

View File

@ -39,15 +39,15 @@ export class PaymentOrderDetailComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
payHId: this.id,
billTime: {
start: this.sf.value.billTime?.[0] || null,
end: this.sf.value.billTime?.[1] || null
start: this.sf?.value.billTime?.[0] || null,
end: this.sf?.value.billTime?.[1] || null
},
feedate: {
start: this.sf.value.feedate?.[0] || null,
end: this.sf.value.feedate?.[1] || null
start: this.sf?.value.feedate?.[0] || null,
end: this.sf?.value.feedate?.[1] || null
}
});
} else {

View File

@ -38,7 +38,7 @@ export class PaymentOrderComponent extends BasicTableComponent implements OnInit
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
let params = { ...this.sf.value };
let params = { ...this.sf?.value };
if (params.payDate) {
const payDate = { start: this.sf?.value?.payDate?.[0], end: this.sf?.value?.payDate?.[1] };
params.payDate = payDate;

View File

@ -38,14 +38,14 @@ export class PaymentRecordComponent extends BasicTableComponent implements OnIni
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
applyDate: {
start: this.sf.value.applyDate?.[0] || '',
end: this.sf.value.applyDate?.[1] || ''
start: this.sf?.value.applyDate?.[0] || '',
end: this.sf?.value.applyDate?.[1] || ''
},
handlerDate: {
start: this.sf.value.handlerDate?.[0] || '',
end: this.sf.value.handlerDate?.[1] || ''
start: this.sf?.value.handlerDate?.[0] || '',
end: this.sf?.value.handlerDate?.[1] || ''
}
});
}

View File

@ -34,13 +34,13 @@ export class PlatformAccountDetailComponent implements OnInit {
Object.assign(requestOptions.body, { ...this.params });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.createTime) {
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''
}
});
}
@ -68,11 +68,11 @@ export class PlatformAccountDetailComponent implements OnInit {
exportList() {
this.service.exportStart(
{
...this.sf.value,
...this.sf?.value,
...this.params,
createTime: {
start: this.sf.value?.createTime?.[0] || '',
end: this.sf.value?.createTime?.[1] || ''
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''
},
pageSize: -1
},

View File

@ -36,7 +36,7 @@ export class PlatformAccountComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
this.loadStatistics(requestOptions.body);
return requestOptions;
@ -45,7 +45,7 @@ export class PlatformAccountComponent implements OnInit {
loadInfo() {
const params = {};
if (this.sf) {
Object.assign(params, { ...this.sf.value });
Object.assign(params, { ...this.sf?.value });
}
this.service.request(this.service.$api_get_platform_account_header, params).subscribe(res => {
if (res) {

View File

@ -64,13 +64,13 @@ export class SettingFinancialComponent implements OnInit {
}
sure() {
if (!this.sf.value.roleIds || this.sf.value.roleIds.length === 0) {
if (!this.sf?.value.roleIds || this.sf?.value.roleIds.length === 0) {
this.service.msgSrv.error('员工角色不能为空!');
return;
}
this.roleNames = [];
this.roleList.forEach((item: { id: any; roleName: string }) => {
this.sf.value.roleIds.forEach((ele: any) => {
this.sf?.value.roleIds.forEach((ele: any) => {
if (ele === item.id) {
this.roleNames.push(item.roleName);
}
@ -78,11 +78,11 @@ export class SettingFinancialComponent implements OnInit {
});
if (this.i.id === 0) {
const params: any = {
...this.sf.value,
roleId: this.sf.value.roleIds,
...this.sf?.value,
roleId: this.sf?.value.roleIds,
roleNames: this.roleNames.join(','),
telephone: this.sf.value.phone,
staffName: this.sf.value.name
telephone: this.sf?.value.phone,
staffName: this.sf?.value.name
};
// this.service.request(this.service.$api_addStaff, params).subscribe((res) => {
// if (res) {
@ -95,8 +95,8 @@ export class SettingFinancialComponent implements OnInit {
} else {
const params: any = {
appUserId: this.i.appUserId,
staffName: this.sf.value.name,
roleId: this.sf.value.roleIds,
staffName: this.sf?.value.name,
roleId: this.sf?.value.roleIds,
telephone: this.i.telephone
};
// this.service.request(this.service.$api_editorStaff, params).subscribe((res) => {

View File

@ -37,21 +37,21 @@ export class ReceiptOrderComponent extends BasicTableComponent implements OnInit
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.brmdate) {
if (this.sf?.value.brmdate) {
Object.assign(requestOptions.body, {
brmdate: {
start: this.sf.value.brmdate?.[0] || '',
end: this.sf.value.brmdate?.[1] || ''
start: this.sf?.value.brmdate?.[0] || '',
end: this.sf?.value.brmdate?.[1] || ''
}
});
}
if (this.sf.value.createTime) {
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -45,13 +45,13 @@ export class ReceivableOrderDetailComponent implements OnInit {
Object.assign(requestOptions.body, { ahxHId: this.id });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.feedate?.[0]) {
if (this.sf?.value.feedate?.[0]) {
Object.assign(requestOptions.body, {
feedate: {
start: this.sf.value.feedate?.[0] || '',
end: this.sf.value.feedate?.[1] || ''
start: this.sf?.value.feedate?.[0] || '',
end: this.sf?.value.feedate?.[1] || ''
}
});
}

View File

@ -47,21 +47,21 @@ export class ReceivableOrderComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value?.createTime) {
if (this.sf?.value?.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}
if (this.sf.value?.ahxdate) {
if (this.sf?.value?.ahxdate) {
Object.assign(requestOptions.body, {
ahxdate: {
start: this.sf.value.ahxdate?.[0] || '',
end: this.sf.value.ahxdate?.[1] || ''
start: this.sf?.value.ahxdate?.[0] || '',
end: this.sf?.value.ahxdate?.[1] || ''
}
});
}

View File

@ -33,12 +33,12 @@ export class RechargeRecordComponent extends BasicTableComponent implements OnIn
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
if (this.sf.value.createTime) {
Object.assign(requestOptions.body, { ...this.sf?.value });
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -41,10 +41,10 @@ export class RefundRecordComponent extends BasicTableComponent implements OnInit
Object.assign(requestOptions.body, { refundStatus: this.refundStatus || null });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
refundExecuteTime: {
start: this.sf.value.refundExecuteTime?.[0] || '',
end: this.sf.value.refundExecuteTime?.[1] || ''
start: this.sf?.value.refundExecuteTime?.[0] || '',
end: this.sf?.value.refundExecuteTime?.[1] || ''
}
});
}

View File

@ -30,10 +30,10 @@ export class TransactionFlowComponent extends BasicTableComponent {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -34,21 +34,21 @@ export class VoucherManagementComponent extends BasicTableComponent implements O
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.createTime) {
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || null,
end: this.sf.value.createTime?.[1] || null
start: this.sf?.value.createTime?.[0] || null,
end: this.sf?.value.createTime?.[1] || null
}
});
}
if (this.sf.value.vctime) {
if (this.sf?.value.vctime) {
Object.assign(requestOptions.body, {
vctime: {
start: this.sf.value.vctime?.[0] || null,
end: this.sf.value.vctime?.[1] || null
start: this.sf?.value.vctime?.[0] || null,
end: this.sf?.value.vctime?.[1] || null
}
});
}

View File

@ -34,21 +34,21 @@ export class VoucherListComponent implements OnInit {
Object.assign(requestOptions.body, { vc2code: this.vc2code });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.createTime) {
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || null,
end: this.sf.value.createTime?.[1] || null
start: this.sf?.value.createTime?.[0] || null,
end: this.sf?.value.createTime?.[1] || null
}
});
}
if (this.sf.value.vctime) {
if (this.sf?.value.vctime) {
Object.assign(requestOptions.body, {
vctime: {
start: this.sf.value.vctime?.[0] || null,
end: this.sf.value.vctime?.[1] || null
start: this.sf?.value.vctime?.[0] || null,
end: this.sf?.value.vctime?.[1] || null
}
});
}

View File

@ -42,14 +42,14 @@ export class VoucherSummaryComponent extends BasicTableComponent implements OnIn
Object.assign(requestOptions.body, { isvc2: 1 });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createtime: {
start: this.sf.value.createtime?.[0] || '',
end: this.sf.value.createtime?.[1] || ''
start: this.sf?.value.createtime?.[0] || '',
end: this.sf?.value.createtime?.[1] || ''
},
vctime: {
start: this.sf.value.vctime?.[0] || '',
end: this.sf.value.vctime?.[1] || ''
start: this.sf?.value.vctime?.[0] || '',
end: this.sf?.value.vctime?.[1] || ''
}
});
}

View File

@ -44,10 +44,10 @@ export class WithdrawalsRecordComponent extends BasicTableComponent {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
},
});
}

View File

@ -85,10 +85,10 @@ export class SystemLogsComponent implements OnInit {
requestOptions.body.operateType = '1';
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
operateType: '1',
endTime: this.sf.value.time?.[1] || null,
startTime: this.sf.value.time?.[0] || null
endTime: this.sf?.value.time?.[1] || null,
startTime: this.sf?.value.time?.[0] || null
});
}
return requestOptions;

View File

@ -64,10 +64,10 @@ export class SystemSupplyLogsComponent implements OnInit {
requestOptions.body.operateType = '4'
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
operateType: '4',
endTime: this.sf.value.time?.[1] || null,
startTime: this.sf.value.time?.[0] || null
endTime: this.sf?.value.time?.[1] || null,
startTime: this.sf?.value.time?.[0] || null
});
}
return requestOptions;

View File

@ -63,10 +63,10 @@ export class SystemWaybillLogsComponent implements OnInit {
requestOptions.body.operateType = '3'
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
operateType: '3',
endTime: this.sf.value.time?.[1] || null,
startTime: this.sf.value.time?.[0] || null
endTime: this.sf?.value.time?.[1] || null,
startTime: this.sf?.value.time?.[0] || null
});
}
return requestOptions;

View File

@ -93,10 +93,10 @@ export class UserLogsComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
time: {
start: this.sf.value.time?.[0] || null,
end: this.sf.value.time?.[1] || null
start: this.sf?.value.time?.[0] || null,
end: this.sf?.value.time?.[1] || null
}
});
}

View File

@ -94,10 +94,10 @@ export class VersionLogsComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
publishTime: {
start: this.sf.value.time?.[0] || null,
end: this.sf.value.time?.[1] || null
start: this.sf?.value.time?.[0] || null,
end: this.sf?.value.time?.[1] || null
}
});
}

View File

@ -37,7 +37,7 @@ export class AuthDrawerComponent implements OnInit {
Object.assign(requestOptions.body, { id: this.id });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
return requestOptions;

View File

@ -129,17 +129,17 @@ export class MenuModalComponent implements OnInit {
return;
}
const params = {
...this.sf.value,
...this.sf?.value,
...this.params,
i18n: null,
// i18n: this.sf.value.keyCode,
// i18n: this.sf?.value.keyCode,
menuType: 0,
reuse: 0,
shortcut: 0,
hideInBreadcrumb: 0,
functionType: 0,
sortId: this.sf.value.sortId?.toString() || null,
text: this.sf.value.title
sortId: this.sf?.value.sortId?.toString() || null,
text: this.sf?.value.title
};
this.service.request(this.service.$api_add_one, params).subscribe(res => {
if (res) {

View File

@ -547,21 +547,21 @@ export class OrderManagementVehicleDetailChangeComponent implements OnInit {
loadTime: this.loadTime,
// 到车时间
unloadTime: this.unloadTime,
loadingLadingBillFilePath: this.sf.value?.loadingLadingBillFilePath?.data
? this.sf.value?.loadingLadingBillFilePath.data.fullFilePath
: this.sf.value?.loadingLadingBillFilePath?.url,
loadingLadingBillFilePath: this.sf?.value?.loadingLadingBillFilePath?.data
? this.sf?.value?.loadingLadingBillFilePath.data.fullFilePath
: this.sf?.value?.loadingLadingBillFilePath?.url,
loadingPeopleVehiclesGoodsFilePath: this.sf.value?.loadingPeopleVehiclesGoodsFilePath?.data
? this.sf.value?.loadingPeopleVehiclesGoodsFilePath.data.fullFilePath
: this.sf.value?.loadingPeopleVehiclesGoodsFilePath?.url,
loadingPeopleVehiclesGoodsFilePath: this.sf?.value?.loadingPeopleVehiclesGoodsFilePath?.data
? this.sf?.value?.loadingPeopleVehiclesGoodsFilePath.data.fullFilePath
: this.sf?.value?.loadingPeopleVehiclesGoodsFilePath?.url,
unloadingLadingBillFilePath: this.sf.value?.unloadingLadingBillFilePath?.data
? this.sf.value?.unloadingLadingBillFilePath.data.fullFilePath
: this.sf.value?.unloadingLadingBillFilePath?.url,
unloadingLadingBillFilePath: this.sf?.value?.unloadingLadingBillFilePath?.data
? this.sf?.value?.unloadingLadingBillFilePath.data.fullFilePath
: this.sf?.value?.unloadingLadingBillFilePath?.url,
unloadingPeopleVehiclesGoodsFilePath: this.sf.value?.unloadingPeopleVehiclesGoodsFilePath?.data
? this.sf.value?.unloadingPeopleVehiclesGoodsFilePath.data.fullFilePath
: this.sf.value?.unloadingPeopleVehiclesGoodsFilePath?.url
unloadingPeopleVehiclesGoodsFilePath: this.sf?.value?.unloadingPeopleVehiclesGoodsFilePath?.data
? this.sf?.value?.unloadingPeopleVehiclesGoodsFilePath.data.fullFilePath
: this.sf?.value?.unloadingPeopleVehiclesGoodsFilePath?.url
};
this.service.request(this.service.$api_set_modifyWholeOrder, params).subscribe((res: any) => {
if (res) {

View File

@ -184,7 +184,7 @@ export class UpdateFreightComponent implements OnInit {
if (this.calculateSub) {
this.calculateSub.unsubscribe();
}
const params = { billId: this.data.billId, changeCause: this.sf.value.changeCause, dto: {...this.sf.value} }
const params = { billId: this.data.billId, changeCause: this.sf?.value.changeCause, dto: {...this.sf?.value} }
this.calculateSub = this.service
.request(this.service.$api_calculate_cost, params)
.subscribe(res => {
@ -203,7 +203,7 @@ export class UpdateFreightComponent implements OnInit {
this.sf.validator({ emitError: true });
return;
}
const params = { billId: this.data.billId, changeCause: this.sf.value.changeCause, dto: {...this.sf.value} }
const params = { billId: this.data.billId, changeCause: this.sf?.value.changeCause, dto: {...this.sf?.value} }
this.service.request(this.service.$api_change_bulk,params).subscribe((res: any) => {
if (res) {
this.service.msgSrv.success('变更运费成功!');

View File

@ -103,11 +103,11 @@ export class OneCarOrderCancelConfirmComponent implements OnInit {
console.log(this.List)
}
save(value: any): void {
if (!this.sf.value.reason) {
if (!this.sf?.value.reason) {
this.service.msgSrv.error('请填写备注信息!');
return;
}
const params = { billId: this.i?.id, ...this.sf.value };
const params = { billId: this.i?.id, ...this.sf?.value };
console.log(params)
this.service.request(this.service.$api_billRefundApplication_save, params).subscribe(res => {
if (res) {

View File

@ -60,7 +60,7 @@ export class OneCarOrderCancelComponent implements OnInit {
this.modal.confirm({
nzTitle: '<i>是否确定立即取消运单!</i>',
nzOnOk: () =>
this.service.request(this.service.$api_get_cancelAnOrder, { id: this.i?.id, ...this.sf.value }).subscribe(res => {
this.service.request(this.service.$api_get_cancelAnOrder, { id: this.i?.id, ...this.sf?.value }).subscribe(res => {
if (res) {
this.modalRef.close(true);
}
@ -68,7 +68,7 @@ export class OneCarOrderCancelComponent implements OnInit {
nzOnCancel: () => this.modalRef.destroy()
});
} else {
this.service.request(this.service.$api_get_cancelAnOrder, { id: this.i?.id, ...this.sf.value }).subscribe(res => {
this.service.request(this.service.$api_get_cancelAnOrder, { id: this.i?.id, ...this.sf?.value }).subscribe(res => {
if (res) {
this.modalRef.close(true);
}

View File

@ -68,14 +68,14 @@ export class VehicleFreightPeopleComponent implements OnInit {
}
save(value: any): void {
console.log(this.sf.value);
console.log(this.sf?.value);
if(!this.sf.valid) {
this.service.msgSrv.error("请选择网络货运人!")
return;
}
const params = {
billIds: this.data?.ids,
enterpriseInfoId: this.sf.value?.enterpriseInfoId
enterpriseInfoId: this.sf?.value?.enterpriseInfoId
};
console.log(params);
this.service.request(this.service.$api_set_updateEnterpriseInfoBatch, params).subscribe((res: any) => {

View File

@ -78,14 +78,14 @@ export class VehicleModifyRateComponent implements OnInit {
}
save(value: any): void {
if (!this.sf.value?.additionalRate) {
if (!this.sf?.value?.additionalRate) {
this.service.msgSrv.warning('请填写附加费!');
return;
}
console.log(this.sf.value);
console.log(this.sf?.value);
const params = {
ids: this.data?.ids,
...this.sf.value
...this.sf?.value
};
console.log(params);
this.service.request(this.service.$api_set_updateAdditionalRateBatch, params).subscribe((res: any) => {

View File

@ -165,8 +165,8 @@ export class VehicleUpdateFreightComponent implements OnInit {
});
}
});
// this.tranPrice = this.sf.value.prePay + this.sf.value.toPay + this.sf.value.oilCardPay + this.sf.value.receiptPay;
// this.totalPrice = this.sf.value.prePay + this.sf.value.toPay + this.sf.value.oilCardPay + this.sf.value.receiptPay + this.otherPrice;
// this.tranPrice = this.sf?.value.prePay + this.sf?.value.toPay + this.sf?.value.oilCardPay + this.sf?.value.receiptPay;
// this.totalPrice = this.sf?.value.prePay + this.sf?.value.toPay + this.sf?.value.oilCardPay + this.sf?.value.receiptPay + this.otherPrice;
}
getParams() {
@ -174,13 +174,13 @@ export class VehicleUpdateFreightComponent implements OnInit {
editItems.forEach((item: any) => {
switch (item.costName) {
case '预付':
item.price = this.sf.value.prePay;
item.price = this.sf?.value.prePay;
break;
case '到付':
item.price = this.sf.value.toPay;
item.price = this.sf?.value.toPay;
break;
case '回单付':
item.price = this.sf.value.receiptPay;
item.price = this.sf?.value.receiptPay;
break;
default:
break;
@ -190,7 +190,7 @@ export class VehicleUpdateFreightComponent implements OnInit {
const params = {
billId: this.data.id,
dtos: editItems,
changeCause: this.sf.value.changeCause
changeCause: this.sf?.value.changeCause
};
return params;
}
@ -198,9 +198,9 @@ export class VehicleUpdateFreightComponent implements OnInit {
const param = {
billId: this.data.id,
pre: this.sf.value.prePay,
rece: this.sf.value.toPay,
back: this.sf.value.receiptPay,
pre: this.sf?.value.prePay,
rece: this.sf?.value.toPay,
back: this.sf?.value.receiptPay,
total: this.data.totalFreight,
freightAmount: this.data.totalAmount,
}

View File

@ -35,10 +35,10 @@ export class PartnerAccountManagementWithdrawalsRecordComponent implements OnIni
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
},
refundStatus: this.refundStatus || null
});

View File

@ -178,7 +178,7 @@ export class ParterArticleManagementEditComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
// this.service.request('', { ...this.sf.value }).subscribe(res => {
// this.service.request('', { ...this.sf?.value }).subscribe(res => {
// if (res) {
// this.modalRef.destroy(true);
// } else {

View File

@ -208,7 +208,7 @@ export class ParterChannelSalesEditComponent implements OnInit {
if (!this.sf.valid) return;
let params: any= {
...this.sf.value,
...this.sf?.value,
}
delete params.telephone
this.service.request(this.service.$api_save, { ...params, employeeVO: this.currentOAItem }).subscribe(res => {

View File

@ -85,7 +85,7 @@ export class ParterClaimAuditListChannelApproveComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
// this.service.request('', { ...this.sf.value }).subscribe(res => {
// this.service.request('', { ...this.sf?.value }).subscribe(res => {
// if (res) {
// this.modalRef.destroy(true);
// } else {

View File

@ -85,7 +85,7 @@ export class ParterClaimAuditListChannelRejectComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
// this.service.request('', { ...this.sf.value }).subscribe(res => {
// this.service.request('', { ...this.sf?.value }).subscribe(res => {
// if (res) {
// this.modalRef.destroy(true);
// } else {

View File

@ -85,7 +85,7 @@ export class ParterClaimAuditListPartnerApproveComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
// this.service.request('', { ...this.sf.value }).subscribe(res => {
// this.service.request('', { ...this.sf?.value }).subscribe(res => {
// if (res) {
// this.modalRef.destroy(true);
// } else {

View File

@ -85,7 +85,7 @@ export class ParterClaimAuditListPartnerRejectComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
// this.service.request('', { ...this.sf.value }).subscribe(res => {
// this.service.request('', { ...this.sf?.value }).subscribe(res => {
// if (res) {
// this.modalRef.destroy(true);
// } else {

View File

@ -185,7 +185,7 @@ export class BannerComponentsAddComponent implements OnInit {
if (this.queryParams.id !== '0'){
params.advertisementId = this.queryParams.id;
}
if (this.sf.value.takeEffectType === 2){
if (this.sf?.value.takeEffectType === 2){
if (this.changeTimeFlag) {
params.takeEffectTime = format(this.detailData.takeEffectTime, 'yyyy-MM-dd HH:mm');
} else {
@ -207,7 +207,7 @@ export class BannerComponentsAddComponent implements OnInit {
if (this.queryParams.type === 'add') {
delete params.id;
}
if (this.sf.value.takeEffectType === 2){
if (this.sf?.value.takeEffectType === 2){
if (this.changeTimeFlag) {
params.takeEffectTime = format(this.detailData.takeEffectTime, 'yyyy-MM-dd HH:mm');
} else {

View File

@ -73,7 +73,7 @@ export class ParterLevelConfigEditComponent implements OnInit {
save() {
this.sf.validator({ emitError: true });
if(!this.sf.valid) return;
this.service.request(this.service.$api_save, { ...this.sf.value }).subscribe(res => {
this.service.request(this.service.$api_save, { ...this.sf?.value }).subscribe(res => {
if (res) {
this.service.msgSrv.success('保存成功!')
this.modalRef.destroy(true);

View File

@ -75,38 +75,38 @@ export class AddEtpPartnerComponent {
this.service.msgSrv.warning('请修改填写错误信息');
return;
}
if (this.sf.value.cityCodesList?.length > 3) {
if (this.sf?.value.cityCodesList?.length > 3) {
this.sf.validator({ emitError: true });
this.service.msgSrv.warning('所属城市不能超过3个');
return;
}
// 校验企业营业期限
const operatingStartTime = new Date(this.sf.value.operatingStartTime);
const operatingEndTime = new Date(this.sf.value.operatingEndTime);
const operatingStartTime = new Date(this.sf?.value.operatingStartTime);
const operatingEndTime = new Date(this.sf?.value.operatingEndTime);
if (operatingStartTime.getTime() > operatingEndTime.getTime()) {
this.service.msgSrv.warning('营业截止日期不能小于开始日期');
return;
}
// 校验法人证件有效期限
if (this.sf.value.legalPersonIdentity.validEndTime) {
const validStartTime = new Date(this.sf.value.legalPersonIdentity.validStartTime);
const validEndTime = new Date(this.sf.value.legalPersonIdentity.validEndTime);
if (this.sf?.value.legalPersonIdentity.validEndTime) {
const validStartTime = new Date(this.sf?.value.legalPersonIdentity.validStartTime);
const validEndTime = new Date(this.sf?.value.legalPersonIdentity.validEndTime);
if (validStartTime.getTime() > validEndTime.getTime()) {
this.service.msgSrv.warning('法人证件有效截止日期不能小于开始日期');
return;
}
}
// 校验管理员证件有效期限
if (this.sf.value.adminUserInfo.validEndTime) {
const validStartTime = new Date(this.sf.value.adminUserInfo.validStartTime);
const validEndTime = new Date(this.sf.value.adminUserInfo.validEndTime);
if (this.sf?.value.adminUserInfo.validEndTime) {
const validStartTime = new Date(this.sf?.value.adminUserInfo.validStartTime);
const validEndTime = new Date(this.sf?.value.adminUserInfo.validEndTime);
if (validStartTime.getTime() > validEndTime.getTime()) {
this.service.msgSrv.warning('管理员证件有效截止日期小于开始日期');
return;
}
}
const params = {};
Object.assign(params, { ...this.sf.value, source: 2 });
Object.assign(params, { ...this.sf?.value, source: 2 });
// console.log(params);
this.service.request(this.service.$api_save_entp_partner, params).subscribe(res => {

View File

@ -76,21 +76,21 @@ export class AddPersonalPartnerComponent {
this.service.msgSrv.warning('请修改填写错误信息');
return;
}
if (this.sf.value.cityCodesList?.length > 3) {
if (this.sf?.value.cityCodesList?.length > 3) {
this.sf.validator({ emitError: true });
this.service.msgSrv.warning('所属城市不能超过3个');
return;
}
if (this.sf.value.validEndTime) {
const validStartTime = new Date(this.sf.value.validStartTime);
const validEndTime = new Date(this.sf.value.validEndTime);
if (this.sf?.value.validEndTime) {
const validStartTime = new Date(this.sf?.value.validStartTime);
const validEndTime = new Date(this.sf?.value.validEndTime);
if (validStartTime.getTime() > validEndTime.getTime()) {
this.service.msgSrv.warning('身份证有效截止日期不能小于开始日期');
return;
}
}
const params = {};
Object.assign(params, { ...this.sf.value, source: 2 });
Object.assign(params, { ...this.sf?.value, source: 2 });
this.service.request(this.service.$api_save_personal_partner, params).subscribe(res => {
if (res) {

View File

@ -43,7 +43,7 @@ export class PartnerListComponent {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
let params = { ...this.sf.value };
let params = { ...this.sf?.value };
if (params.createTime) {
params.createTime = { start: this.sf?.value?.createTime?.[0], end: this.sf?.value?.createTime?.[1] };
}

View File

@ -93,7 +93,7 @@ export class PartnerAuditModalComponent implements OnInit {
}
sure() {
if (this.info.isPass || this.sf.value.status) {
if (this.info.isPass || this.sf?.value.status) {
this.nzModalService.confirm({
nzTitle: `确定以“${this.info.channelIdLabel}”的名义重新发起CRM《付款对象合同管理》吗`,
nzOnOk: () => {
@ -107,9 +107,9 @@ export class PartnerAuditModalComponent implements OnInit {
audit() {
const params: any = {
...this.sf.value,
...this.sf?.value,
id: this.info.id,
auditStatusEnum: this.info.isPass || this.sf.value.status ? '20' : '30'
auditStatusEnum: this.info.isPass || this.sf?.value.status ? '20' : '30'
};
this.service
.request(this.service.$api_audit_partner, {

View File

@ -178,7 +178,7 @@ export class ParterRebateManageMentAddComponent implements OnInit {
rebateConfigLineDTO: this.table.data,
priority: this.priority, // 优先级
partnerIds: this.partnerId,
ruleDescription: this.sf.value.ruleDescription,
ruleDescription: this.sf?.value.ruleDescription,
remark: this.remark,
partnerType: this.partnerType
};

View File

@ -55,10 +55,10 @@ export class PartnerRecordedRecordComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
},
refundStatus: this.refundStatus || null
});
@ -354,7 +354,7 @@ export class PartnerRecordedRecordComponent implements OnInit {
* 底部统计
*/
getSummary() {
this.service.request(this.service.$api_get_list_summary, { ...this.sf.value }).subscribe(res => {
this.service.request(this.service.$api_get_list_summary, { ...this.sf?.value }).subscribe(res => {
if (res) {
this.totalInfo = res;
}

View File

@ -183,7 +183,7 @@ export class ScrollimgComponentsAddComponent implements OnInit {
if (this.queryParams.id !== '0') {
params.advertisementId = this.queryParams.id;
}
if (this.sf.value.takeEffectType === 2) {
if (this.sf?.value.takeEffectType === 2) {
if (this.changeTimeFlag) {
params.takeEffectTime = format(this.detailData.takeEffectTime, 'yyyy-MM-dd HH:mm');
} else {
@ -205,7 +205,7 @@ export class ScrollimgComponentsAddComponent implements OnInit {
if (this.queryParams.type === 'add') {
delete params.id;
}
if (this.sf.value.takeEffectType === 2) {
if (this.sf?.value.takeEffectType === 2) {
if (this.changeTimeFlag) {
params.takeEffectTime = format(this.detailData.takeEffectTime, 'yyyy-MM-dd HH:mm');
} else {

View File

@ -599,9 +599,9 @@ export class CarAddDriverComponent implements OnInit {
submitForm(){
const params:any = {
source: 1,
mobile: this.sf.value.mobile,
mobile: this.sf?.value.mobile,
identityInfoDTO:{
...this.sf.value,
...this.sf?.value,
certificatePhotoFront: this.detailData.certificatePhotoFront,
certificatePhotoBack: this.detailData.certificatePhotoBack,
},

View File

@ -49,5 +49,5 @@ export class PublishchooseFamifiarSetCaptainComponent implements OnInit {
}
close() {this.modal.close()}
save() {this.modal.close(this.sf.value.captainPhone)}
save() {this.modal.close(this.sf?.value.captainPhone)}
}

View File

@ -427,7 +427,7 @@ export class SupplyManagementVehicleComponent extends BasicTableComponent implem
// },
// allowClear: true,
// containsAllLabel: true,
// asyncData: () => this.shipperSrv.getEnterpriseProject(this.sf.value?.shipperAppUserId)
// asyncData: () => this.shipperSrv.getEnterpriseProject(this.sf?.value?.shipperAppUserId)
// } as SFSelectWidgetSchema
// },
enterpriseProjectId: {

View File

@ -155,7 +155,7 @@ export class SupplyManagementImportSupplyComponent implements OnInit {
});
}
save(): void {
if(!this.sf.value?.shipperAppUserId || !this?.networkTransporter || !this.sf.value?.enterpriseProjectId || !this.sf.value?.fileName) {
if(!this.sf?.value?.shipperAppUserId || !this?.networkTransporter || !this.sf?.value?.enterpriseProjectId || !this.sf?.value?.fileName) {
this.service.msgSrv.error('请填写必填项并上传文件!')
return
}
@ -163,9 +163,9 @@ export class SupplyManagementImportSupplyComponent implements OnInit {
const formData : any= new FormData();
this.files?.forEach((file: any) => {
formData.append('file', file);
formData.append('shipperAppUserId', this.sf.value?.shipperAppUserId);
formData.append('shipperAppUserId', this.sf?.value?.shipperAppUserId);
formData.append('enterpriseInfoId', this?.networkTransporter);
formData.append('enterpriseProjectId', this.sf.value?.enterpriseProjectId);
formData.append('enterpriseProjectId', this.sf?.value?.enterpriseProjectId);
});
console.log(formData)

View File

@ -93,9 +93,9 @@ export class CartConfigActionModalComponent implements OnInit {
sure() {
if (this.i.id === 0) {
const params: any = {
...this.sf.value,
...this.sf?.value,
dictKey: this.dictKey,
itemData: this.sf.value.itemValue
itemData: this.sf?.value.itemValue
};
this.service.request(this.service.$api_add_dict, params).subscribe(res => {
if (res) {
@ -106,7 +106,7 @@ export class CartConfigActionModalComponent implements OnInit {
} else {
const params: any = {
...this.i,
...this.sf.value
...this.sf?.value
};
this.service.request(this.service.$api_update_dict, params).subscribe(res => {
if (res) {
@ -121,7 +121,7 @@ export class CartConfigActionModalComponent implements OnInit {
if (this.i.id === 0) {
const params: any = {
configFullKey: 'ban.goods.name',
name: this.sf.value.itemValue
name: this.sf?.value.itemValue
};
this.service.request(this.service.$api_add_config_item, params).subscribe(res => {
if (res) {
@ -130,7 +130,7 @@ export class CartConfigActionModalComponent implements OnInit {
}
});
} else {
const params: any = { ...this.sf.value, ...this.i, configFullKey: 'ban.goods.name', name: this.sf.value.itemValue };
const params: any = { ...this.sf?.value, ...this.i, configFullKey: 'ban.goods.name', name: this.sf?.value.itemValue };
this.service.request(this.service.$api_update_config_item, params).subscribe(res => {
if (res) {
this.service.msgSrv.success('保存成功!');

View File

@ -182,14 +182,14 @@ export class NetworkFreightNewComponent implements OnInit {
}
console.log(this.sf1.value);
console.log(this.sf1.valid);
console.log(this.sf.value);
console.log(this.sf?.value);
console.log(this.sf.valid);
const sfVlaue = this.sf1.value;
const params: any = {};
console.log(this.sf1.value);
Object.assign(params, {
...this.sf.value,
...this.sf?.value,
enterpriseInfoDTO: {
...this.sf1.value,
legalPersonIdentityDTO: this.sf1.value.legalPersonIdentityVO,

View File

@ -59,7 +59,7 @@ export class NoTeManagementComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
return requestOptions;
};

View File

@ -72,7 +72,7 @@ export class OrganizationModalComponent implements OnInit {
const params: any = {
id: this.params.id,
...this.sf.value,
...this.sf?.value,
authority: this.roleInfoData.authority,
authorityAssistId: this.roleInfoData.authorityAssistId,
parentId: this.parentId

View File

@ -102,7 +102,7 @@ console.log(this.params.infoUrl)
}
const params: any = {
id: this.params.id,
...this.sf.value,
...this.sf?.value,
authority: auths.authority,
authorityAssistId: auths.authorityAssistId
};

View File

@ -94,7 +94,7 @@ export class RoleManagementComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
if (requestOptions.body?.createTime) {
Object.assign(requestOptions.body, { sort: 'createTime.' + requestOptions.body.createTime });

View File

@ -103,7 +103,7 @@ export class SmsTemplateComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
return requestOptions;
};

View File

@ -35,6 +35,6 @@
</div>
<st #st [data]="service.$api_get_enterprise_staff_page" [columns]="columns" [page]="{}"
[req]="{ params: {nameOrPhone: this.sf.value?.nameOrPhone} }" [loading]="false" [scroll]="{ y: '370px' }"
[req]="{ params: {nameOrPhone: this.sf?.value?.nameOrPhone} }" [loading]="false" [scroll]="{ y: '370px' }"
(change)="stChange($event)"></st>
</nz-card>

View File

@ -170,7 +170,7 @@ export class StaffManagementComponent implements OnInit {
}
exportList() {
const params = { nameOrPhone: this.sf.value?.nameOrPhone };
const params = { nameOrPhone: this.sf?.value?.nameOrPhone };
this.service.downloadFile(this.service.$api_export_staff, { ...params, pageSize: -1 });
}

View File

@ -72,13 +72,13 @@ export class SystemStaffStaffModalComponent implements OnInit {
}
sure() {
if (!this.sf.value.roleId || this.sf.value.roleId.length === 0) {
if (!this.sf?.value.roleId || this.sf?.value.roleId.length === 0) {
this.service.msgSrv.error('员工角色不能为空!');
return;
}
if (this.i.userId === 0) {
const params: any = {
...this.sf.value
...this.sf?.value
};
this.service.request(this.service.$api_add_staff, params).subscribe(res => {
if (res) {
@ -89,7 +89,7 @@ export class SystemStaffStaffModalComponent implements OnInit {
} else {
const params: any = {
appUserId: this.i.appUserId,
...this.sf.value
...this.sf?.value
};
this.service.request(this.service.$api_edit_staff, params).subscribe(res => {
if (res) {

View File

@ -35,7 +35,7 @@ export class TaxManagementIndividualIncomeComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
Object.assign(requestOptions.body, { declareStatus: this.selectedIndex });
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
delete requestOptions.body._$expand;
}
this.selectedRows = [];

View File

@ -27,7 +27,7 @@ export class BillingOrderComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
});
}
return requestOptions;

View File

@ -39,13 +39,13 @@ export class CancellationInvoiceComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
if (this.sf.value.createTime) {
if (this.sf?.value.createTime) {
Object.assign(requestOptions.body, {
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -47,7 +47,7 @@ export class AddCartComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
return requestOptions;

View File

@ -63,7 +63,7 @@ export class AddOwnerComponent implements OnInit {
});
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
return requestOptions;

View File

@ -45,7 +45,7 @@ export class ETCBlacklistComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
this.selectedRows = [];

View File

@ -27,7 +27,7 @@ export class ETCInvoicedListComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
return requestOptions;

View File

@ -27,14 +27,14 @@ export class ETCInvoicedLogsComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
exTime: {
start: this.sf.value.exTime?.[0] || '',
end: this.sf.value.exTime?.[1] || ''
start: this.sf?.value.exTime?.[0] || '',
end: this.sf?.value.exTime?.[1] || ''
},
invoiceMakeTime: {
start: this.sf.value.invoiceMakeTime?.[0] || '',
end: this.sf.value.invoiceMakeTime?.[1] || ''
start: this.sf?.value.invoiceMakeTime?.[0] || '',
end: this.sf?.value.invoiceMakeTime?.[1] || ''
}
});
}
@ -66,7 +66,7 @@ export class ETCInvoicedLogsComponent implements OnInit {
const params = { listSource: 1, pageSize: -1 };
if (this.sf) {
Object.assign(params, {
...this.sf.value
...this.sf?.value
});
}
this.service.downloadFile(this.service.$api_export_invoice_logs_page, params);

View File

@ -30,7 +30,7 @@ export class ETCInvoicedRequestedComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
this.selectedRows = [];

View File

@ -94,10 +94,10 @@ export class ExpressDetailModalComponent implements OnInit {
Object.assign(requestOptions.body, { expressno: this.expressCode });
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || null,
end: this.sf.value.createTime?.[1] || null
start: this.sf?.value.createTime?.[0] || null,
end: this.sf?.value.createTime?.[1] || null
}
});
}

View File

@ -86,10 +86,10 @@ export class ExpressInfoComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf.value.createTime?.[0] || '',
end: this.sf.value.createTime?.[1] || ''
start: this.sf?.value.createTime?.[0] || '',
end: this.sf?.value.createTime?.[1] || ''
}
});
}

View File

@ -86,7 +86,7 @@ export class AddCollectionInvoiceModalComponent implements OnInit {
sure() {
const params: any = {
...this.sf.value
...this.sf?.value
};
// this.service.request(this.service.$api_add_staff, params).subscribe(res => {
// if (res) {

View File

@ -24,7 +24,7 @@ export class AddCostDetailComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value
...this.sf?.value
});
}
return requestOptions;

View File

@ -42,14 +42,14 @@ export class InputInvoiceDetailComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
billTime: {
start: this.sf.value.billTime?.[0] || null,
end: this.sf.value.billTime?.[1] || null
start: this.sf?.value.billTime?.[0] || null,
end: this.sf?.value.billTime?.[1] || null
},
feedate: {
start: this.sf.value.feedate?.[0] || null,
end: this.sf.value.feedate?.[1] || null
start: this.sf?.value.feedate?.[0] || null,
end: this.sf?.value.feedate?.[1] || null
}
});
}

View File

@ -31,14 +31,14 @@ export class InputInvoiceComponent implements OnInit {
beforeReq = (requestOptions: STRequestOptions) => {
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createtime: {
start: this.sf.value.createtime?.[0] || '',
end: this.sf.value.createtime?.[1] || ''
start: this.sf?.value.createtime?.[0] || '',
end: this.sf?.value.createtime?.[1] || ''
},
invdate: {
start: this.sf.value.invdate?.[0] || '',
end: this.sf.value.invdate?.[1] || ''
start: this.sf?.value.invdate?.[0] || '',
end: this.sf?.value.invdate?.[1] || ''
}
});
}

View File

@ -54,7 +54,7 @@ export class InvoiceRequestedDetailComponent implements OnInit {
this.selectedRows = [];
Object.assign(requestOptions.body, { vatappHId: this.id });
if (this.sf) {
Object.assign(requestOptions.body, { ...this.sf.value });
Object.assign(requestOptions.body, { ...this.sf?.value });
}
return requestOptions;
};

View File

@ -42,7 +42,7 @@ export class InvoiceRequestedComponent {
}
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
createTime: {
start: this.sf?.value?.createTime?.[0] || '',
end: this.sf?.value?.createTime?.[1] || ''

View File

@ -42,10 +42,10 @@ export class InvoicedListComponent implements OnInit {
Object.assign(requestOptions.body,{sts: '3'})
if (this.sf) {
Object.assign(requestOptions.body, {
...this.sf.value,
...this.sf?.value,
invoicedate: {
start: this.sf.value.invoicedate?.[0] || '',
end: this.sf.value.invoicedate?.[1] || ''
start: this.sf?.value.invoicedate?.[0] || '',
end: this.sf?.value.invoicedate?.[1] || ''
}
});
}

View File

@ -665,18 +665,18 @@ export class CarSettleAddDriverComponent implements OnInit {
this.showJopFlag = !this.showJopFlag;
}
submitForm() {
const items: any = this.sf.value;
items.certificatePhotoFrontWatermark = this.sf.value?.certificatePhotoFrontWatermark?.data?.fullFilePath || this.sf.value?.certificatePhotoFrontWatermark;
items.certificatePhotoBackWatermark = this.sf.value?.certificatePhotoBackWatermark?.data?.fullFilePath || this.sf.value?.certificatePhotoBackWatermark;
const items: any = this.sf?.value;
items.certificatePhotoFrontWatermark = this.sf?.value?.certificatePhotoFrontWatermark?.data?.fullFilePath || this.sf?.value?.certificatePhotoFrontWatermark;
items.certificatePhotoBackWatermark = this.sf?.value?.certificatePhotoBackWatermark?.data?.fullFilePath || this.sf?.value?.certificatePhotoBackWatermark;
const items2: any = this.sf1.value;
items2.certificatePhotoWatermark = this.sf1.value?.certificatePhotoWatermark?.data?.fullFilePath || this.sf1.value?.certificatePhotoWatermark;
const items3: any = this.sf2.value;
items3.certificatePhotoWatermark = this.sf2.value?.certificatePhotoWatermark?.data?.fullFilePath || this.sf2.value?.certificatePhotoWatermark;
const params: any = {
source: 2,
mobile: this.sf.value.mobile,
bankCardNo: this.sf.value.bankCardNo,
bankName: this.sf.value.bankName,
mobile: this.sf?.value.mobile,
bankCardNo: this.sf?.value.bankCardNo,
bankName: this.sf?.value.bankName,
identityInfoDTO: {
...items,
certificatePhotoFront: this.detailData.certificatePhotoFront,

View File

@ -90,17 +90,17 @@ export class CtcCaptatinAddComponent implements OnInit {
widget: this.i.id ? 'text' : '',
placeholder: '请输入手机号',
blur: () => {
if(!this.sf.value.mobile) {
if(!this.sf?.value.mobile) {
return
}
this.service.request(this.service.$api_getByMobile, { mobile: this.sf.value.mobile }).subscribe(res => {
this.service.request(this.service.$api_getByMobile, { mobile: this.sf?.value.mobile }).subscribe(res => {
if (res.certificateNumber) {
this.readFlag = true
this.detailData = {
mobile: this.sf.value.mobile,
bankName: this.sf.value.bankName,
bankCardNo: this.sf.value.bankCardNo,
remark: this.sf.value.remark,
mobile: this.sf?.value.mobile,
bankName: this.sf?.value.bankName,
bankCardNo: this.sf?.value.bankCardNo,
remark: this.sf?.value.remark,
identityInfoDTO: {
certificatePhotoFrontWatermark: [
{
@ -128,10 +128,10 @@ export class CtcCaptatinAddComponent implements OnInit {
} else {
this.readFlag = false
this.detailData = {
mobile: this.sf.value.mobile,
bankName: this.sf.value.bankName,
bankCardNo: this.sf.value.bankCardNo,
remark: this.sf.value.remark,
mobile: this.sf?.value.mobile,
bankName: this.sf?.value.bankName,
bankCardNo: this.sf?.value.bankCardNo,
remark: this.sf?.value.remark,
identityInfoDTO: {
certificatePhotoFrontWatermark: '',
certificatePhotoBackWatermark: '',
@ -377,17 +377,17 @@ export class CtcCaptatinAddComponent implements OnInit {
this.changeSub.pipe(debounceTime(500)).subscribe((res: string) => {
if (res) {
const params: any = {
bankCardNo: this.sf.value.bankCardNo,
bankName: this.sf.value.bankName,
mobile: this.sf.value.mobile,
remark: this.sf.value.remark,
bankCardNo: this.sf?.value.bankCardNo,
bankName: this.sf?.value.bankName,
mobile: this.sf?.value.mobile,
remark: this.sf?.value.remark,
identityInfoDTO: {
certificatePhotoBackWatermark: this.sf.value?.certificatePhotoBackWatermark?.data?.fullFilePath || this.sf.value?.certificatePhotoBackWatermark,
certificatePhotoFrontWatermark: this.sf.value?.certificatePhotoFrontWatermark?.data?.fullFilePath ||this.sf.value?.certificatePhotoFrontWatermark,
certificatePhotoBackWatermark: this.sf?.value?.certificatePhotoBackWatermark?.data?.fullFilePath || this.sf?.value?.certificatePhotoBackWatermark,
certificatePhotoFrontWatermark: this.sf?.value?.certificatePhotoFrontWatermark?.data?.fullFilePath ||this.sf?.value?.certificatePhotoFrontWatermark,
certificatePhotoFront: this.detailData.certificatePhotoFront,
certificatePhotoBack: this.detailData.certificatePhotoBack,
certificateNumber: this.sf.value.certificateNumber,
name: this.sf.value.name,
certificateNumber: this.sf?.value.certificateNumber,
name: this.sf?.value.name,
}
}
if (this.i.id) {

View File

@ -32,7 +32,7 @@ export class UserCenterComponentsDriverCaptainComponent implements OnInit {
*/
get reqParams() {
const params: any = {
...(this.sf && this.sf.value)
...(this.sf && this.sf?.value)
};
if (this.sf?.value.effectiveDate) {
params.effectiveDateStart = this.sf?.value.effectiveDate[0];

View File

@ -24,7 +24,7 @@ export class UserCenterComponentsDriverConfigComponent implements OnInit {
get reqParams() {
const params: any = {
auditStatus: 20,
...(this.sf && this.sf.value)
...(this.sf && this.sf?.value)
};
delete params.effectiveDate;
delete params.expand;

View File

@ -39,7 +39,7 @@ export class UserCenterComponentsDriverComponent implements OnInit {
*/
get reqParams() {
const params: any = {
...(this.sf && this.sf.value),
...(this.sf && this.sf?.value),
auditStatus: this.resourceStatus
};
if (this.sf?.value.effectiveDate) {

Some files were not shown because too many files have changed in this diff Show More