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": [
"> 1%",
"last 2 versions"
]
],
"rules": {
"no-unused-vars": "off"
}
}

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

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

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

Loading…
Cancel
Save