navs.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. color: rgb(255, 255, 255);
  70. font-family: Noto Sans SC;
  71. font-size: 16px;
  72. font-weight: 500;
  73. display: flex;
  74. justify-content: center;
  75. }
  76. // background: rgba(234, 241, 245,0.2);
  77. >.log{
  78. width: .375rem;
  79. height: .75rem;
  80. font-size: .75rem;
  81. position: absolute;
  82. left: 1.5rem;
  83. background: url('../../static/ico.png') no-repeat;
  84. background-size: 100% 100%;
  85. }
  86. >.nav-sech{
  87. width: 15.5625rem;
  88. height: 1.875rem;
  89. display: flex;
  90. align-items: center;
  91. background: rgba(234, 241, 245,0.2);
  92. border-radius:4px;
  93. .secah{
  94. width: 3.75rem;
  95. height: 80%;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. color: rgb(255, 255, 255);
  100. font-family: Noto Sans SC;
  101. font-size: 14px;
  102. font-weight: 400;
  103. border-right: .0625rem solid rgb(255, 255, 255);
  104. }
  105. .my-input-placeholder{
  106. color: rgb(170, 195, 207);
  107. }
  108. .input-nav{
  109. padding-left: .625rem;
  110. color: rgb(170, 195, 207);
  111. }
  112. }
  113. >.up{
  114. position: absolute;
  115. right: 1.5rem;
  116. color: rgb(255, 255, 255);
  117. font-family: Noto Sans SC;
  118. font-size: .875rem;
  119. font-weight: 500;
  120. }
  121. }
  122. }
  123. </style>