yuyue-capture.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="content">
  3. <u-cell-group :border="false">
  4. <u-cell isLink size="large" title="立即预约" @click="towai"></u-cell>
  5. <u-cell isLink size="large" title="会员预约" @click="toyuyue"></u-cell>
  6. <u-cell isLink size="large" title="预约记录" :border="false" @click="tojilu"></u-cell>
  7. </u-cell-group>
  8. <u-popup :show="show" mode="center" :round="10" @close="close">
  9. <view class="popu vflex acenter jcenter">
  10. <image src="static/info.png" mode="aspectFill"></image>
  11. <text>是否前往外部预约</text>
  12. <view class="btns hflex acenter jcenter">
  13. <view class="btn1" @click="show = false">取消</view>
  14. <view class="btn2" @click="sure">确定</view>
  15. </view>
  16. </view>
  17. </u-popup>
  18. </view>
  19. </template>
  20. <script>
  21. import $api from '@/static/js/api.js'
  22. export default {
  23. data() {
  24. return {
  25. show: false,
  26. url: '',
  27. }
  28. },
  29. onLoad() {
  30. },
  31. methods: {
  32. sure() {
  33. uni.navigateTo({
  34. url: '/pages/webview/index?url=' + this.url
  35. })
  36. this.show = false
  37. },
  38. close() {
  39. this.show = false
  40. },
  41. towai() {
  42. var that = this
  43. $api.req({
  44. url: 'config',
  45. data: {
  46. module: 'shoot'
  47. }
  48. }, function(res) {
  49. that.url = res.data.appointment_url
  50. that.show = true
  51. })
  52. },
  53. toyuyue() {
  54. uni.navigateTo({
  55. url: '/pageB/yuyue-vip'
  56. })
  57. },
  58. tojilu() {
  59. uni.navigateTo({
  60. url: '/pageB/yuyue-list'
  61. })
  62. },
  63. },
  64. }
  65. </script>
  66. <style lang="scss">
  67. .content {
  68. background: #FFFFFF;
  69. padding: 0 40rpx;
  70. .popu {
  71. background: #FFFFFF;
  72. border-radius: 20rpx;
  73. padding: 44rpx 38rpx;
  74. image {
  75. width: 78rpx;
  76. height: 78rpx;
  77. }
  78. text {
  79. font-size: 30rpx;
  80. font-family: PingFangSC, PingFang SC;
  81. font-weight: 400;
  82. color: #000000;
  83. padding: 26rpx 0 44rpx;
  84. }
  85. .btns {
  86. .btn1 {
  87. width: 204rpx;
  88. height: 72rpx;
  89. background: #E7E7E7;
  90. border-radius: 40rpx;
  91. font-size: 28rpx;
  92. font-family: PingFangSC, PingFang SC;
  93. font-weight: 400;
  94. color: #666666;
  95. line-height: 72rpx;
  96. text-align: center;
  97. margin: 0 26rpx 0 0;
  98. }
  99. .btn2 {
  100. width: 204rpx;
  101. height: 72rpx;
  102. background: #00B0B0;
  103. border-radius: 40rpx;
  104. font-size: 28rpx;
  105. font-family: PingFangSC, PingFang SC;
  106. font-weight: 400;
  107. color: #FFFFFF;
  108. line-height: 72rpx;
  109. text-align: center;
  110. }
  111. }
  112. }
  113. }
  114. </style>