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-12 19:18:23 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fba5f66ab129828f82791e99fb0dd2b0cc2a11f1
fba5f66a
1 parent
caa54977
fix 查询条件微调
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
src/components/DonateBook/index.vue
src/components/ShortcutFixed/index.vue
src/views/client/wechatpayCallback.vue
src/components/DonateBook/index.vue
View file @
fba5f66
...
...
@@ -120,8 +120,12 @@ export default {
this.closeBtn();
// 交易成功跳转回调页面
// TEMP: 临时传参 donate_id
this.$router.push({
path: '/client/wechatpayCallback'
path: '/client/wechatpayCallback',
query: {
donate_id: res.data.data.id
}
})
} else {
console.warn(res);
...
...
src/components/ShortcutFixed/index.vue
View file @
fba5f66
...
...
@@ -90,7 +90,7 @@ export default {
z-index: 169;
position: fixed;
right: 2rem;
bottom: 1
4
rem;
bottom: 1
2
rem;
width: 3rem;
height: 3rem;
}
...
...
@@ -98,7 +98,7 @@ export default {
z-index: 169;
position: fixed;
right: 2rem;
bottom:
10
rem;
bottom:
8
rem;
width: 3rem;
height: 3rem;
}
...
...
src/views/client/wechatpayCallback.vue
View file @
fba5f66
...
...
@@ -57,7 +57,7 @@ export default {
this.$router.replace({
path: '/client/donateCertificate',
query: {
donate_id:
'314358' // 测试默认值
donate_id:
this.$route.query.donate_id
}
});
}
...
...
Please
register
or
login
to post a comment