navs.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <view class="nav-content">
  3. <view class="nav"><view class="log" v-if="navtype" @tap="clickOrder"></view><view class="name">{{ navname }}</view><view class="nav-sech"><view class="secah">CAN</view><view class="input-nav" @tap="test">{{ placeholder }}</view></view></view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. searchText: '', //搜索内容
  11. placeholder: '请输入航班号或行李号'
  12. }
  13. },
  14. props:{
  15. navname:{
  16. type:String,
  17. default:''
  18. },
  19. navtype:{
  20. type:Boolean,
  21. default:true
  22. },
  23. navtypes:{
  24. type:Boolean,
  25. default:false
  26. }
  27. },
  28. created(option) {
  29. },
  30. onLoad(){
  31. },
  32. onUnload() {
  33. },
  34. onShow() {
  35. },
  36. mounted() {
  37. },
  38. methods: {
  39. test(){
  40. uni.redirectTo({
  41. url: "/pages/search/index"
  42. })
  43. },
  44. //搜索框输入事件
  45. inputSearch() {
  46. this.$emit('input', this.searchText)
  47. },
  48. clickOrder () {
  49. this.$emit('fall')
  50. }
  51. },
  52. }
  53. </script>
  54. <style lang="scss" scoped>
  55. .nav-content{
  56. >.nav{
  57. width: 100%;
  58. height: 2.375rem;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. padding-top: 2.25rem;
  63. color: rgb(255, 255, 255);
  64. font-family: Noto Sans SC;
  65. font-size: 1rem;
  66. position: relative;
  67. >.name{
  68. width: 4rem;
  69. padding: 0 .5rem 0 .5rem;
  70. color: rgb(255, 255, 255);
  71. font-family: Noto Sans SC;
  72. font-size: 16px;
  73. font-weight: 500;
  74. display: flex;
  75. justify-content: center;
  76. }
  77. // background: rgba(234, 241, 245,0.2);
  78. >.log{
  79. width: .375rem;
  80. height: .75rem;
  81. font-size: .75rem;
  82. position: absolute;
  83. left: 1.2rem;
  84. background: url('../../static/ico.png') no-repeat;
  85. background-size: 100% 100%;
  86. }
  87. >.nav-sech{
  88. width: 15.5625rem;
  89. height: 1.875rem;
  90. display: flex;
  91. align-items: center;
  92. background: rgba(234, 241, 245,0.2);
  93. border-radius:4px;
  94. .secah{
  95. width: 3.75rem;
  96. height: 80%;
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. color: rgb(255, 255, 255);
  101. font-family: Noto Sans SC;
  102. font-size: 14px;
  103. font-weight: 400;
  104. border-right: .0625rem solid rgb(255, 255, 255);
  105. }
  106. .my-input-placeholder{
  107. color: rgb(170, 195, 207);
  108. }
  109. .input-nav{
  110. padding-left: .625rem;
  111. color: rgb(170, 195, 207);
  112. }
  113. }
  114. >.up{
  115. position: absolute;
  116. right: 1.5rem;
  117. color: rgb(255, 255, 255);
  118. font-family: Noto Sans SC;
  119. font-size: .875rem;
  120. font-weight: 500;
  121. }
  122. }
  123. }
  124. </style>