浏览代码

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>


正在加载...
取消
保存