更新任务

szh-new
sunzehua 4 months ago
parent 94bdf9abee
commit d3d552c692

@ -59,7 +59,7 @@ function init() {
pdfLoad.value = true pdfLoad.value = true
DownloadFileByBC(data).then(res => { DownloadFileByBC(data).then(res => {
if (res.type === 'application/json') { if (res.type === 'application/json') {
const reader = new FileReader() const reader = new FileReader() as any
reader.readAsText(res, 'utf-8') reader.readAsText(res, 'utf-8')
reader.onload = () => { reader.onload = () => {
const _res = JSON.parse(reader.result) const _res = JSON.parse(reader.result)
@ -69,13 +69,14 @@ function init() {
pdfRes.value = res pdfRes.value = res
var contentDisposition = res.headers['content-disposition'] var contentDisposition = res.headers['content-disposition']
var patt = new RegExp('filename=([^;]+\\.[^\\.;]+);*') var patt = new RegExp('filename=([^;]+\\.[^\\.;]+);*')
var result = patt.exec(contentDisposition) var result = patt.exec(contentDisposition) as any
var filename = result[1] console.log(patt,result,contentDisposition,res)
var reg = /^["](.*)["]$/g // var filename = result[1]
pdfName.value = decodeURI(filename.replace(reg, '$1')) // var reg = /^["](.*)["]$/g
if (res.data.size > 150) { // pdfName.value = decodeURI(filename.replace(reg, '$1'))
pdfUrl.value = window.URL.createObjectURL(new Blob([res.data], { type: 'application/pdf;charset=utf-8' })) // if (res.data.size > 150) {
} // pdfUrl.value = window.URL.createObjectURL(new Blob([res.data], { type: 'application/pdf;charset=utf-8' }))
// }
} }
pdfLoad.value = false pdfLoad.value = false
}) })

@ -505,9 +505,6 @@ const [registerTable, { reload, setLoading, getForm, getSelectRows, setProps }]
}) })
}, },
beforeFetch: (p) => { beforeFetch: (p) => {
if (activeNextKey.value) {
p['status'] = activeNextKey.value
}
if (taskType.value) { if (taskType.value) {
p['task_TYPE'] = taskType.value p['task_TYPE'] = taskType.value
} }
@ -533,6 +530,9 @@ const [registerTable, { reload, setLoading, getForm, getSelectRows, setProps }]
if (activeTopKey.value) { if (activeTopKey.value) {
data.otherQueryCondition.taskCategory = activeTopKey.value data.otherQueryCondition.taskCategory = activeTopKey.value
} }
if (activeNextKey.value) {
data.otherQueryCondition.status = activeNextKey.value
}
if (taskType.value) { if (taskType.value) {
data.otherQueryCondition.taskType = taskType.value data.otherQueryCondition.taskType = taskType.value
} }

Loading…
Cancel
Save