pull/1414/merge
GRL-bxy 2 years ago committed by GitHub
commit 4b24698ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

Binary file not shown.

@ -107,5 +107,8 @@
"browserslist": [ "browserslist": [
"> 1%", "> 1%",
"last 2 versions" "last 2 versions"
] ],
"rules": {
"no-unused-vars": "off"
}
} }

@ -170,6 +170,7 @@
:model="temp" :model="temp"
:label-width="$langMatch({ zh: '100px', en: '150px' })" :label-width="$langMatch({ zh: '100px', en: '150px' })"
> >
// 线
<template v-if="isEdit"> <template v-if="isEdit">
<el-form-item :label="$t('tenantManage.tenant')" prop="tenantId"> <el-form-item :label="$t('tenantManage.tenant')" prop="tenantId">
<el-select <el-select
@ -496,6 +497,7 @@ export default {
}, },
temp: { temp: {
id: undefined, id: undefined,
queueType: 9,
tenantId: '', tenantId: '',
itemId: '', itemId: '',
rejectedType: null, rejectedType: null,
@ -744,6 +746,7 @@ export default {
} else if (value === 5) { } else if (value === 5) {
this.temp.capacity = 2147483647; this.temp.capacity = 2147483647;
} }
this.$forceUpdate();
}, },
tenantSelectList() { tenantSelectList() {

@ -128,6 +128,7 @@ export default {
if (hostname === 'console.hippo4j.cn') { if (hostname === 'console.hippo4j.cn') {
this.loginForm.username = 'hippo4j'; this.loginForm.username = 'hippo4j';
this.loginForm.password = 'hippo4j'; this.loginForm.password = 'hippo4j';
this.rememberMe = 1;
} }
console.log(hostname); console.log(hostname);
}, },

@ -1,4 +1,5 @@
'use strict'; 'use strict';
const { debug } = require('console');
const path = require('path'); const path = require('path');
const defaultSettings = require('./src/settings.js'); const defaultSettings = require('./src/settings.js');
@ -35,9 +36,10 @@ module.exports = {
}, },
proxy: { proxy: {
'/hippo4j/v1/cs': { '/hippo4j/v1/cs': {
target: `http://127.0.0.1:6691/hippo4j/v1/cs`, target: `http://console.hippo4j.cn/hippo4j/v1/cs/`,
changOrigin: true, changOrigin: true,
secure: false, secure: false,
logLevel: 'debug',
pathRewrite: { pathRewrite: {
'^/hippo4j/v1/cs': '', '^/hippo4j/v1/cs': '',
}, },

Loading…
Cancel
Save