✨ MK公开页、预结算体验优化、地图选址与认证密码规则完善
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user