@xfe-repo/web-components 1.8.2 → 1.8.3

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.
package/dist/index.d.mts CHANGED
@@ -407,6 +407,7 @@ declare class MerchantListBus {
407
407
  legalPersonCardFrontImage: string;
408
408
  legalPersonCardBackImage: string;
409
409
  contactName: string;
410
+ phone: string;
410
411
  contactPhone: string;
411
412
  contactPosition: string;
412
413
  serviceBuy: number;
package/dist/index.d.ts CHANGED
@@ -407,6 +407,7 @@ declare class MerchantListBus {
407
407
  legalPersonCardFrontImage: string;
408
408
  legalPersonCardBackImage: string;
409
409
  contactName: string;
410
+ phone: string;
410
411
  contactPhone: string;
411
412
  contactPosition: string;
412
413
  serviceBuy: number;
package/dist/index.js CHANGED
@@ -6431,8 +6431,7 @@ var getMerchantSourceLabel = function getMerchantSourceLabel(item, sourceValue)
6431
6431
  enterpriseNo: item.enterpriseNo,
6432
6432
  platformName: item.platformName,
6433
6433
  name: item.name,
6434
- // 目前接口没有手机号,先放空字符串,后续如果接口增加了手机号字段再修改这里
6435
- phone: ""
6434
+ phone: item.phone
6436
6435
  };
6437
6436
  return sourceLabelMap[sourceValue] || [
6438
6437
  item.enterpriseNo,
@@ -6624,8 +6623,7 @@ var getMerchantSourceLabel2 = function getMerchantSourceLabel2(item, sourceValue
6624
6623
  enterpriseNo: item.enterpriseNo,
6625
6624
  platformName: item.platformName,
6626
6625
  name: item.name,
6627
- // 目前接口没有手机号,先放空字符串,后续如果接口增加了手机号字段再修改这里
6628
- phone: ""
6626
+ phone: item.phone
6629
6627
  };
6630
6628
  return sourceLabelMap[sourceValue] || [
6631
6629
  item.enterpriseNo,
package/dist/index.mjs CHANGED
@@ -6149,8 +6149,7 @@ var getMerchantSourceLabel = function getMerchantSourceLabel(item, sourceValue)
6149
6149
  enterpriseNo: item.enterpriseNo,
6150
6150
  platformName: item.platformName,
6151
6151
  name: item.name,
6152
- // 目前接口没有手机号,先放空字符串,后续如果接口增加了手机号字段再修改这里
6153
- phone: ""
6152
+ phone: item.phone
6154
6153
  };
6155
6154
  return sourceLabelMap[sourceValue] || [
6156
6155
  item.enterpriseNo,
@@ -6342,8 +6341,7 @@ var getMerchantSourceLabel2 = function getMerchantSourceLabel2(item, sourceValue
6342
6341
  enterpriseNo: item.enterpriseNo,
6343
6342
  platformName: item.platformName,
6344
6343
  name: item.name,
6345
- // 目前接口没有手机号,先放空字符串,后续如果接口增加了手机号字段再修改这里
6346
- phone: ""
6344
+ phone: item.phone
6347
6345
  };
6348
6346
  return sourceLabelMap[sourceValue] || [
6349
6347
  item.enterpriseNo,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfe-repo/web-components",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "module": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": [
@@ -52,8 +52,8 @@
52
52
  "esbuild-plugin-less": "^1.3.9",
53
53
  "eslint": "8.57.1",
54
54
  "vitest": "^4.0.14",
55
- "@xfe-repo/eslint-config": "1.6.0",
56
- "@xfe-repo/typescript-config": "1.6.1"
55
+ "@xfe-repo/typescript-config": "1.6.1",
56
+ "@xfe-repo/eslint-config": "1.6.0"
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@ant-design/icons": "^5.0.0",