paySuccess.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="box">
  3. <view class="imgBox">
  4. <image class="duihao" src="../../static/img/icon_selectY.png" mode=""></image>
  5. </view>
  6. <view class="txt" v-if="type==1">付款成功</view>
  7. <view class="txt" v-if="type==2">付款失败</view>
  8. <view class="goBack" @click="goBack">返回首页</view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. components: {
  14. },
  15. data() {
  16. return {
  17. type:'',
  18. }
  19. },
  20. onLoad(opt) {
  21. this.type=opt.type
  22. if(this.type==2){
  23. uni.setNavigationBarTitle({
  24. title: '下单失败' //页面标题为"新标题"
  25. });
  26. }
  27. },
  28. onShow() {
  29. },
  30. methods: {
  31. goBack(){
  32. uni.switchTab({
  33. url:'/pages/index/index'
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style scoped lang="less">
  40. .box {
  41. width: 100vw;
  42. min-height: 100vh;
  43. background: #F4F4F4;
  44. }
  45. .duihao{
  46. width: 110rpx;height: 110rpx;
  47. }
  48. .imgBox{
  49. text-align: center;padding-top: 190rpx;
  50. }
  51. .txt{
  52. text-align: center;padding-top: 30rpx;
  53. font-weight: 500;
  54. font-size: 36rpx;
  55. color: #222222;
  56. line-height: 50rpx;
  57. }
  58. .goBack{
  59. font-weight: 400;
  60. font-size: 26rpx;
  61. color: #F03B3B;
  62. line-height: 37rpx;
  63. text-align: center;
  64. padding-top: 30rpx;
  65. }
  66. </style>