MingPay.vue
853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
<div>
<form
v-show="show"
id="unityPayForm"
ref="myFormRef"
method="post"
:action="url"
>
<textarea v-model="formData" name="context" style="width: 100%;height: 400px;" />
<button type="submit">提交</button>
</form>
</div>
</template>
<script setup>
import { nextTick, ref } from 'vue'
const props = defineProps({
show: {
type: Boolean,
default: false
},
action: {
type: String,
default: ''
}
})
const url = ref(import.meta.env.VITE_APP_MSPAY_URL)
const formData = ref()
const myFormRef = ref(null)
function handleSubmit(row) {
formData.value = row
if (props.action) url.value = props.action
nextTick(() => {
if (myFormRef.value) myFormRef.value.submit()
})
}
defineExpose({
handleSubmit
})
</script>
<style scoped lang="scss">
</style>