123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!-- 退役军人职业教育码申请成功 -->
- <template>
- <view class="apply-success">
- <view class="apply-success-top">
- <image src="../../static/img/success-icon.png" mode=""></image>
- <view>简历投递成功,等待企业反馈</view>
- </view>
- <view class="apply-success-button">
- <u-button type="primary" class="btn">好的</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .apply-success {
- &-top {
- text-align: center;
- margin: 168rpx auto 476rpx;
- image {
- width: 176rpx;
- height: 176rpx;
- }
- view {
- font-size: 32rpx;
- color: #000000;
- margin-top: 36rpx;
- }
- }
- &-button {
- width: 388rpx;
- height: 80rpx;
- margin: 0 auto;
- .btn {
- border-radius: 40rpx;
- }
- }
- }
- </style>
|