| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <view>
- <u-navbar :is-back="false" title="提交成功"></u-navbar>
- <view class="content">
- <image src="@/static/icon/success3.png" mode=""></image>
- <text class="tips">{{params.title}}</text>
- <button class="cu-btn round btn" @click="$jump(params.path)">
- 确认
- </button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- params:{
- title:'资料提交成功,请耐心等待审核',
- path:'/pages/index/index'
- }
- }
- },
- onLoad(options) {
- if (this.$isNotEmpty(options.params)) {
- this.params=JSON.parse(options.params)
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- background-color: #FFFFFF;
- }
- </style>
- <style lang="scss" scoped>
- .content{
- margin-top: 140rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
-
- image{
- width: 160rpx;
- height: 160rpx;
- }
-
- .tips{
- margin-top: 50rpx;
- color: #313131;
- font-size: 28rpx;
- }
-
- .btn{
- margin-top: 150rpx;
- background-color: #EF9944;
- color: #FFFFFF;
- width: 70%;
- padding: 44rpx;
- }
- }
- </style>
|