bug fix
This commit is contained in:
@ -383,22 +383,19 @@
|
||||
<el-form-item label="初始化连接数" prop="initCount">
|
||||
<el-input-number
|
||||
v-model="dataSourceForm.initCount"
|
||||
:max="100"
|
||||
:min="1"
|
||||
:min="0"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最小连接数" prop="minCount">
|
||||
<el-input-number
|
||||
v-model="dataSourceForm.minCount"
|
||||
:max="100"
|
||||
:min="1"
|
||||
:min="0"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="最大连接数" prop="maxCount">
|
||||
<el-input-number
|
||||
v-model="dataSourceForm.maxCount"
|
||||
:max="100"
|
||||
:min="1"
|
||||
:min="0"
|
||||
/>
|
||||
</el-form-item>
|
||||
</div>
|
||||
@ -504,11 +501,7 @@ import {
|
||||
} from "@/api/tenant/tenant";
|
||||
import {getCurrentInstance, reactive, ref, toRefs} from "vue";
|
||||
import {ElMessage, ElMessageBox} from "element-plus";
|
||||
import {
|
||||
database_type_dict,
|
||||
tenantModeDict,
|
||||
tenantStatusDict,
|
||||
} from "@/constant/dict";
|
||||
import {database_type_dict, tenantModeDict, tenantStatusDict,} from "@/constant/dict";
|
||||
import DictTag from "@/components/DictTag/index.vue";
|
||||
import {cloneDeep} from "lodash-es";
|
||||
import {ArrowRight} from "@element-plus/icons-vue";
|
||||
@ -864,7 +857,8 @@ function handleDelete(row) {
|
||||
getList();
|
||||
proxy.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
.catch(() => {
|
||||
});
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
|
Reference in New Issue
Block a user