success.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="sucbox">
  3. <view class="subtop">
  4. <image :src="sucimg"></image>
  5. <view class="tit">您的业务申报已提交成功</view>
  6. <view class="tit">请您耐心等待审核</view>
  7. <view class="txt" @click="getNodata">查看业务申报详情</view>
  8. </view>
  9. <view class="back" @click="getHome">返回首页</view>
  10. </view>
  11. </template>
  12. <script>
  13. import config from '@/config'
  14. const baseUrl = config.baseUrl
  15. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  16. export default{
  17. components:{},
  18. data(){
  19. return{
  20. sucimg:require('@/work/static/images/success.png'),
  21. }
  22. },
  23. methods:{
  24. checkPermi, checkRole,
  25. getHome(){
  26. this.$tab.reLaunch('/pages/index/index')
  27. },
  28. getNodata(){
  29. this.$tab.navigateTo('/work/pages/nodata')
  30. }
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. page{background-color: #ffffff;}
  36. .sucbox{min-height: 100vh;display: flex;flex-direction: column;padding: 100rpx 0 200rpx;align-items: center;
  37. .subtop{
  38. flex: 1;display: flex;flex-direction: column;align-items: center;
  39. image{width: 550rpx;height: 450rpx;margin: 0 auto 40rpx;}
  40. .tit{font-weight: bold;font-size: 30rpx;color: #222327;padding-top: 6rpx;}
  41. .txt{font-weight: bold;font-size: 30rpx;color: #00A9F0;margin-top: 60rpx;}
  42. }
  43. .back{font-weight: bold;font-size: 30rpx;flex: 0 0 auto;color: #666666;text-align: center;}
  44. }
  45. </style>