index.vue 507 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="content_search u-border-bottom">
  3. <view @tap="clickInput">
  4. <u-search placeholder="搜索" shape="square" :show-action="false" :bg-color="'#ffffff'" :disabled="true"></u-search>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. };
  13. },
  14. methods: {
  15. clickInput() {
  16. this.$u.route({
  17. url:"pages/search/search",
  18. })
  19. }
  20. }
  21. };
  22. </script>
  23. <style lang="scss" scoped>
  24. .content_search {
  25. padding: 16rpx;
  26. background-color: #f8f8f8;
  27. }
  28. </style>