123456789101112131415161718192021222324252627 |
- <template>
- <view class="order-search"> <cm-search v-model="keyword"></cm-search> </view>
- </template>
- <script>
- import CmSearch from '@/components/cm-module/cm-search/cm-search.vue'
- export default {
- components: {
- CmSearch
- },
- data() {
- return {
- keyword: ''
- }
- },
- methods: {
- handleSearch() {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .order-search {
- min-height: 100vh;
- background: #f7f7f7;
- }
- </style>
|