| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view class="container">
- <image class="img" src="/static/image/img_admitsuccess.png"></image>
- <view class="title">定级材料提交成功!</view>
- <view class="txt">预计1-2个工作日完成审核,请耐心等待</view>
- <view class="return" @click="goBack">返回</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- watch: {
- },
- onLoad() {},
- methods: {
- goBack() {
- uni.navigateBack()
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- min-height: 100vh;
- background: #ffffff;
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center;
- padding-top: 204rpx;
- .img {
- width: 248rpx;
- height: 248rpx;
- }
- .title {
- font-weight: 500;
- font-size: 32rpx;
- color: #333333;
- margin-top: 48rpx;
- }
- .txt {
- margin-top: 16rpx;
- font-size: 24rpx;
- color: #999999;
- line-height: 36rpx;
- }
- .return {
- margin-top: 96rpx;
- width: 320rpx;
- height: 80rpx;
- line-height: 80rpx;
- background: #388BFF;
- border-radius: 56rpx 56rpx 56rpx 56rpx;
- border: 2rpx solid #388BFF;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- </style>
|