doctor-admin-components 1.0.13-beta.95 → 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
|
-->
|
|
@@ -731,17 +731,15 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
731
731
|
})
|
|
732
732
|
},
|
|
733
733
|
getGeekYumPage(shipment) {
|
|
734
|
-
console.log(shipment)
|
|
735
734
|
if (shipment.subNo) {
|
|
736
735
|
let url =
|
|
737
736
|
'https://tracking.geekyum.com/shipping/detail?bizNo=' +
|
|
738
|
-
shipment
|
|
737
|
+
shipment?.bookingNo?.toString() +
|
|
739
738
|
'&bizType=1&subNo=' +
|
|
740
|
-
shipment
|
|
739
|
+
shipment?.subNo?.toString() +
|
|
741
740
|
'&access_token=' +
|
|
742
741
|
this.accessToken
|
|
743
742
|
url = url + (this.isChina ? '&lang=zh' : '&lang=en')
|
|
744
|
-
console.log(url)
|
|
745
743
|
return url
|
|
746
744
|
}
|
|
747
745
|
},
|
|
@@ -809,7 +807,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
809
807
|
this.dealRecord = response.data
|
|
810
808
|
this.dealRecord.dealRecordDetailList.map((item) => {
|
|
811
809
|
if (item.imageList) {
|
|
812
|
-
item.askCover = item
|
|
810
|
+
item.askCover = item?.imageList?.toString()
|
|
813
811
|
}
|
|
814
812
|
})
|
|
815
813
|
|
|
@@ -899,7 +897,7 @@ ${invoiceNoTitleZh}:${invoiceNo}
|
|
|
899
897
|
this.dealRecord = response.data
|
|
900
898
|
this.dealRecord.dealRecordDetailList.map((item) => {
|
|
901
899
|
if (item.imageList) {
|
|
902
|
-
item.askCover = item
|
|
900
|
+
item.askCover = item?.imageList?.toString()
|
|
903
901
|
}
|
|
904
902
|
})
|
|
905
903
|
})
|