Merge pull request !16 from zongyangleo/dev_reafactor_20221031
This commit is contained in:
Coder慌
2022-10-31 14:30:16 +00:00
committed by Gitee

View File

@@ -17,7 +17,7 @@
<el-option v-for="item in dbs" :key="item.id" :label="`${item.name} [${item.tagPath}]`" <el-option v-for="item in dbs" :key="item.id" :label="`${item.name} [${item.tagPath}]`"
:value="item.id"> :value="item.id">
<span style="float: left">{{ `${item.name} [${item.tagPath}]` }}</span> <span style="float: left">{{ `${item.name} [${item.tagPath}]` }}</span>
<span style="float: rignt; color: #8492a6; margin-left: 10px; font-size: 13px">{{ <span style="float: right; color: #8492a6; margin-left: 10px; font-size: 13px">{{
`${item.host}:${item.port} ${item.type}` `${item.host}:${item.port} ${item.type}`
}}</span> }}</span>
</el-option> </el-option>
@@ -926,7 +926,7 @@ const setCodermirrorValue = (value: string) => {
}; };
const getCodermirrorValue = () => { const getCodermirrorValue = () => {
codemirror.getValue(); return codemirror.getValue();
}; };
/** /**