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.
 
 
 
 

26 lines
494 B

<template>
<view class="page-css">
<subForm ref="subform" :type="pageType" :pageId="pageId"></subForm>
</view>
</template>
<script>
import subForm from "./components/subForm.vue";
export default {
components: {
subForm,
},
data() {
return {
pageType:''
}
},
onLoad(options) {
this.pageType = options.type
this.pageId = options.id
},
}
</script>
<style lang="scss" scoped>
.page-css {}
</style>