add 前端增加 任务调度中心页面 与环境及nginx配置

This commit is contained in:
疯狂的狮子li
2021-10-20 15:25:14 +08:00
parent 809774d87c
commit 83ce927d16
5 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<template>
<i-frame :src="url" />
</template>
<script>
import iFrame from "@/components/iFrame/index";
export default {
name: "XxlJob",
components: { iFrame },
data() {
return {
url: process.env.VUE_APP_XXL_JOB_ADMIN
};
},
};
</script>