22 lines
606 B
Vue
22 lines
606 B
Vue
<template>
|
|
<mk-public-shell biz-type="payment-application" :get-form="getForm">
|
|
<payment-application-form ref="page" />
|
|
</mk-public-shell>
|
|
</template>
|
|
|
|
<script>
|
|
import MkPublicShell from '@/views/mk/mk-public-shell.vue';
|
|
import PaymentApplicationForm from '@/views/payment/payment-application-form.vue';
|
|
|
|
export default {
|
|
name: 'PaymentApplicationPublicView',
|
|
components: { MkPublicShell, PaymentApplicationForm },
|
|
methods: {
|
|
getForm() {
|
|
const form = this.$refs.page?.form || {};
|
|
return { ...form, subject: form.paymentNo || form.projectName || '' };
|
|
},
|
|
},
|
|
};
|
|
</script>
|