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
|
@@ -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-
|
|
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
|
|
737
|
+
shipment?.bookingNo?.toString() +
|
|
738
738
|
'&bizType=1&subNo=' +
|
|
739
|
-
shipment?.subNo
|
|
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
|
|
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
|
|
900
|
+
item.askCover = item?.imageList?.toString()
|
|
901
901
|
}
|
|
902
902
|
})
|
|
903
903
|
})
|