mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-24 20:42:52 +08:00
增加百宝箱页面
This commit is contained in:
BIN
src/assets/images/goodStart/treasureDetail.png
Normal file
BIN
src/assets/images/goodStart/treasureDetail.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 395 KiB |
@@ -1,5 +1,6 @@
|
||||
// 开门红专区
|
||||
const Prefecture = () => import('@/views/ebiz/goodStart/Prefecture')
|
||||
const Treasure = () => import('@/views/ebiz/goodStart/Treasure')
|
||||
|
||||
export default [
|
||||
{
|
||||
@@ -9,5 +10,13 @@ export default [
|
||||
meta: {
|
||||
title: '开门红专区'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/goodStart/treasure',
|
||||
name: 'Treasure',
|
||||
component: Treasure,
|
||||
meta: {
|
||||
title: '百宝箱'
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
22
src/views/ebiz/goodStart/Treasure.vue
Normal file
22
src/views/ebiz/goodStart/Treasure.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div>
|
||||
<img :src="treasureDetail" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import treasureDetail from '@/assets/images/goodStart/treasureDetail.png'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
treasureDetail
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user