12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!-- 退役军人职业教育码申请成功 -->
- <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" @click="jumpPage('/pages/index/index')">好的</u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- /**
- * 跳转到指定页面
- */
- jumpPage(url) {
- uni.switchTab({
- url: url
- })
- }
- }
- },
- 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>
|