supplierSuccess.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="flexitem">
  3. <view style="margin-top: 200rpx;">
  4. <u--image width="160rpx" height="160rpx" src="/static/supplier/icon_success1.png" ></u--image>
  5. </view>
  6. <view style="margin-top: 40rpx;font-size: 48rpx; font-weight: 700; color: #333333;">
  7. 提交成功
  8. </view>
  9. <view style="margin-top: 40rpx;font-size: 32rpx; font-weight: 400; color: #999999; width: 480rpx;">
  10. 工作人员将会在工作日内审核您的申请,请及时留意通知!
  11. </view>
  12. <view style="width: 650rpx; height: 80rpx; background: #46a6ff; text-align: center;
  13. border-radius: 40rpx;font-size: 28rpx;color: #ffffff;line-height: 80rpx;position: absolute;
  14. bottom: 20px;"
  15. @click="openLink()">
  16. 返回首页
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. components: {
  23. },
  24. data() {
  25. return {
  26. info:[],
  27. title:'互动天地',
  28. }
  29. },
  30. async mounted() {
  31. },
  32. methods: {
  33. openLink(){
  34. uni.switchTab({
  35. url: '/pages/index/index'
  36. })
  37. }
  38. }
  39. }
  40. </script>
  41. <style lang="less" scoped>
  42. .flexitem{
  43. height: 100vh;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. }
  48. </style>