123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="main">
- <view class="padding-xs flex align-center flex-direction" style="margin-top: 250rpx;">
- <view class="text-center flex align-center">
- <view class="text-xsl padding">
- <text class="cuIcon-roundcheckfill text-green"></text>
- </view>
- <view class="flex flex-direction align-start">
- <view class="text-xxl text-bold">
- 提交成功
- </view>
- <view class="margin-top-xs text-gray">您已经成功提交个人信息的修改</view>
- <view class="margin-top-xs text-gray">可前往首页进行信用征信评估等操作</view>
- </view>
- </view>
- <view class="flex">
- <navigator open-type="switchTab" url="/pages/mine/mine" hover-class="none">
- <view class="btn" style="border-color:#f5cc57;color: #000;">
- 暂不评估
- </view>
- </navigator>
- <navigator open-type="switchTab" url="/pages/index/index" hover-class="none">
- <view class="btn" style="background-color:#f5cc57;color: #fff;border: none;">
- 立即评估
- </view>
- </navigator>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- }
- </script>
- <style lang="scss">
- .btn {
- width: 250rpx;
- height: 50rpx;
- line-height: 50rpx;
- padding: 0 15px;
- border: 1px solid #979797;
- color: #979797;
- margin: 5px;
- border-radius: 15px;
- text-align: center;
- }
- </style>
|