fix bug
This commit is contained in:
		| @ -72,8 +72,8 @@ export class EditPartnerComponentsAddComponent implements OnInit { | ||||
|         //     { label: '合伙人可见', value: 2 }, | ||||
|         //     { label: '销售渠道可见', value: 3 }, | ||||
|         //   ], | ||||
|         // }, | ||||
|         enterpriceIds: { | ||||
|         // },channelId | ||||
|         channelId: { | ||||
|           type: 'string', | ||||
|           title: '合伙人修改为', | ||||
|           ui: { | ||||
| @ -86,14 +86,19 @@ export class EditPartnerComponentsAddComponent implements OnInit { | ||||
|             asyncData: () => this.shipperservice.getNetworkenterpriceIds() | ||||
|           } | ||||
|         }, | ||||
|         // settStartTime: { | ||||
|         //   title: '结算起算日期', | ||||
|         //   type: 'string', | ||||
|         //   ui: { | ||||
|         //     widget: 'sl-from-to', type: 'date', format: 'yyyy-MM-dd', visibleIf: { | ||||
|         //       _$expand: (value: boolean) => value, | ||||
|         //     }, | ||||
|         //   } as SFDateWidgetSchema, | ||||
|         // }, | ||||
|         settStartTime: { | ||||
|           title: '结算起算日期', | ||||
|           type: 'string', | ||||
|           ui: { | ||||
|             widget: 'sl-from-to', type: 'date', format: 'yyyy-MM-dd', visibleIf: { | ||||
|               _$expand: (value: boolean) => value, | ||||
|             }, | ||||
|           } as SFDateWidgetSchema, | ||||
|           format: 'date', | ||||
|         }, | ||||
|         remark: { | ||||
|           type: 'string', | ||||
| @ -136,9 +141,18 @@ export class EditPartnerComponentsAddComponent implements OnInit { | ||||
|     this.modal.close(true) | ||||
|   } | ||||
|   save() { | ||||
|     const params = { | ||||
|       ...this.sf.value | ||||
|     console.log(this?.rows); | ||||
|     let enterId : any; | ||||
|     if(this.sts == '1') { | ||||
|       enterId = this.rows  | ||||
|     } else { | ||||
|       enterId = [this.i.id] | ||||
|     } | ||||
|     const params = { | ||||
|       ...this.sf.value, | ||||
|       enterpriceIds: enterId, | ||||
|     } | ||||
|  | ||||
|     this.service.request(this.service.$api_batchUpdateEnterpricePartner, params).subscribe(res => { | ||||
|       if(res) { | ||||
|         this.service.msgSrv.success('修改成功') | ||||
|  | ||||
| @ -141,6 +141,8 @@ export class FreightComponentsListComponent implements OnInit { | ||||
|     this.selectedRows.forEach(item => { | ||||
|       params.push(item.id); | ||||
|     }); | ||||
|     console.log(params); | ||||
|      | ||||
|     const modalRef = this.modal.create({ | ||||
|       nzTitle: '修改合伙人', | ||||
|       nzContent: EditPartnerComponentsAddComponent, | ||||
|  | ||||
		Reference in New Issue
	
	Block a user