江西小程序管理端
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.

64 lines
1.1 KiB

1 year ago
  1. <template>
  2. <view class="popupCon">
  3. <view class="h2">确定取消预约</view>
  4. <view class="txt">某个训练预约取消规则</view>
  5. <view class="btnBox">
  6. <view class="btn" @click="$emit('popupBtnClick',0)">取消</view>
  7. <view class="btn right" @click="$emit('popupBtnClick',1)">确定</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss" scoped>
  14. .popupCon {
  15. width: 558rpx;
  16. background: linear-gradient(180deg, #C1DFFE 0%, #FFFFFF 20%);
  17. border-radius: 16rpx;
  18. .h2 {
  19. font-size: 36rpx;
  20. color: #333;
  21. font-weight: 600;
  22. text-align: center;
  23. padding: 90rpx 0 0rpx 0;
  24. }
  25. .txt {
  26. text-align: center;
  27. padding: 28rpx;
  28. color: #686B73;
  29. }
  30. .btnBox {
  31. width: 100%;
  32. height: 110rpx;
  33. border-top: 1rpx solid #E8E9EC;
  34. display: flex;
  35. padding: 30rpx 0;
  36. .btn {
  37. flex: 1;
  38. text-align: center;
  39. color: #ADADAD;
  40. font-size: 36rpx;
  41. }
  42. .btn.right {
  43. color: $themC;
  44. position: relative;
  45. &::before {
  46. content: '';
  47. position: absolute;
  48. left: 0;
  49. top: 0;
  50. width: 2rpx;
  51. height: 48rpx;
  52. background: #E8E9EC;
  53. }
  54. }
  55. }
  56. }
  57. </style>