查看文件打开新标签

This commit is contained in:
Leo_Ding 2025-09-11 17:02:38 +08:00
parent 70d652b22f
commit e4cd59b4ec
2 changed files with 18 additions and 18 deletions

View File

@ -153,7 +153,6 @@ function handleOk() {
...values,
cover: formData.value.cover ? spliceUrl(formData.value.cover[0]) : '',
images: formData.value.images ? formData.value.images.map(item => spliceUrl(item)) : [],
signupNum: formData.value.signupNum || 0,
status: 1
}
let result = null

View File

@ -55,16 +55,15 @@
:src="record.applySign ? config('http.apiBasic') + record.applySign : errImg" />
</template>
<template v-if="column.dataIndex === 'rebackApplyPdf'">
<a v-if="record.rebackApplyPdf" :href="config('http.apiBasic') + record.rebackApplyPdf"
rel="noopener noreferrer">
<a v-if="record.rebackApplyPdf" target="_blank"
:href="config('http.apiBasic') + record.rebackApplyPdf" rel="noopener noreferrer">
查看承诺报表
</a>
<span v-else></span>
</template>
<template v-if="column.dataIndex === 'rebackCovenantPdf'">
<a v-if="record.rebackCovenantPdf"
:href="config('http.apiBasic') + record.rebackCovenantPdf"
rel="noopener noreferrer">
<a v-if="record.rebackCovenantPdf" target="_blank"
:href="config('http.apiBasic') + record.rebackCovenantPdf" rel="noopener noreferrer">
查看申请报表
</a>
<span v-else></span>
@ -108,6 +107,7 @@ import { useI18n } from 'vue-i18n'
import { orderStatus } from '@/enums/index.js'
import { status } from 'nprogress'
import dayjs from 'dayjs'
import axios from 'axios'
defineOptions({
name: 'mettingYuYue',
})
@ -259,6 +259,7 @@ function handleResetSearch() {
async function onOk() {
await getPageList()
}
</script>
<style lang="less" scoped></style>