nav.vue 2.2 KB

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