소스 검색

upload

release
HolyKnightIX 6 달 전
부모
커밋
34cb56f870
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      example/page/index.vue

+ 13
- 0
example/page/index.vue 파일 보기

@@ -397,6 +397,19 @@ export default {
if (tenantId) this.tenantId = tenantId
this.getData()
},
beforeCreate() {
const tenantId = this.$route.query.tenantId
const templateId = this.$route.query.templateId
if (templateId) {
this.$router.push({
path: "/designer",
query: {
tenantId,
templateId
}
})
}
}
}
</script>
<style lang="scss" scoped>


불러오는 중...
취소
저장