order-search.vue 477 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="order-search"> <cm-search v-model="keyword"></cm-search> </view>
  3. </template>
  4. <script>
  5. import CmSearch from '@/components/cm-module/cm-search/cm-search.vue'
  6. export default {
  7. components: {
  8. CmSearch
  9. },
  10. data() {
  11. return {
  12. keyword: ''
  13. }
  14. },
  15. methods: {
  16. handleSearch() {}
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .order-search {
  22. min-height: 100vh;
  23. background: #f7f7f7;
  24. }
  25. </style>