This commit is contained in:
weichengwu 2025-11-23 12:20:08 +08:00
parent 40a0b446c7
commit fbd0649066
4 changed files with 20 additions and 1 deletions

BIN
public/entry/rule.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 KiB

View File

@ -32,7 +32,7 @@ const goRedeem = () => {
} }
const goRule = () => { const goRule = () => {
window.location.href = 'https://fucai-redeem.smartjinrui.cn/#/Rule' window.location.href = '/rule'
} }
</script> </script>

11
src/pages/rule/index.vue Normal file
View File

@ -0,0 +1,11 @@
<template>
<div class="rule">
<img class="rule-img" src="/entry/rule.jpg" alt="" />
</div>
</template>
<style scoped>
.rule-img{
width: 100vw;
}
</style>

View File

@ -18,6 +18,14 @@ const routes: Array<RouteRecordRaw> = [
meta: { meta: {
title: '宁福您彩 新婚送福' title: '宁福您彩 新婚送福'
} }
},
{
path: '/rule',
name: 'Rule',
component: () => import('../pages/rule/index.vue'),
meta: {
title: '宁福您彩 活动规则'
}
} }
] ]