feeRule.vue 660 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view>
  3. <view class="accountText">
  4. 费用规则
  5. </view>
  6. <view class="account">
  7. <image class="Img" mode="widthFix" src="http://125.71.216.35:9001/education/feerule/fee_rule.jpg" ></image>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. }
  14. </script>
  15. <style>
  16. page{
  17. height: 100%;
  18. /* background-color: #FFF; */
  19. }
  20. .account{
  21. /* background-color: #FFF2CC; */
  22. width: 100%;
  23. height: 100%;
  24. justify-content: center;
  25. text-align: center;
  26. /* margin-top: 40rpx; */
  27. display: flex;
  28. }
  29. .accountText{
  30. margin-top: 40rpx;
  31. font-size: 30rpx;
  32. text-align: center;
  33. }
  34. .Img{
  35. border-radius: 50rpx;
  36. margin: 30rpx;
  37. }
  38. </style>