doctor-admin-components 1.0.13-beta.98 → 1.0.13-beta.99

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "doctor-admin-components",
3
3
  "version1": "1.0.11",
4
- "version": "1.0.13-beta.98",
4
+ "version": "1.0.13-beta.99",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -733,8 +733,12 @@ ${invoiceNoTitleZh}:${invoiceNo}
733
733
  getGeekYumPage(shipment) {
734
734
  if (shipment.subNo) {
735
735
  let url =
736
- 'https://tracking.geekyum.com/shipping/detail?bizNo=' + shipment?.bookingNo?.toString() ||
737
- shipment?.billOfLadingNo?.toString() + '&bizType=1&subNo=' + shipment?.subNo?.toString() + '&access_token=' + this.accessToken
736
+ 'https://tracking.geekyum.com/shipping/detail?bizNo=' +
737
+ (shipment?.bookingNo?.toString() ? shipment?.bookingNo?.toString() : shipment?.billOfLadingNo?.toString()) +
738
+ '&bizType=1&subNo=' +
739
+ shipment?.subNo?.toString() +
740
+ '&access_token=' +
741
+ this.accessToken
738
742
  url = url + (this.isChina ? '&lang=zh' : '&lang=en')
739
743
  return url
740
744
  }