diff --git a/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.html b/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.html
index bc8e7369..feb71a74 100644
--- a/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.html
+++ b/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.html
@@ -58,9 +58,9 @@
{{info?.id}}
-
+
\ No newline at end of file
diff --git a/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.ts b/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.ts
index ebf64601..1c4f072c 100644
--- a/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.ts
+++ b/src/app/routes/financial-management/components/voucher-management/voucher-detail/voucher-detail.component.ts
@@ -11,7 +11,7 @@ import { FreightAccountService } from '../../../services/freight-account.service
export class VoucherDetailComponent implements OnInit {
columns: STColumn[] = [
{ title: '摘要', index: 'remarks' },
- { title: '会计科目', index: 'subcode' },
+ { title: '会计科目', index: 'subname' },
{ title: '辅助核算', render: 'auxVOList' },
{ title: '币种', index: 'currency', className: 'text-center' },
{
diff --git a/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts b/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts
index 823fe820..8f0ff5b8 100644
--- a/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts
+++ b/src/app/routes/sys-setting/components/agreement-config/agreement-config.component.ts
@@ -46,7 +46,7 @@ export class AgreementConfigComponentsBaseComponent implements OnInit {
}
loadAgreement(type?: number) {
- this.service.request(`${this.service.$api_get_agreement_page}`).subscribe(res => {
+ this.service.request(`${this.service.$api_get_agreement_page}`, { pageIndex: 1, pageSize: 99 }).subscribe(res => {
if (res) {
res.records = res.records.map((item: any) => ({ ...item, agreementContent: decodeURIComponent(item.agreementContent) }));
this.tabs = res.records;
diff --git a/src/app/routes/usercenter/components/freight/freight-config/freight-config.component.ts b/src/app/routes/usercenter/components/freight/freight-config/freight-config.component.ts
index 30185701..b4e9bbe4 100644
--- a/src/app/routes/usercenter/components/freight/freight-config/freight-config.component.ts
+++ b/src/app/routes/usercenter/components/freight/freight-config/freight-config.component.ts
@@ -92,7 +92,6 @@ export class FreightConfigComponent implements OnInit {
initST(): STColumn[] {
return [
- // { title: '', type: 'checkbox', className: 'text-center' },
{ title: '企业名称', className: 'text-center', index: 'enterpriseName', width: 160 },
{ title: '网络货运人', className: 'text-center', index: 'netTranName', width: 160 },
{