Browse Source

添加活动

lex 2 years ago
parent
commit
aeaf1f918a

+ 8 - 0
src/router/routes-common.ts

@@ -212,6 +212,14 @@ export const router = [
     meta: {
       title: '酷乐秀平台服务协议'
     }
+  },
+  {
+    path: '/awardActivity',
+    name: 'awardActivity',
+    component: () => import('@/views/award-activity/index'),
+    meta: {
+      title: '活动奖品'
+    }
   }
 ]
 

+ 0 - 0
src/views/award-activity/index.module.less


+ 14 - 0
src/views/award-activity/index.tsx

@@ -0,0 +1,14 @@
+import { CellGroup, Cell } from 'vant'
+import { defineComponent } from 'vue'
+import styles from './index.module.less'
+
+export default defineComponent({
+  name: 'award-activity',
+  render() {
+    return <div>
+      <CellGroup inset>
+        <Cell />
+      </CellGroup>
+    </div>
+  }
+})