no message

main
暴炳林 2024-05-22 17:13:13 +08:00
parent 75f1982ac9
commit 2e0ce2853d
2 changed files with 5 additions and 5 deletions

View File

@ -2,6 +2,6 @@ ENV = 'production'
# 如果使用 Nginx 代理后端接口,那么此处需要改为 '/',文件查看 Docker 部署篇Nginx 配置
# 接口地址,注意协议,如果你没有配置 ssl需要将 https 改为 http
VUE_APP_BASE_API = 'http://115.159.67.99:8010'
VUE_APP_BASE_API = '/'
# 如果接口是 http 形式, wss 需要改为 ws
VUE_APP_WS_API = 'wss://115.159.67.99:8010'
VUE_APP_WS_API = '/'

View File

@ -27,9 +27,6 @@
<el-form-item label="任务名称" prop="jobName">
<el-input v-model="form.jobName" style="width: 220px;" />
</el-form-item>
<el-form-item label="任务描述" prop="description">
<el-input v-model="form.description" style="width: 220px;" />
</el-form-item>
<el-form-item label="Bean名称" prop="beanName">
<el-input v-model="form.beanName" style="width: 220px;" />
</el-form-item>
@ -60,6 +57,9 @@
<el-radio :label="true">暂停</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="任务描述" prop="description">
<el-input v-model="form.description" style="width: 556px;" rows="4" type="textarea"/>
</el-form-item>
<el-form-item label="参数内容">
<el-input v-model="form.params" style="width: 556px;" rows="4" type="textarea" />
</el-form-item>