购物车跳转支付页面

This commit is contained in:
jqtmviyu@gmail.com 2021-03-05 02:55:08 +08:00
parent d7edb99ffa
commit d822877ee0
3 changed files with 21 additions and 1 deletions

View File

@ -39,6 +39,12 @@
"style": { "style": {
"navigationBarTitleText": "我的" "navigationBarTitleText": "我的"
} }
},
{
"path": "pages/pay/pay",
"style": {
"navigationBarTitleText": "结算"
}
} }
], ],
"globalStyle": { "globalStyle": {

View File

@ -85,7 +85,8 @@ export default {
icon: "none" icon: "none"
}) })
}else{ }else{
console.log("跳转到结算页面") } wx.navigateTo({url:"/pages/pay/pay"})
}
} }
}, },
// //

13
src/pages/pay/pay.vue Normal file
View File

@ -0,0 +1,13 @@
<template>
<view>支付页面</view>
</template>
<script>
export default {
}
</script>
<style lang="scss">
</style>