| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view style="padding: 30rpx;">
- <view class="topBox">
- <view >
- <u-icon name="error-circle-fill" color="#FF3B30" size="28"></u-icon>
- <text style="color: #FF3B30;margin-left: 10rpx;">学习前请提交完整审核资料</text></view>
- <view style="color: #007AFF;">稍后再填</view>
- </view>
- <view class="bodyBox">
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- methods: {
-
- }
- };
- </script>
- <style >
- page {
- background: #EAEEF1;
- }
- </style>
- <style scope>
- .bodyBox{
- background: #FFFFFF;
- border-radius: 24rpx;
- width: 100%;
- }
- .topBox{
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- width: 100%;
- display: flex;
- justify-content: space-between;
- line-height: 80rpx;
- padding: 0 20rpx;
- font-size: 24rpx;
- }
- </style>
|