2021-07-28 18:03:19 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div>
|
2022-10-29 20:08:15 +08:00
|
|
|
|
<el-dialog :title="title" v-model="dialogVisible" :before-close="cancel" :close-on-click-modal="false"
|
|
|
|
|
|
:destroy-on-close="true" width="38%">
|
2023-07-03 21:42:04 +08:00
|
|
|
|
<el-form :model="form" ref="redisForm" :rules="rules" label-width="auto">
|
2023-03-06 16:59:57 +08:00
|
|
|
|
<el-tabs v-model="tabActiveName">
|
|
|
|
|
|
<el-tab-pane label="基础信息" name="basic">
|
|
|
|
|
|
<el-form-item prop="tagId" label="标签:" required>
|
2023-06-29 20:20:58 +08:00
|
|
|
|
<tag-select v-model="form.tagId" v-model:tag-path="form.tagPath" style="width: 100%" />
|
2023-03-06 16:59:57 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="name" label="名称:" required>
|
|
|
|
|
|
<el-input v-model.trim="form.name" placeholder="请输入redis名称" auto-complete="off"></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="mode" label="mode:" required>
|
|
|
|
|
|
<el-select style="width: 100%" v-model="form.mode" placeholder="请选择模式">
|
|
|
|
|
|
<el-option label="standalone" value="standalone"> </el-option>
|
|
|
|
|
|
<el-option label="cluster" value="cluster"> </el-option>
|
|
|
|
|
|
<el-option label="sentinel" value="sentinel"> </el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="host" label="host:" required>
|
|
|
|
|
|
<el-input v-model.trim="form.host"
|
|
|
|
|
|
placeholder="请输入host:port;sentinel模式为: mastername=sentinelhost:port,若集群或哨兵需设多个节点可使用','分割"
|
|
|
|
|
|
auto-complete="off" type="textarea"></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="password" label="密码:">
|
|
|
|
|
|
<el-input type="password" show-password v-model.trim="form.password"
|
|
|
|
|
|
placeholder="请输入密码, 修改操作可不填" autocomplete="new-password"><template
|
|
|
|
|
|
v-if="form.id && form.id != 0" #suffix>
|
|
|
|
|
|
<el-popover @hide="pwd = ''" placement="right" title="原密码" :width="200" trigger="click"
|
|
|
|
|
|
:content="pwd">
|
|
|
|
|
|
<template #reference>
|
|
|
|
|
|
<el-link @click="getPwd" :underline="false" type="primary"
|
|
|
|
|
|
class="mr5">原密码</el-link>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-popover>
|
|
|
|
|
|
</template></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="db" label="库号:" required>
|
2023-07-05 22:06:32 +08:00
|
|
|
|
<el-select @change="changeDb" :disabled="form.mode == 'cluster'" v-model="dbList" multiple
|
|
|
|
|
|
allow-create filterable placeholder="请选择可操作库号" style="width: 100%">
|
2023-03-06 16:59:57 +08:00
|
|
|
|
<el-option v-for="db in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]" :key="db"
|
|
|
|
|
|
:label="db" :value="db" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item prop="remark" label="备注:">
|
|
|
|
|
|
<el-input v-model.trim="form.remark" auto-complete="off" type="textarea"></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
|
|
<el-tab-pane label="其他配置" name="other">
|
|
|
|
|
|
<el-form-item prop="sshTunnelMachineId" label="SSH隧道:">
|
|
|
|
|
|
<ssh-tunnel-select v-model="form.sshTunnelMachineId" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
2021-07-28 18:03:19 +08:00
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<div class="dialog-footer">
|
2022-01-12 16:00:31 +08:00
|
|
|
|
<el-button @click="cancel()">取 消</el-button>
|
2022-07-18 20:36:31 +08:00
|
|
|
|
<el-button type="primary" :loading="btnLoading" @click="btnOk">确 定</el-button>
|
2021-07-28 18:03:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
|
import { toRefs, reactive, watch, ref } from 'vue';
|
2021-07-28 18:03:19 +08:00
|
|
|
|
import { redisApi } from './api';
|
|
|
|
|
|
import { ElMessage } from 'element-plus';
|
2022-07-18 20:36:31 +08:00
|
|
|
|
import { RsaEncrypt } from '@/common/rsa';
|
2022-10-26 20:49:29 +08:00
|
|
|
|
import TagSelect from '../component/TagSelect.vue';
|
2023-03-06 16:59:57 +08:00
|
|
|
|
import SshTunnelSelect from '../component/SshTunnelSelect.vue';
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
visible: {
|
|
|
|
|
|
type: Boolean,
|
2022-10-26 20:49:29 +08:00
|
|
|
|
},
|
2022-10-29 20:08:15 +08:00
|
|
|
|
redis: {
|
|
|
|
|
|
type: [Boolean, Object],
|
|
|
|
|
|
},
|
|
|
|
|
|
title: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
},
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:visible', 'val-change', 'cancel'])
|
|
|
|
|
|
|
|
|
|
|
|
const rules = {
|
2023-06-29 20:20:58 +08:00
|
|
|
|
tagId: [{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请选择标签',
|
|
|
|
|
|
trigger: ['blur', 'change'],
|
|
|
|
|
|
}],
|
|
|
|
|
|
name: [
|
|
|
|
|
|
{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请输入名称',
|
|
|
|
|
|
trigger: ['change', 'blur'],
|
|
|
|
|
|
},
|
|
|
|
|
|
],
|
2022-10-29 20:08:15 +08:00
|
|
|
|
host: [
|
|
|
|
|
|
{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请输入主机ip:port',
|
|
|
|
|
|
trigger: ['change', 'blur'],
|
2021-07-28 18:03:19 +08:00
|
|
|
|
},
|
2022-10-29 20:08:15 +08:00
|
|
|
|
],
|
|
|
|
|
|
db: [
|
|
|
|
|
|
{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请选择库号',
|
|
|
|
|
|
trigger: ['change', 'blur'],
|
2021-07-28 18:03:19 +08:00
|
|
|
|
},
|
2022-10-29 20:08:15 +08:00
|
|
|
|
],
|
|
|
|
|
|
mode: [
|
|
|
|
|
|
{
|
|
|
|
|
|
required: true,
|
|
|
|
|
|
message: '请选择模式',
|
|
|
|
|
|
trigger: ['change', 'blur'],
|
2021-07-28 18:03:19 +08:00
|
|
|
|
},
|
2022-10-29 20:08:15 +08:00
|
|
|
|
],
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const redisForm: any = ref(null);
|
|
|
|
|
|
const state = reactive({
|
|
|
|
|
|
dialogVisible: false,
|
2023-03-06 16:59:57 +08:00
|
|
|
|
tabActiveName: 'basic',
|
2022-10-29 20:08:15 +08:00
|
|
|
|
form: {
|
|
|
|
|
|
id: null,
|
|
|
|
|
|
tagId: null as any,
|
|
|
|
|
|
tagPath: null as any,
|
|
|
|
|
|
name: null,
|
|
|
|
|
|
mode: 'standalone',
|
|
|
|
|
|
host: '',
|
|
|
|
|
|
password: null,
|
|
|
|
|
|
db: '',
|
|
|
|
|
|
remark: '',
|
2023-03-06 16:59:57 +08:00
|
|
|
|
sshTunnelMachineId: -1,
|
2021-07-28 18:03:19 +08:00
|
|
|
|
},
|
2022-10-29 20:08:15 +08:00
|
|
|
|
dbList: [0],
|
|
|
|
|
|
pwd: '',
|
|
|
|
|
|
btnLoading: false,
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
});
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
const {
|
|
|
|
|
|
dialogVisible,
|
2023-03-06 16:59:57 +08:00
|
|
|
|
tabActiveName,
|
2022-10-29 20:08:15 +08:00
|
|
|
|
form,
|
|
|
|
|
|
dbList,
|
|
|
|
|
|
pwd,
|
|
|
|
|
|
btnLoading,
|
|
|
|
|
|
} = toRefs(state)
|
2022-09-29 13:14:50 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
watch(props, async (newValue: any) => {
|
|
|
|
|
|
state.dialogVisible = newValue.visible;
|
|
|
|
|
|
if (!state.dialogVisible) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
state.tabActiveName = 'basic';
|
2022-10-29 20:08:15 +08:00
|
|
|
|
if (newValue.redis) {
|
|
|
|
|
|
state.form = { ...newValue.redis };
|
|
|
|
|
|
convertDb(state.form.db);
|
|
|
|
|
|
} else {
|
2023-03-06 16:59:57 +08:00
|
|
|
|
state.form = { db: '0' } as any;
|
2022-10-29 20:08:15 +08:00
|
|
|
|
state.dbList = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2022-09-29 13:14:50 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
const convertDb = (db: string) => {
|
|
|
|
|
|
state.dbList = db.split(',').map((x) => Number.parseInt(x));
|
|
|
|
|
|
};
|
2022-07-20 23:25:52 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 改变表单中的数据库字段,方便表单错误提示。如全部删光,可提示请添加库号
|
|
|
|
|
|
*/
|
|
|
|
|
|
const changeDb = () => {
|
|
|
|
|
|
state.form.db = state.dbList.length == 0 ? '' : state.dbList.join(',');
|
|
|
|
|
|
};
|
2022-08-02 21:44:01 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
const getPwd = async () => {
|
|
|
|
|
|
state.pwd = await redisApi.getRedisPwd.request({ id: state.form.id });
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const btnOk = async () => {
|
|
|
|
|
|
redisForm.value.validate(async (valid: boolean) => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
const reqForm = { ...state.form };
|
|
|
|
|
|
if (reqForm.mode == 'sentinel' && reqForm.host.split('=').length != 2) {
|
|
|
|
|
|
ElMessage.error('sentinel模式host需为: mastername=sentinelhost:sentinelport模式');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
2023-03-06 16:59:57 +08:00
|
|
|
|
if (!state.form.sshTunnelMachineId || state.form.sshTunnelMachineId <= 0) {
|
|
|
|
|
|
reqForm.sshTunnelMachineId = -1
|
|
|
|
|
|
}
|
2022-10-29 20:08:15 +08:00
|
|
|
|
reqForm.password = await RsaEncrypt(reqForm.password);
|
|
|
|
|
|
redisApi.saveRedis.request(reqForm).then(() => {
|
|
|
|
|
|
ElMessage.success('保存成功');
|
|
|
|
|
|
emit('val-change', state.form);
|
|
|
|
|
|
state.btnLoading = true;
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
state.btnLoading = false;
|
|
|
|
|
|
}, 1000);
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
cancel();
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.error('请正确填写信息');
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
2022-10-29 20:08:15 +08:00
|
|
|
|
const cancel = () => {
|
|
|
|
|
|
emit('update:visible', false);
|
|
|
|
|
|
emit('cancel');
|
|
|
|
|
|
};
|
2021-07-28 18:03:19 +08:00
|
|
|
|
</script>
|
2023-03-06 16:59:57 +08:00
|
|
|
|
<style lang="scss"></style>
|