|
@@ -1,13 +1,11 @@
|
|
|
<template>
|
|
|
- <view class="order-search">
|
|
|
- <cm-search v-model="keyword"></cm-search>
|
|
|
- </view>
|
|
|
+ <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'
|
|
|
+import CmSearch from '@/components/cm-module/cm-search/cm-search.vue'
|
|
|
export default {
|
|
|
- components:{
|
|
|
+ components: {
|
|
|
CmSearch
|
|
|
},
|
|
|
data() {
|
|
@@ -15,22 +13,15 @@ export default {
|
|
|
keyword: ''
|
|
|
}
|
|
|
},
|
|
|
- watch:{
|
|
|
- keyword(nVal){
|
|
|
- console.log(nVal)
|
|
|
- }
|
|
|
- },
|
|
|
- methods:{
|
|
|
- handleSearch(){
|
|
|
-
|
|
|
- }
|
|
|
+ methods: {
|
|
|
+ handleSearch() {}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-.order-search{
|
|
|
+.order-search {
|
|
|
min-height: 100vh;
|
|
|
- background: #F7F7F7;
|
|
|
-}
|
|
|
+ background: #f7f7f7;
|
|
|
+}
|
|
|
</style>
|