|
@@ -1126,8 +1126,8 @@ const getArchiveFileListData = async () => {
|
|
|
cscTableData1.value = getArrValue(data['approvalFileList'])
|
|
|
// pdfUrl.value = tableFileData.value[0]?.pdfFileUrl
|
|
|
let rawUrl = tableFileData.value[0]?.pdfFileUrl
|
|
|
- const encodedUrl = encodeURIComponent(rawUrl)
|
|
|
- pdfUrl.value = encodedUrl
|
|
|
+
|
|
|
+ pdfUrl.value = rawUrl
|
|
|
checkId.value = tableFileData.value[0]?.id
|
|
|
|
|
|
} else {
|
|
@@ -1200,8 +1200,8 @@ const consultFileClick = async (row, type) => {
|
|
|
checkId.value = row.id
|
|
|
// pdfUrl.value = row.pdfFileUrl
|
|
|
let rawUrl = row.pdfFileUrl
|
|
|
- const encodedUrl = encodeURIComponent(rawUrl)
|
|
|
- pdfUrl.value = encodedUrl
|
|
|
+
|
|
|
+ pdfUrl.value = rawUrl
|
|
|
console.log(pdfUrl.value, '222222222222')
|
|
|
getmetaInfo(checkId.value)
|
|
|
isCarrySpotChecksDrawer.value = true
|
|
@@ -1235,8 +1235,8 @@ const changePdf = (row, index) => {
|
|
|
|
|
|
let rawUrl = row['pdfFileUrl'] || ''
|
|
|
|
|
|
- const encodedUrl = encodeURIComponent(rawUrl)
|
|
|
- pdfUrl.value = encodedUrl
|
|
|
+
|
|
|
+ pdfUrl.value = rawUrl
|
|
|
console.log( pdfUrl.value, ' pdfUrl.value')
|
|
|
checkId.value = row.id
|
|
|
isFile.value = 2
|