Commit 68d89e44 by qinjianhui

fix: 问题修改

parent 9574485a
......@@ -37,3 +37,8 @@
margin: 0 auto;
}
}
.el-button--primary {
background-color: #1565C0;
border-color: #1565C0;
}
......@@ -95,7 +95,7 @@
</el-form-item>
</el-form>
</div>
<div class="table-wrap">
<div class="table-wrap" v-loading="loading">
<el-table
ref="table"
:data="manageData"
......@@ -527,6 +527,7 @@ export default {
addVisible: false,
selection: [],
cloneEditForm: {},
loading: false,
}
},
async created() {
......@@ -541,9 +542,7 @@ export default {
this.$set(this.editForm, 'databaseName', e)
},
async getList() {
const l = this.$loading({
background: 'rgba(0, 0, 0, 0.3)',
})
this.loading = true
try {
const res = await getManageData(
{
......@@ -559,7 +558,7 @@ export default {
} catch (e) {
console.error(e)
} finally {
l.close()
this.loading = false
}
},
search() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment