flowOrder.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view class="flowOrder">
  3. <!-- #ifdef H5 -->
  4. <u-navbar back-text=" " :custom-back='goBack' title="订单查询" :border-bottom="false" :background="{backgroundColor: '#d52e4c'}" back-icon-color="#fff" title-color="#fff"></u-navbar>
  5. <!-- #endif -->
  6. <u-toast ref="uToast" />
  7. <image class="sou" src="../../static/img/image40.55b8540ef37ab05a6581.png" mode=""></image>
  8. <u-input v-model="phone" height="100" placeholder-style="font-size:34rpx;" :clearable="false"
  9. placeholder="请输入您下单时联系人手机号" />
  10. <view class="btn" @tap="flowOrderList()">
  11. 查询
  12. </view>
  13. <image class="bottom" :style="{'top':top+'px'}" src="../../static/img/image39.aa54921789e70cf0022c.png" mode=""></image>
  14. </view>
  15. </template>
  16. <script>
  17. import {
  18. fail
  19. } from 'assert'
  20. export default {
  21. data() {
  22. return {
  23. phone: '',
  24. top:'',
  25. chanId:''
  26. }
  27. },
  28. onLoad(option){
  29. if(option.chanId){
  30. uni.setStorageSync('chanId', option.chanId);
  31. this.chanId=option.chanId
  32. }else{
  33. uni.removeStorageSync('chanId');
  34. }
  35. },
  36. onReady() {
  37. this.top=uni.getSystemInfoSync().windowHeight-240
  38. },
  39. methods: {
  40. goBack(){
  41. if(getCurrentPages().length==1){
  42. return
  43. }else{
  44. uni.redirectTo({
  45. url:'/pages/flow/flow?chanId='+this.chanId
  46. })
  47. }
  48. },
  49. // 号码详情
  50. flowOrderList() {
  51. uni.navigateTo({
  52. url: '/pages/flowOrderList/flowOrderList?phone=' + this.phone,
  53. })
  54. },
  55. }
  56. }
  57. </script>
  58. <style lang="scss">
  59. page {
  60. height: 100%;
  61. }
  62. .flowOrder {
  63. /* #ifndef MP-KUAISHOU */
  64. height: 100%;
  65. /* #endif */
  66. /* #ifdef MP-KUAISHOU */
  67. height: 100vh;
  68. /* #endif */
  69. background-color: #cae5ff;
  70. text-align: center;
  71. .sou {
  72. width: 380rpx;
  73. height: 80rpx;
  74. margin-top: 120rpx;
  75. }
  76. .u-input {
  77. width: 690rpx;
  78. margin: 40rpx auto;
  79. margin-top: 90rpx;
  80. background-color: #fff;
  81. border-radius: 30rpx;
  82. box-sizing: border-box;
  83. padding-left: 30rpx !important;
  84. }
  85. .btn {
  86. width: 690rpx;
  87. height: 90rpx;
  88. line-height: 90rpx;
  89. text-align: center;
  90. font-size: 32rpx;
  91. margin: 90rpx auto 0;
  92. color: #fff;
  93. background-color: #4891ef;
  94. border-radius: 30rpx;
  95. }
  96. .bottom {
  97. position: absolute;
  98. left: 0;
  99. width: 100%;
  100. }
  101. }
  102. </style>