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
26 lines
494 B
|
1 year ago
|
<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>
|