| | |
| | | <template> |
| | | <div>RechargeGrid</div> |
| | | <MainCell title="生活缴费"> |
| | | <Grid square :gutter="20" :column-num="2"> |
| | | <GridItem class="publish-circle-friend-file-grid-item" text="话费"> |
| | | <Dongdong /> |
| | | </GridItem> |
| | | <GridItem class="publish-circle-friend-file-grid-item" text="电费"> |
| | | <Dongdong /> |
| | | </GridItem> |
| | | </Grid> |
| | | </MainCell> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import MainCell from '../../components/Layout/MainCell.vue'; |
| | | // import Grid from '../../components/Grid/Grid.vue'; |
| | | import { Grid, GridItem } from '@nutui/nutui-taro'; |
| | | import { Dongdong } from '@nutui/icons-vue-taro'; |
| | | |
| | | defineOptions({ |
| | | name: 'RechargeGrid', |
| | | }); |
| | |
| | | |
| | | // const props = withDefaults(defineProps<Props>(), {}); |
| | | </script> |
| | | |
| | | <style lang="scss"> |
| | | @import '@/styles/common.scss'; |
| | | </style> |