12345678910111213141516171819202122232425262728293031 |
- <template>
- <view class="apply-result-page">
- <image style="width:100px" :src="globalImgUrls.imgSuccess"></image>
- <view style="margin-top:20px">申请已提交</view>
- <view style="margin-top:15px">请等待销售人员与您联系</view>
- <view class="global-btn-yellow-change btn" @click="handleBack">返回</view>
- </view>
- </template>
- <script>
- export default {
- methods: {
- handleBack(){
- uni.navigateTo();
- }
- }
- }
- </script>
- <style lang="scss">
- .apply-result-page{
- text-align: center;
- font-size: 17px;
- .btn{
- margin-left: auto;
- margin-right: auto;
- margin-top: 140rpx;
- width: 380rpx;
- }
- }
- </style>
|