Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-05-11 11:20:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6889816d84d6257b93aba51ab56f32b7b5bfaf41
6889816d
1 parent
d13bfd69
新增待办事项
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
src/components/DonateBook/index.vue
src/views/client/donateCertificate.vue
src/views/client/finishUpload.vue
src/views/client/wechatpayCallback.vue
src/components/DonateBook/index.vue
View file @
6889816
...
...
@@ -59,6 +59,8 @@ import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
// TODO: 微信支付
onMounted(() => {
})
...
...
src/views/client/donateCertificate.vue
View file @
6889816
...
...
@@ -15,6 +15,8 @@ import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
// TODO: 捐款成功后,查询生成捐赠证书
onMounted(() => {
})
...
...
src/views/client/finishUpload.vue
View file @
6889816
...
...
@@ -35,6 +35,8 @@ import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
// TODO: 作品上传完成后,回调到成功页面
// 弹出捐赠弹框模块
const showDonate = ref(false);
const closeDonate = (v) => { // 查看更多回复
...
...
src/views/client/wechatpayCallback.vue
View file @
6889816
...
...
@@ -30,6 +30,8 @@ import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
// TODO: 微信支付成功后回调
onMounted(() => {
})
...
...
@@ -50,7 +52,8 @@ export default {
},
methods: {
getCert () {
this.$router.push({
// 跳转到捐赠证书页面,替换掉当前页面,不能返回这个页面
this.$router.replace({
path: '/client/donateCertificate'
});
}
...
...
@@ -60,4 +63,4 @@ export default {
<style lang="less" scoped>
.wechatpay-callback-page {}
</style>
\ No newline at end of file
</style>
...
...
Please
register
or
login
to post a comment