Compare commits

..

No commits in common. "0876bccea23c191d1446964a7280ae6ca07e92d3" and "e91f27049d74a64e8715f1489ada06052039e20f" have entirely different histories.

2 changed files with 18 additions and 18 deletions

View File

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

View File

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