navs.vue 2.5 KB

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