学员端小程序
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.

67 lines
1.2 KiB

1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="同城转校"></topNavbar>
  4. <view class="pad">
  5. <view class="card">
  6. <view class="tpsBox">
  7. <view class="row">
  8. <view class="icon">
  9. <image src="@/static/images/userCenter/warn.png" mode=""></image>
  10. </view>
  11. <view class="tps">请与教练协商确认达成一致后填写协商好的退款金额</view>
  12. </view>
  13. </view>
  14. </view>
  15. <myform></myform>
  16. <view class="btnBg">提交</view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import myform from './comp/myform'
  22. export default {
  23. components: { myform },
  24. data() {
  25. return {
  26. }
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .card {
  34. padding: 12rpx 28rpx;
  35. margin-bottom: 24rpx;
  36. .tpsBox {
  37. height: 140rpx;
  38. background: #FFFFFF;
  39. border-radius: 16rpx;
  40. .row {
  41. height: 100%;
  42. display: flex;
  43. align-items: center;
  44. .icon {
  45. width: 36rpx;
  46. height: 36rpx;
  47. }
  48. .tps {
  49. padding-left: 26rpx;
  50. font-size: 28rpx;
  51. font-weight: 600;
  52. color: $themC;
  53. line-height: 1.2em;
  54. }
  55. }
  56. }
  57. }
  58. .btnBg {
  59. width: 396rpx;
  60. margin: 94rpx auto;
  61. }
  62. </style>