index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <view class="app-content">
  3. <!-- <view class="header"><liu-search :hotList="hotList" @input="input" @change="change"></liu-search><view class="up"></view></view> -->
  4. <liu-search :hotList="hotList" :historyList="historyList" @input="input" @change="change" @changes = 'changes'></liu-search>
  5. </view>
  6. </template>
  7. <script>
  8. import Nav from '../../components/header/nav.vue'
  9. export default {
  10. data() {
  11. return {
  12. navname: '我的记录',
  13. hotList: ['HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410', 'HU7410'],//热门搜索
  14. historyList: ['HU7410','HU7410','HU7410','HU7410']
  15. }
  16. },
  17. created(option) {
  18. },
  19. onLoad(){
  20. },
  21. onUnload() {
  22. },
  23. onShow() {
  24. },
  25. mounted() {
  26. },
  27. components: {
  28. Nav
  29. },
  30. methods: {
  31. changes () {
  32. uni.redirectTo({
  33. url: "/pages/myrecords/index"
  34. })
  35. },
  36. //搜索内容
  37. change(e) {
  38. console.log('搜索内容:' + e)
  39. },
  40. //input事件
  41. input(e){
  42. console.log('搜索框输入的内容:' + e)
  43. },
  44. },
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. .app-content{
  49. >.header{
  50. width: 100%;
  51. height: 4.375rem;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. // background: rgba(49,85,99,1);
  56. color: rgb(16, 17, 22);
  57. font-family: Noto Sans SC;
  58. font-size: 1rem;
  59. position: relative;
  60. >.log{
  61. width: .375rem;
  62. height: .75rem;
  63. font-size: .75rem;
  64. position: absolute;
  65. left: 1.5rem;
  66. background: url('../../static/ico@1x.png') no-repeat;
  67. background-size: 100% 100%;
  68. }
  69. >.up{
  70. width: .8456rem;
  71. height: .8456rem;
  72. position: absolute;
  73. right: 1.5rem;
  74. background: url('../../static/search.png') no-repeat;
  75. background-size: 100% 100%;
  76. // color: rgb(37, 121, 160);
  77. // font-family: Noto Sans SC;
  78. // font-size: .875rem;
  79. // font-weight: 500;
  80. }
  81. }
  82. >.nav{
  83. height: 2rem;
  84. display: flex;
  85. align-items: center;
  86. padding: 0 .75rem 0 .75rem;
  87. >.nav_list{
  88. margin: 0 .75rem 0 .75rem;
  89. color: rgb(16, 17, 22);
  90. font-family: Noto Sans SC;
  91. font-size: 14px;
  92. height: 100%;
  93. }
  94. >.nav_lists{
  95. margin: 0 .75rem 0 .75rem;
  96. color: rgb(37, 121, 160);
  97. font-family: Noto Sans SC;
  98. font-size: 14px;
  99. font-size: 14px;
  100. height: 100%;
  101. border-bottom: 2px solid rgb(37, 121, 160);
  102. }
  103. }
  104. >.content{
  105. margin-left: 1.5rem;
  106. >.list{
  107. height: 3.375rem;
  108. display: flex;
  109. align-items: center;
  110. border-bottom: 1px solid rgb(238, 238, 238);
  111. position: relative;
  112. color: rgb(0, 0, 0);
  113. font-family: Noto Sans SC;
  114. font-size: 13px;
  115. font-weight: 400;
  116. >p{
  117. color: rgb(0, 0, 0);
  118. font-family: Noto Sans SC;
  119. font-size: 13px;
  120. font-weight: 400;
  121. margin-right: 2.1875rem;
  122. }
  123. >.listup{
  124. width: .25rem;
  125. height: .5rem;
  126. background: url('../../static/icos.png') no-repeat;
  127. background-size: 100% 100%;
  128. position: absolute;
  129. right: 1.5rem;
  130. }
  131. }
  132. >.picturearea{
  133. margin-top: 1.875rem;
  134. >.name{
  135. color: rgb(0, 0, 0);
  136. font-family: Noto Sans SC;
  137. font-size: .8125rem;
  138. font-weight: 500;
  139. }
  140. >.content_list{
  141. width: 100%;
  142. display: flex;
  143. margin-top: 1.25rem;
  144. >.mg{
  145. width: 5.5rem;
  146. height: 5.5rem;
  147. background: rgb(197, 207, 211);
  148. display: flex;
  149. align-items: center;
  150. justify-content: center;
  151. margin-right: .625rem;
  152. >.mg_lg{
  153. width: 1.75rem;
  154. height: 1.75rem;
  155. background: url('../../static/shi.png') no-repeat;
  156. background-size: 100% 100%;
  157. }
  158. }
  159. }
  160. }
  161. }
  162. }
  163. </style>