index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <view class="app-content">
  3. <view class="nav">
  4. <liu-search @fall="fall" :hotList="hotList" :historyList="historyList" @input="input" @change="change" @changes = 'changes'></liu-search>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import Nav from '../../components/header/nav.vue'
  10. export default {
  11. data() {
  12. return {
  13. navname: '我的记录',
  14. hotList: ['HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410'],//热门搜索
  15. historyList: ['HU7410','HU7410','HU7410','HU7410']
  16. }
  17. },
  18. created(option) {
  19. },
  20. onLoad(){
  21. },
  22. onUnload() {
  23. },
  24. onShow() {
  25. },
  26. mounted() {
  27. },
  28. components: {
  29. Nav
  30. },
  31. methods: {
  32. fall () {
  33. uni.switchTab({
  34. url: "/pages/index/index"
  35. })
  36. },
  37. changes () {
  38. uni.redirectTo({
  39. url: "/pages/myrecords/index"
  40. })
  41. },
  42. //搜索内容
  43. change(e) {
  44. console.log('搜索内容:' + e)
  45. uni.redirectTo({
  46. url: "/pages/flightdetails/index"
  47. })
  48. },
  49. //input事件
  50. input(e){
  51. console.log('搜索框输入的内容:' + e)
  52. },
  53. },
  54. }
  55. </script>
  56. <style lang="scss" scoped>
  57. .app-content{
  58. >.nav{
  59. width: 100%;
  60. position: relative;
  61. display: flex;
  62. margin-top: 1.875rem;
  63. >.log{
  64. width: .375rem;
  65. height: .75rem;
  66. font-size: .75rem;
  67. position: absolute;
  68. left: 1.5rem;
  69. background: url('../../static/ico@1x.png') no-repeat;
  70. background-size: 100% 100%;
  71. }
  72. }
  73. }
  74. </style>