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.
|
|
|
|
|
|
|
<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" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<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"
|
|
|
|
export default {
|
|
|
|
name: '',
|
|
|
|
components: {webType1,
|
|
|
|
assetsTypeTwo,
|
|
|
|
assetsTypeThree,
|
|
|
|
assetsTypeFour,
|
|
|
|
assetsTypeFive,},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created () { },
|
|
|
|
mounted () { },
|
|
|
|
methods: { },
|
|
|
|
computed: {}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style scoped lang='scss'>
|
|
|
|
|
|
|
|
</style>
|