zhengyiming
2025-02-20 314dcacdeecec4dff192b78bad5124b1b29a453d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
  <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',
});
 
// type Props = {};
 
// const props = withDefaults(defineProps<Props>(), {});
</script>