parsec-libs 0.0.221-ertong → 0.0.223-ertong

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -578,18 +578,21 @@ declare const _default: {
578
578
  data: {
579
579
  doctorId: string;
580
580
  name: string;
581
+ id: number;
581
582
  }[];
582
583
  }>) => {
583
584
  request: (p?: number) => Promise<{
584
585
  data: {
585
586
  doctorId: string;
586
587
  name: string;
588
+ id: number;
587
589
  }[];
588
590
  }>;
589
591
  data: {
590
592
  data: {
591
593
  doctorId: string;
592
594
  name: string;
595
+ id: number;
593
596
  }[];
594
597
  };
595
598
  loading: boolean;
@@ -598,6 +601,7 @@ declare const _default: {
598
601
  data: {
599
602
  doctorId: string;
600
603
  name: string;
604
+ id: number;
601
605
  }[];
602
606
  }>;
603
607
  }) & {
@@ -605,12 +609,14 @@ declare const _default: {
605
609
  data: {
606
610
  doctorId: string;
607
611
  name: string;
612
+ id: number;
608
613
  }[];
609
614
  }>;
610
615
  DataType: {
611
616
  data: {
612
617
  doctorId: string;
613
618
  name: string;
619
+ id: number;
614
620
  }[];
615
621
  };
616
622
  ParamsType: number;
@@ -167,7 +167,7 @@ var HospitalModal = function HospitalModal(_ref) {
167
167
  setDoctorList(data.data.map(function (item) {
168
168
  return {
169
169
  label: item.name,
170
- value: item.doctorId
170
+ value: item.id + ''
171
171
  };
172
172
  }));
173
173
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "parsec-libs",
3
- "version": "0.0.221-ertong",
3
+ "version": "0.0.223-ertong",
4
4
  "scripts": {
5
5
  "start": "dumi dev",
6
6
  "docs:build": "dumi build",