更新 支付完成页面

wenjuan
鹿和sa0ChunLuyu 1 year ago
parent f1197331f6
commit 9dfbcb36d1

@ -1,6 +1,5 @@
{
"pages": [
{
"pages": [{
"path": "pages/main/index/index",
"style": {
"navigationBarTitleText": "海南现代妇女儿童医院",
@ -66,6 +65,12 @@
"navigationBarBackgroundColor": "#D8EDF2",
"navigationBarTextStyle": "black"
}
},
{
"path": "pages/buy/done/done",
"style": {
"navigationBarTitleText": "支付完成"
}
}
],
"globalStyle": {

@ -0,0 +1,57 @@
<script setup>
/**
* name
* usersa0ChunLuyu
* date2024年9月11日 19:24:50
*/
import {
ref
} from 'vue'
import {
$api,
$response
} from '@/api'
import {
onShow
} from '@dcloudio/uni-app'
import {
useStore
} from '@/store'
const $store = useStore()
const $props = defineProps({
id: {
type: String,
default: '0'
}
});
const mountedAction = () => {
}
const config_ref = ref(null)
const configRef = (e) => {
if (!config_ref.value) {
config_ref.value = e
mountedAction()
}
}
onShow(() => {
if (!!config_ref.value) {
mountedAction()
}
})
</script>
<template>
<view>
<view v-if="!!$store.config">
<view :ref="configRef"></view>
</view>
<view>支付完成 订单号 [{{ $props.id }}]</view>
</view>
</template>
<style scoped>
</style>
Loading…
Cancel
Save