You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.2 KiB

5 months ago
5 months ago
<template>
<webType1 v-if="$route.query.type==0"></webType1>
<assetsTypeTwo :pageType="$route.query.pageType" v-else-if="$route.query.type == 1" />
<assetsTypeThree :pageType="$route.query.pageType" v-else-if="$route.query.type == 2" />
<assetsTypeFour :pageType="$route.query.pageType" v-else-if="$route.query.type == 3" />
<assetsTypeFive :pageType="$route.query.pageType" v-else-if="$route.query.type == 4" />
5 months ago
</template>
5 months ago
5 months ago
<script>
// web资产
import webType1 from '@/views/components/renwuType/webType1.vue';
// 小程序资产
import assetsTypeTwo from "@/views/components/renwuType/index_v1.vue"
// 公众号资产
import assetsTypeThree from "@/views/components/renwuType/index_v2.vue"
// 电子邮件资产
import assetsTypeFour from "@/views/components/renwuType/index_v3.vue"
// 移动应用系统
import assetsTypeFive from "@/views/components/renwuType/index_v4.vue"
5 months ago
export default {
5 months ago
name: '',
components: {webType1,
assetsTypeTwo,
assetsTypeThree,
assetsTypeFour,
assetsTypeFive,},
5 months ago
data () {
5 months ago
return {
}
},
5 months ago
created () { },
mounted () { },
methods: { },
computed: {}
5 months ago
}
</script>
5 months ago
<style scoped lang='scss'>
</style>