doctor-admin-components 1.0.13-beta.96 → 1.0.13-beta.97

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.96",
4
+ "version": "1.0.13-beta.97",
5
5
  "private": false,
6
6
  "main1": "lib/index.umd.min.js",
7
7
  "main": "packages/index.js",
@@ -2,7 +2,7 @@
2
2
  * @Author: zhangpengwei 15038779532@163.com
3
3
  * @Date: 2023-08-28 19:04:39
4
4
  * @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
5
- * @LastEditTime: 2024-05-24 10:26:37
5
+ * @LastEditTime: 2024-07-17 15:35:31
6
6
  * @FilePath: /doctor-admin-components/packages/src/views/biz/contractTracing/contractSummary.vue
7
7
  * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
8
8
  -->
@@ -734,9 +734,9 @@ ${invoiceNoTitleZh}:${invoiceNo}
734
734
  if (shipment.subNo) {
735
735
  let url =
736
736
  'https://tracking.geekyum.com/shipping/detail?bizNo=' +
737
- shipment?.bookingNo.toString() +
737
+ shipment?.bookingNo?.toString() +
738
738
  '&bizType=1&subNo=' +
739
- shipment?.subNo.toString() +
739
+ shipment?.subNo?.toString() +
740
740
  '&access_token=' +
741
741
  this.accessToken
742
742
  url = url + (this.isChina ? '&lang=zh' : '&lang=en')
@@ -807,7 +807,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
807
807
  this.dealRecord = response.data
808
808
  this.dealRecord.dealRecordDetailList.map((item) => {
809
809
  if (item.imageList) {
810
- item.askCover = item.imageList.toString()
810
+ item.askCover = item?.imageList?.toString()
811
811
  }
812
812
  })
813
813
 
@@ -897,7 +897,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
897
897
  this.dealRecord = response.data
898
898
  this.dealRecord.dealRecordDetailList.map((item) => {
899
899
  if (item.imageList) {
900
- item.askCover = item.imageList.toString()
900
+ item.askCover = item?.imageList?.toString()
901
901
  }
902
902
  })
903
903
  })