12345678910111213141516171819202122232425262728293031323334 |
- <template><page-meta :root-font-size="fontSize+'px'"></page-meta>
- <home-base :show="false"><view class="div category">
- <home-common-search></home-common-search>
- <goodsclass-body></goodsclass-body>
- </view></home-base>
- </template>
- <script>
- import {getFontSize} from '@/util/common'
- import HomeBase from '../HomeBase'
- import HomeCommonSearch from '../common/HomeCommonSearch'
- import GoodsclassBody from './GoodsclassBody'
- export default {
- name:'HomeGoodsclass',
- components:{
- HomeBase,
- HomeCommonSearch,
- GoodsclassBody
- },
- computed:{
- fontSize(){
- return getFontSize()
- },
- }
- }
- </script>
- <style scoped lang='scss'>
- </style>
|