帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.5 KiB

11 months ago
  1. <template>
  2. <view class="payOrder">
  3. <navbar
  4. leftClick
  5. @leftClick="$utils.navigateBack"
  6. title="订单支付"/>
  7. <view class="pay">
  8. <view class="">
  9. 金额
  10. </view>
  11. <view class="">
  12. 100
  13. </view>
  14. </view>
  15. <view class="submit"
  16. @click="submit">
  17. 支付
  18. </view>
  19. <confirmationPopup
  20. ref="confirmationPopup"
  21. title="提示"
  22. confirmText="确认">
  23. <view class="confirmationPopup">
  24. <!-- <image src="/static/image/publish/upload.png"
  25. style="width: 150rpx;height: 150rpx;"
  26. mode=""></image> -->
  27. <view>
  28. 支付成功
  29. </view>
  30. </view>
  31. </confirmationPopup>
  32. </view>
  33. </template>
  34. <script>
  35. import confirmationPopup from '@/components/toast/confirmationPopup.vue'
  36. export default {
  37. components : {
  38. confirmationPopup,
  39. },
  40. data() {
  41. return {
  42. }
  43. },
  44. methods: {
  45. submit(){
  46. this.$refs.confirmationPopup.open()
  47. },
  48. }
  49. }
  50. </script>
  51. <style scoped lang="scss">
  52. .payOrder{
  53. padding: 30rpx;
  54. .pay{
  55. display: flex;
  56. color: #999;
  57. justify-content: space-between;
  58. padding: 20rpx 0;
  59. border-bottom: 1px solid #999;
  60. }
  61. .submit{
  62. background: $uni-linear-gradient-btn-color;
  63. color: #fff;
  64. padding: 20rpx 0;
  65. text-align: center;
  66. margin-top: 100rpx;
  67. }
  68. .confirmationPopup{
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. justify-content: center;
  73. width: 100%;
  74. height: 200rpx;
  75. image{
  76. margin-top: 40rpx;
  77. }
  78. .info{
  79. margin-top: 40rpx;
  80. font-size: 26rpx;
  81. }
  82. }
  83. }
  84. </style>