fix bug
This commit is contained in:
		@ -4,13 +4,14 @@
 | 
				
			|||||||
 * @Author       : Shiming
 | 
					 * @Author       : Shiming
 | 
				
			||||||
 * @Date         : 2022-03-30 13:55:41
 | 
					 * @Date         : 2022-03-30 13:55:41
 | 
				
			||||||
 * @LastEditors  : Shiming
 | 
					 * @LastEditors  : Shiming
 | 
				
			||||||
 * @LastEditTime : 2022-04-15 17:13:53
 | 
					 * @LastEditTime : 2022-04-15 17:28:46
 | 
				
			||||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\compliance\\customer\\customer.component.html
 | 
					 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\compliance\\customer\\customer.component.html
 | 
				
			||||||
 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
					 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
				
			||||||
-->
 | 
					-->
 | 
				
			||||||
<!-- 页头 -->
 | 
					<!-- 页头 -->
 | 
				
			||||||
<page-header-wrapper [title]="'数据报表'"></page-header-wrapper>
 | 
					<page-header-wrapper [title]="'数据报表'"></page-header-wrapper>
 | 
				
			||||||
<nz-card>
 | 
					<nz-card>
 | 
				
			||||||
 | 
					  <div style="display: flex;">
 | 
				
			||||||
    <sf   #sf mode="search" [schema]="searchSchema" button="none"></sf>
 | 
					    <sf   #sf mode="search" [schema]="searchSchema" button="none"></sf>
 | 
				
			||||||
  <div class="chooseBox">
 | 
					  <div class="chooseBox">
 | 
				
			||||||
    <div class="timeBox">
 | 
					    <div class="timeBox">
 | 
				
			||||||
@ -27,9 +28,10 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
  <st
 | 
					  <st
 | 
				
			||||||
  #st
 | 
					  #st
 | 
				
			||||||
  [bordered]="true"
 | 
					  multiSort
 | 
				
			||||||
  [scroll]="{ x: '2000px' }"
 | 
					  [scroll]="{ x: '2000px' }"
 | 
				
			||||||
  [data]="service.$api_listCusComplianceReportPage"
 | 
					  [data]="service.$api_listCusComplianceReportPage"
 | 
				
			||||||
  [columns]="columns"
 | 
					  [columns]="columns"
 | 
				
			||||||
 | 
				
			|||||||
@ -5,7 +5,7 @@ import { SFComponent } from '@delon/form';
 | 
				
			|||||||
 * @Author       : Shiming
 | 
					 * @Author       : Shiming
 | 
				
			||||||
 * @Date         : 2022-03-30 13:55:41
 | 
					 * @Date         : 2022-03-30 13:55:41
 | 
				
			||||||
 * @LastEditors  : Shiming
 | 
					 * @LastEditors  : Shiming
 | 
				
			||||||
 * @LastEditTime : 2022-04-15 17:13:03
 | 
					 * @LastEditTime : 2022-04-15 17:40:53
 | 
				
			||||||
 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\compliance\\customer\\customer.component.ts
 | 
					 * @FilePath     : \\tms-obc-web\\src\\app\\routes\\datatable\\components\\compliance\\customer\\customer.component.ts
 | 
				
			||||||
 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
					 * Copyright (C) 2022 huzhenhong. All rights reserved.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
@ -15,6 +15,7 @@ import { SFSchema } from '@delon/form';
 | 
				
			|||||||
import { ModalHelper, _HttpClient ,DatePipe} from '@delon/theme';
 | 
					import { ModalHelper, _HttpClient ,DatePipe} from '@delon/theme';
 | 
				
			||||||
import { DataService } from '../../../services/data.service';
 | 
					import { DataService } from '../../../services/data.service';
 | 
				
			||||||
import { differenceInCalendarDays } from 'date-fns';
 | 
					import { differenceInCalendarDays } from 'date-fns';
 | 
				
			||||||
 | 
					import { Placeholder } from '@angular/compiler/src/i18n/i18n_ast';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@Component({
 | 
					@Component({
 | 
				
			||||||
  selector: 'app-datatable-compliance-customer',
 | 
					  selector: 'app-datatable-compliance-customer',
 | 
				
			||||||
@ -37,38 +38,59 @@ export class DatatableComplianceCustomerComponent implements OnInit {
 | 
				
			|||||||
  today = new Date();
 | 
					  today = new Date();
 | 
				
			||||||
  searchSchema: SFSchema = {
 | 
					  searchSchema: SFSchema = {
 | 
				
			||||||
    properties: {
 | 
					    properties: {
 | 
				
			||||||
      no: {
 | 
					      customerName: {
 | 
				
			||||||
        type: 'string',
 | 
					        type: 'string',
 | 
				
			||||||
        title: '客户名称'
 | 
					        title: '',
 | 
				
			||||||
 | 
					        ui: {
 | 
				
			||||||
 | 
					          placeholder: '请输入客户名称',
 | 
				
			||||||
 | 
					          change: (value: any) => {
 | 
				
			||||||
 | 
					            console.log(value);
 | 
				
			||||||
 | 
					            this.st.reload({ ...this.reqParams });
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
      no2: {
 | 
					     
 | 
				
			||||||
        type: 'string',
 | 
					 | 
				
			||||||
        title: '业务员'
 | 
					 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      no3: {
 | 
					      salesmanName: {
 | 
				
			||||||
        type: 'string',
 | 
					        type: 'string',
 | 
				
			||||||
        title: '合伙人名称'
 | 
					        title: '',
 | 
				
			||||||
 | 
					        ui: {
 | 
				
			||||||
 | 
					          placeholder: '请输入业务员',
 | 
				
			||||||
 | 
					          change: (value: any) => {
 | 
				
			||||||
 | 
					            this.st.reload({ ...this.reqParams });
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      partnerName: {
 | 
				
			||||||
 | 
					        type: 'string',
 | 
				
			||||||
 | 
					        title: '',
 | 
				
			||||||
 | 
					        ui: {
 | 
				
			||||||
 | 
					          placeholder: '请输入客户名称',
 | 
				
			||||||
 | 
					          change: (value: any) => {
 | 
				
			||||||
 | 
					            console.log(value);
 | 
				
			||||||
 | 
					            this.st.reload({ ...this.reqParams });
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
  @ViewChild('st') private readonly st!: STComponent;
 | 
					  @ViewChild('st') private readonly st!: STComponent;
 | 
				
			||||||
  columns: STColumn[] = [
 | 
					  columns: STColumn[] = [
 | 
				
			||||||
    { title: '公司名称', index: 'enterpriseName' ,},
 | 
					    { title: '公司名称',width: '200px', index: 'enterpriseName' ,},
 | 
				
			||||||
    { title: '注册时间',  index: 'registerTime' },
 | 
					    { title: '注册时间', width: '200px', index: 'registerTime',},
 | 
				
			||||||
    { title: '客户类型',  width: '100px', index: 'customerType' },
 | 
					    { title: '客户类型',  width: '200px', index: 'customerType' },
 | 
				
			||||||
    { title: '业务员', index: 'salesmanName' },
 | 
					    { title: '业务员',width: '200px', index: 'salesmanName' },
 | 
				
			||||||
    { title: '合伙人', index: 'partnerName' },
 | 
					    { title: '合伙人',width: '200px', index: 'partnerName' },
 | 
				
			||||||
    { title: '订单数', index: 'billCounts' },
 | 
					    { title: '订单数',width: '200px', index: 'billCounts' },
 | 
				
			||||||
    { title: '订单不合格数', index: 'billQuaCounts' },
 | 
					    { title: '订单不合格数',width: '200px', index: 'billQuaCounts' },
 | 
				
			||||||
    { title: '订单不合格率', index: 'billQuaCountsPer' },
 | 
					    { title: '订单不合格率',width: '200px', index: 'billQuaCountsPer' },
 | 
				
			||||||
    { title: '货源单订单数', index: 'gsourceCounts' },
 | 
					    { title: '货源单订单数',width: '200px', index: 'gsourceCounts' },
 | 
				
			||||||
    { title: '合同单数', index: 'billConCounts' },
 | 
					    { title: '合同单数', width: '200px',index: 'billConCounts' },
 | 
				
			||||||
    { title: '货源单个', index: 'gsourceCounts' },
 | 
					    { title: '货源单个',width: '200px', index: 'gsourceCounts' },
 | 
				
			||||||
    { title: '运费直付单数', index: 'freightDirPayCounts' },
 | 
					    { title: '运费直付单数',width: '200px', index: 'freightDirPayCounts' },
 | 
				
			||||||
    { title: '运费代收单数', index: 'freightRepPayCounts' },
 | 
					    { title: '运费代收单数',width: '200px', index: 'freightRepPayCounts' },
 | 
				
			||||||
    { title: '手机直付', index: 'updatedAt' },
 | 
					    { title: '手机直付', width: '200px',index: 'updatedAt' },
 | 
				
			||||||
    { title: '汇款单数', index: 'updatedAt' },
 | 
					    { title: '汇款单数',width: '200px', index: 'updatedAt' },
 | 
				
			||||||
    { title: '及时付款', index: 'timelyPayPer' },
 | 
					    { title: '及时付款',width: '200px', index: 'timelyPayPer' },
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  ];
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user