editinfo.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="main">
  3. <view class="padding-xs flex align-center flex-direction" style="margin-top: 250rpx;">
  4. <view class="text-center flex align-center">
  5. <view class="text-xsl padding">
  6. <text class="cuIcon-roundcheckfill text-green"></text>
  7. </view>
  8. <view class="flex flex-direction align-start">
  9. <view class="text-xxl text-bold">
  10. 提交成功
  11. </view>
  12. <view class="margin-top-xs text-gray">您已经成功提交个人信息的修改</view>
  13. <view class="margin-top-xs text-gray">可前往首页进行信用征信评估等操作</view>
  14. </view>
  15. </view>
  16. <view class="flex">
  17. <navigator open-type="switchTab" url="/pages/mine/mine" hover-class="none">
  18. <view class="btn" style="border-color:#f5cc57;color: #000;">
  19. 暂不评估
  20. </view>
  21. </navigator>
  22. <navigator open-type="switchTab" url="/pages/index/index" hover-class="none">
  23. <view class="btn" style="background-color:#f5cc57;color: #fff;border: none;">
  24. 立即评估
  25. </view>
  26. </navigator>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. }
  36. },
  37. }
  38. </script>
  39. <style lang="scss">
  40. .btn {
  41. width: 250rpx;
  42. height: 50rpx;
  43. line-height: 50rpx;
  44. padding: 0 15px;
  45. border: 1px solid #979797;
  46. color: #979797;
  47. margin: 5px;
  48. border-radius: 15px;
  49. text-align: center;
  50. }
  51. </style>