You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
225 lines
5.5 KiB
225 lines
5.5 KiB
<template> |
|
<avue-crud :option="option" |
|
:data="data" |
|
:page.sync="page" |
|
:before-open="beforeOpen" |
|
v-model="form" |
|
ref="crud" |
|
@row-update="rowUpdate" |
|
@row-save="rowSave" |
|
@row-del="rowDel" |
|
@refresh-change="refreshChange" |
|
@on-load="onLoad"> |
|
<template #menu-form> |
|
<el-button type="primary" |
|
size="small" |
|
@click="handleTest()">测试连接</el-button> |
|
</template> |
|
<template #menu="{row,size}"> |
|
<el-button icon="el-icon-check" |
|
type="primary" |
|
:size="size" |
|
text |
|
@click="handleTest(row)">测试连接</el-button> |
|
</template> |
|
</avue-crud> |
|
</template> |
|
|
|
<script> |
|
import { getList, getDetail, add, update, remove, dbTest } from "@/api/db"; |
|
export default { |
|
data () { |
|
return { |
|
form: {}, |
|
query: {}, |
|
page: { |
|
pageSize: 10, |
|
currentPage: 1, |
|
total: 0 |
|
}, |
|
option: { |
|
index: true, |
|
copyBtn: true, |
|
labelWidth: 110, |
|
column: [ |
|
{ |
|
label: "名称", |
|
prop: "name", |
|
width: 120, |
|
rules: [{ |
|
required: true, |
|
message: "请输入数据源名称", |
|
trigger: "blur" |
|
}] |
|
}, |
|
{ |
|
label: "驱动类", |
|
prop: "driverClass", |
|
type: 'select', |
|
dicData: [ |
|
{ |
|
label: 'com.mysql.cj.jdbc.Driver', |
|
value: 'com.mysql.cj.jdbc.Driver', |
|
}, { |
|
label: 'org.postgresql.Driver', |
|
value: 'org.postgresql.Driver', |
|
}, { |
|
label: 'oracle.jdbc.OracleDriver', |
|
value: 'oracle.jdbc.OracleDriver', |
|
}, { |
|
label: 'com.microsoft.sqlserver.jdbc.SQLServerDriver', |
|
value: 'com.microsoft.sqlserver.jdbc.SQLServerDriver' |
|
} |
|
], |
|
width: 200, |
|
rules: [{ |
|
required: true, |
|
message: "请输入驱动类", |
|
trigger: "blur" |
|
}] |
|
}, |
|
{ |
|
label: "用户名", |
|
prop: "username", |
|
width: 120, |
|
rules: [{ |
|
required: true, |
|
message: "请输入用户名", |
|
trigger: "blur" |
|
}] |
|
}, |
|
{ |
|
label: "密码", |
|
prop: "password", |
|
type: 'password', |
|
hide: true, |
|
rules: [{ |
|
required: true, |
|
message: "请输入密码", |
|
trigger: "blur" |
|
}] |
|
}, |
|
{ |
|
label: "连接地址", |
|
prop: "url", |
|
type: 'textarea', |
|
span: 24, |
|
rules: [{ |
|
required: true, |
|
message: "请输入连接地址", |
|
trigger: "blur" |
|
}] |
|
}, |
|
{ |
|
label: "备注", |
|
prop: "remarks", |
|
span: 24, |
|
minRows: 3, |
|
hide: true, |
|
type: "textarea" |
|
}, |
|
] |
|
}, |
|
data: [] |
|
}; |
|
}, |
|
methods: { |
|
validData (id) { |
|
return [0, 1, 2, 3].includes(id) |
|
}, |
|
rowSave (row, done, loading) { |
|
add(row).then(() => { |
|
this.onLoad(); |
|
this.$message({ |
|
type: "success", |
|
message: "操作成功!" |
|
}); |
|
done(); |
|
}, error => { |
|
window.console.log(error); |
|
loading(); |
|
}); |
|
}, |
|
rowUpdate (row, index, done, loading) { |
|
if (this.validData(index) && this.$website.isDemo) { |
|
this.$message.error(this.$website.isDemoTip) |
|
done(); |
|
return false; |
|
} |
|
update(row).then(() => { |
|
done(); |
|
this.onLoad(); |
|
this.$message({ |
|
type: "success", |
|
message: "操作成功!" |
|
}); |
|
}, error => { |
|
window.console.log(error); |
|
loading(); |
|
}); |
|
}, |
|
rowDel (row, index) { |
|
if (this.validData(index) && this.$website.isDemo) { |
|
this.$message.error(this.$website.isDemoTip) |
|
return false; |
|
} |
|
this.$confirm("确定将选择数据删除?", { |
|
confirmButtonText: "确定", |
|
cancelButtonText: "取消", |
|
type: "warning" |
|
}) |
|
.then(() => { |
|
return remove(row.id); |
|
}) |
|
.then(() => { |
|
this.onLoad(); |
|
this.$message({ |
|
type: "success", |
|
message: "操作成功!" |
|
}); |
|
}); |
|
|
|
}, |
|
beforeOpen (done, type) { |
|
if (["edit", "view"].includes(type)) { |
|
getDetail(this.form.id).then(res => { |
|
this.form = res.data.data; |
|
}); |
|
} |
|
done(); |
|
}, |
|
refreshChange () { |
|
this.onLoad(); |
|
}, |
|
handleTest (form) { |
|
form = form || this.form |
|
dbTest({ |
|
driverClass: form.driverClass, |
|
url: form.url, |
|
username: form.username, |
|
password: form.password |
|
}).then(res => { |
|
const data = res.data; |
|
if (data.success) { |
|
this.$message.success('连接成功') |
|
} else { |
|
this.$message.error('连接失败,请检查相关配置参数') |
|
} |
|
}) |
|
}, |
|
onLoad () { |
|
getList({ |
|
current: this.page.currentPage, |
|
size: this.page.pageSize, |
|
}).then(res => { |
|
const data = res.data.data; |
|
this.page.total = data.total; |
|
this.data = data.records; |
|
}); |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style> |
|
</style>
|
|
|