引入另一个任务调度框架:EasyRetry
This commit is contained in:
parent
403372207c
commit
dd072c51cb
@ -16,6 +16,9 @@ VITE_APP_MONITRO_ADMIN = 'http://localhost:9090/admin/applications'
|
||||
# powerjob 控制台地址
|
||||
VITE_APP_POWERJOB_ADMIN = 'http://localhost:7700/'
|
||||
|
||||
# easyretry 控制台地址
|
||||
VITE_APP_EASYRETRY_ADMIN = 'http://localhost:8800/easy-retry'
|
||||
|
||||
VITE_APP_PORT = 80
|
||||
|
||||
# 接口加密功能开关(如需关闭 后端也必须对应关闭)
|
||||
|
@ -13,6 +13,9 @@ VITE_APP_MONITRO_ADMIN = '/admin/applications'
|
||||
# powerjob 控制台地址
|
||||
VITE_APP_POWERJOB_ADMIN = '/powerjob'
|
||||
|
||||
# easyretry 控制台地址
|
||||
VITE_APP_EASYRETRY_ADMIN = '/easy-retry'
|
||||
|
||||
# 生产环境
|
||||
VITE_APP_BASE_API = '/prod-api'
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 439 KiB |
@ -73,7 +73,7 @@ const userStore = useUserStore();
|
||||
const router = useRouter();
|
||||
|
||||
const loginForm = ref<LoginData>({
|
||||
tenantId: 0,
|
||||
tenantId: 1,
|
||||
username: 'superadmin',
|
||||
password: 'admin123',
|
||||
rememberMe: false,
|
||||
|
9
src/views/monitor/easyretry/index.vue
Normal file
9
src/views/monitor/easyretry/index.vue
Normal file
@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<div>
|
||||
<i-frame v-model:src="url"></i-frame>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const url = ref(import.meta.env.VITE_APP_EASYRETRY_ADMIN);
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user