1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!-- 退役军人职业教育码申请成功 -->
- <template>
- <view class="apply-success">
- <u-navbar :is-back="false" title="退役军人职业教育码申请" :background="{ backgroundColor: '#3D5D4C' }" title-color="#fff"></u-navbar>
- <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" @click="jumpPage('/pages/index/index')">好的</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- /**
- * 跳转到指定页面
- */
- jumpPage(url) {
- uni.switchTab({
- url: url
- })
- }
- }
- }
- </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>
|