search.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view>
  3. <view class="search">
  4. <u-icon name="arrow-left"></u-icon>
  5. <u-search placeholder="  输入关键字搜索课程" action-text="查询"></u-search>
  6. </view>
  7. <view class="search-history">
  8. <view class="head">
  9. <view class="title">
  10. 搜索历史
  11. </view>
  12. <view class="clear">
  13. 清空历史
  14. </view>
  15. </view>
  16. <view class="content">
  17. <view class="item">书法</view>
  18. <view class="item">舞蹈</view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. }
  28. },
  29. methods: {
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. page{
  35. background-color: #fff;
  36. }
  37. .search{
  38. background-color: #fff;
  39. padding: 16rpx 24rpx;
  40. display: flex;
  41. ::v-deep.u-icon--right{
  42. margin-right: 11px;
  43. }
  44. ::v-deep.u-action{
  45. width: 17.1%;
  46. text-align: center;
  47. line-height: 28px;
  48. border-radius: 50px;
  49. background-color: rgba(13, 186, 199, 1);
  50. color: rgba(255, 255, 255, 1);
  51. }
  52. ::v-deep.u-content{
  53. background-color: rgba(240, 244, 250, 1) !important;
  54. }
  55. ::v-deep.u-input{
  56. background-color: rgba(240, 244, 250, 1) !important;
  57. }
  58. }
  59. .search-history{
  60. margin-top: 20px;
  61. padding: 0 18px;
  62. .head{
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. .title{
  67. color: #101010;
  68. }
  69. .clear{
  70. color: rgba(169, 169, 169, 1);
  71. font-size: 12px;
  72. }
  73. }
  74. .content{
  75. display: flex;
  76. margin-top: 9px;
  77. .item{
  78. width: 150rpx;
  79. line-height: 66rpx;
  80. border-radius: 10px;
  81. background-color: rgba(239, 240, 245, 1);
  82. color: rgba(88, 88, 88, 1);
  83. font-size: 12px;
  84. text-align: center;
  85. margin-right: 26rpx;
  86. }
  87. }
  88. }
  89. </style>