1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <view class="accountText">
- 费用规则
- </view>
- <view class="account">
- <image class="Img" mode="widthFix" src="http://125.71.216.35:9001/education/feerule/fee_rule.jpg" ></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- }
- </script>
- <style>
- page{
- height: 100%;
- /* background-color: #FFF; */
- }
- .account{
- /* background-color: #FFF2CC; */
- width: 100%;
- height: 100%;
- justify-content: center;
- text-align: center;
- /* margin-top: 40rpx; */
- display: flex;
- }
- .accountText{
- margin-top: 40rpx;
- font-size: 30rpx;
- text-align: center;
- }
- .Img{
- border-radius: 50rpx;
- margin: 30rpx;
- }
- </style>
|