耀实惠小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.0 KiB

  1. <template>
  2. <view class="pages">
  3. <image class="imag" :src="IMG_URL +'prescription_success.png'" mode=""></image>
  4. <text class="info">提交成功预约审核中</text>
  5. <button class="btn" @click="toHome">我知道了</button>
  6. </view>
  7. </template>
  8. <script>
  9. import { IMG_URL } from '@/env.js'
  10. export default {
  11. data() {
  12. return {
  13. IMG_URL
  14. }
  15. },
  16. onUnload() {
  17. // 不够是做什么都跳 可能会要可能不要 我的-抓拍药方
  18. // uni.redirectTo({
  19. // url:"./../index"
  20. // })
  21. },
  22. methods: {
  23. toHome() {
  24. uni.redirectTo({
  25. url:"./../index"
  26. })
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .pages{
  33. display: flex;
  34. flex-direction: column;
  35. .imag{
  36. width: 425rpx;
  37. height: 358rpx;
  38. margin-top: 155rpx;
  39. margin-left: 162rpx;
  40. }
  41. .info{
  42. font-size: 36rpx;
  43. font-weight: bold;
  44. color: #01AEEA;
  45. text-align: center;
  46. }
  47. .btn{
  48. width: 569rpx;
  49. height: 94rpx;
  50. margin-top: 185rpx;
  51. border-radius: 46rpx;
  52. background-color: #fff;
  53. border: 3rpx solid #01AEEA;
  54. color: #01AEEA;
  55. }
  56. }
  57. </style>