Commit b111c554 authored by 华国豪's avatar 华国豪 🙄

新增抽奖活动

parent 94133101
<style scoped>
</style>
<template>
<el-row class="page_ActivityCenter">
<el-col :span="20" :offset="2">
<p @click="goUrl('TurnaroundDraw')">抽奖</p>
</el-col>
</el-row>
</template>
<script>
export default {
data () {
return {
}
},
mounted () {
},
methods: {
goUrl: function (path) {
this.$router.push({name: path});
}
}
}
</script>
This diff is collapsed.
......@@ -195,7 +195,24 @@ export default new Router({
title: "机票订单"
}
},
{
path: "/TurnaroundDraw",
name: "TurnaroundDraw",
component: resolve =>
require(["@/components/ActivityCenter/TurnaroundDraw"], resolve),
meta: {
title: "转盘抽奖"
}
},
{
path: "/ActivityCenter",
name: "ActivityCenter",
component: resolve =>
require(["@/components/ActivityCenter/ActivityCenter"], resolve),
meta: {
title: "活动中心"
}
},
]
},
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment