@@ -85,6 +85,13 @@
"title": "我的积分",
"code": "bottom_points_account",
"component": "views/footer/points/account/index.vue"
+ },
+ {
+ "authType": 2,
+ "sort": 2,
+ "title": "积分明细",
+ "code": "bottom_points_details",
+ "component": "views/footer/points/details/index.vue"
}
]
},
@@ -293,6 +293,13 @@
@@ -0,0 +1,9 @@
+<!-- 积分信息-积分明细 -->
+<template>
+ <app-table>
+ </app-table>
+</template>
+
+<script lang="ts" setup>
+import AppTable from '@pc/components/base/table/index.vue'
+</script>