Commit 386517c2 by wusiyi

fix: bug

parent bba1eb43
......@@ -586,8 +586,8 @@ const getLogistic = () => {
// 美国物流
getLogisticUSApi(content.value).then((res) => {
if (res.code === 200) {
trackingNo.value = res.data.trackingNo
shopNo.value = res.data.shopNo
trackingNo.value = (res.data as any).trackingNo
shopNo.value = (res.data as any).shopNo
documentUrl.value = res.data.documentUrl
window.open(filePath + res.data.documentUrl, '_blank')
}
......@@ -596,8 +596,8 @@ const getLogistic = () => {
// 中国物流
getLogisticCNApi(content.value).then((res) => {
if (res.code === 200) {
trackingNo.value = res.data.trackingNo
shopNo.value = res.data.shopNo
trackingNo.value = (res.data as any).trackingNo
shopNo.value = (res.data as any).shopNo
documentUrl.value = res.data.documentUrl
window.open(FileCnPath + res.data.documentUrl, '_blank')
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment