input.vue 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view style="padding: 30rpx;">
  3. <view class="topBox">
  4. <view >
  5. <u-icon name="error-circle-fill" color="#FF3B30" size="28"></u-icon>
  6. <text style="color: #FF3B30;margin-left: 10rpx;">学习前请提交完整审核资料</text></view>
  7. <view style="color: #007AFF;">稍后再填</view>
  8. </view>
  9. <view class="bodyBox">
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. };
  18. },
  19. methods: {
  20. }
  21. };
  22. </script>
  23. <style >
  24. page {
  25. background: #EAEEF1;
  26. }
  27. </style>
  28. <style scope>
  29. .bodyBox{
  30. background: #FFFFFF;
  31. border-radius: 24rpx;
  32. width: 100%;
  33. }
  34. .topBox{
  35. height: 80rpx;
  36. background: #FFFFFF;
  37. border-radius: 24rpx;
  38. width: 100%;
  39. display: flex;
  40. justify-content: space-between;
  41. line-height: 80rpx;
  42. padding: 0 20rpx;
  43. font-size: 24rpx;
  44. }
  45. </style>