doctor-admin-components 1.0.13-beta.96 → 1.0.13-beta.98
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
|
-->
|
|
@@ -733,12 +733,8 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
733
733
|
getGeekYumPage(shipment) {
|
|
734
734
|
if (shipment.subNo) {
|
|
735
735
|
let url =
|
|
736
|
-
'https://tracking.geekyum.com/shipping/detail?bizNo=' +
|
|
737
|
-
shipment?.
|
|
738
|
-
'&bizType=1&subNo=' +
|
|
739
|
-
shipment?.subNo.toString() +
|
|
740
|
-
'&access_token=' +
|
|
741
|
-
this.accessToken
|
|
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
|
|
742
738
|
url = url + (this.isChina ? '&lang=zh' : '&lang=en')
|
|
743
739
|
return url
|
|
744
740
|
}
|
|
@@ -807,7 +803,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
807
803
|
this.dealRecord = response.data
|
|
808
804
|
this.dealRecord.dealRecordDetailList.map((item) => {
|
|
809
805
|
if (item.imageList) {
|
|
810
|
-
item.askCover = item
|
|
806
|
+
item.askCover = item?.imageList?.toString()
|
|
811
807
|
}
|
|
812
808
|
})
|
|
813
809
|
|
|
@@ -897,7 +893,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
897
893
|
this.dealRecord = response.data
|
|
898
894
|
this.dealRecord.dealRecordDetailList.map((item) => {
|
|
899
895
|
if (item.imageList) {
|
|
900
|
-
item.askCover = item
|
|
896
|
+
item.askCover = item?.imageList?.toString()
|
|
901
897
|
}
|
|
902
898
|
})
|
|
903
899
|
})
|