paySuccess.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <template>
  2. <view class="box">
  3. <view class="imgBox">
  4. <image class="duihao" src="http://dmsphoto.66km.com.cn/thFiles/3488A63B-237D-4E73-96BC-C51D79AE01A3.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="txt" >下单成功</view>
  9. <view class="txt2">赶快查看商品详细订单</view>
  10. <view class="seeBox">
  11. <view class="seeBtn" @click="seeFn">查看订单</view>
  12. </view>
  13. <view class="goBack" @click="goBack">返回首页</view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. components: {
  19. },
  20. data() {
  21. return {
  22. type:'',
  23. orderType:'',
  24. }
  25. },
  26. onLoad(opt) {
  27. this.type=opt.type
  28. this.orderType=opt.orderType
  29. /* if(this.type==2){
  30. uni.setNavigationBarTitle({
  31. title: '下单失败' //页面标题为"新标题"
  32. });
  33. } */
  34. },
  35. onShow() {
  36. },
  37. methods: {
  38. seeFn(){
  39. if(this.orderType==1){
  40. uni.navigateTo({
  41. url:'../user/myOrder/myOrder'
  42. })
  43. }
  44. },
  45. goBack(){
  46. uni.switchTab({
  47. url:'/pages/index/index'
  48. })
  49. }
  50. }
  51. }
  52. </script>
  53. <style scoped lang="less">
  54. .box {
  55. width: 100vw;
  56. min-height: 100vh;
  57. background: #F4F4F4;
  58. }
  59. .duihao{
  60. width: 110rpx;height: 110rpx;
  61. }
  62. .imgBox{
  63. text-align: center;padding-top: 190rpx;
  64. }
  65. .txt{
  66. text-align: center;padding-top: 30rpx;
  67. font-weight: 500;
  68. font-size: 36rpx;
  69. color: #222222;
  70. line-height: 50rpx;
  71. }
  72. .goBack{
  73. font-weight: 400;
  74. font-size: 26rpx;
  75. color: #EC0F0A;
  76. line-height: 37rpx;
  77. text-align: center;
  78. padding-top: 30rpx;
  79. }
  80. .txt2{
  81. font-weight: 400;
  82. font-size: 22rpx;
  83. color: #666E80;
  84. line-height: 30rpx;
  85. text-align: center;
  86. padding-top: 20rpx;
  87. }
  88. .seeBtn{
  89. width: 282rpx;
  90. height: 70rpx;
  91. background: #FCD903;
  92. border-radius: 43rpx;
  93. text-align: center;
  94. line-height: 70rpx;
  95. font-weight: 400;
  96. font-size: 26rpx;
  97. color: #110B01;
  98. margin: 0 auto;
  99. margin-top: 44rpx;
  100. }
  101. </style>