index.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="content">
  3. <uni-navbar title="运输申请增加成功" leftIconSize="0">
  4. </uni-navbar>
  5. <view class="centenDw">
  6. <u--image src="../../static/images/succeed.png" width="400rpx" height="400rpx" :fade='false'></u--image>
  7. <!-- <view class="fontStyle mt">
  8. 人员增加成功
  9. </view> -->
  10. <!-- <view class="fontStyle">
  11. 审核后可正常使用企业功能
  12. </view> -->
  13. <u-button @click="submit" class="mt2 buttonStyle">去查看</u-button>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. onLoad() {
  24. },
  25. methods: {
  26. submit() {
  27. this.$tab.reLaunch('/pages/transport/index')
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .content {
  34. width: 100%;
  35. height: 100vh;
  36. background-image: url('@/static/images/bj.png');
  37. background-size: 100% 100%;
  38. /* border: 1px salmon soli;
  39. background-color: aquamarine; */
  40. }
  41. .flexCenten {
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .fontStyle {
  48. text-align: center;
  49. font-size: 28rpx;
  50. font-weight: 400;
  51. color: #FFFFFF;
  52. line-height: 60rpx;
  53. }
  54. .mt {
  55. margin-top: 56rpx;
  56. }
  57. .buttonStyle {
  58. width: 238rpx;
  59. height: 85rpx;
  60. background: linear-gradient(0deg, #FFD334 0%, #F59A02 100%);
  61. box-shadow: 0px 2rpx 13rpx 0rpx rgba(27, 43, 95, 0.25);
  62. border-radius: 43rpx;
  63. border-width: 0;
  64. font-size: 28rpx;
  65. font-weight: bold;
  66. color: #FFFFFF;
  67. }
  68. .centenDw {
  69. position: absolute;
  70. top: 50%;
  71. left: 50%;
  72. transform: translate(-50%, -50%);
  73. }
  74. .mt2 {
  75. margin-top: 108rpx;
  76. }
  77. </style>