li.shaoyi há 3 meses atrás
pai
commit
1e918777de

+ 7 - 0
oem/snhl/config/router.json

@@ -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"
                     }
                 ]
             },

+ 7 - 0
public/config/router.json

@@ -293,6 +293,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"
                     }
                 ]
             },

+ 9 - 0
src/packages/pc/views/footer/points/details/index.vue

@@ -0,0 +1,9 @@
+<!-- 积分信息-积分明细 -->
+<template>
+    <app-table>
+    </app-table>
+</template>
+
+<script lang="ts" setup>
+import AppTable from '@pc/components/base/table/index.vue'
+</script>