mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-14 01:34:47 +08:00
feat: 网站页面增加遮罩
This commit is contained in:
parent
d72bb22db7
commit
52ed3e076a
@ -9,7 +9,7 @@
|
|||||||
>
|
>
|
||||||
<el-row v-loading="loading">
|
<el-row v-loading="loading">
|
||||||
<el-col :span="22" :offset="1">
|
<el-col :span="22" :offset="1">
|
||||||
<el-form ref="accountForm" label-position="top" :model="account" :rules="rules" v-loading="loading">
|
<el-form ref="accountForm" label-position="top" :model="account" :rules="rules">
|
||||||
<el-form-item :label="$t('website.email')" prop="email">
|
<el-form-item :label="$t('website.email')" prop="email">
|
||||||
<el-input v-model.trim="account.email"></el-input>
|
<el-input v-model.trim="account.email"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -219,10 +219,15 @@ let req = reactive({
|
|||||||
const search = async () => {
|
const search = async () => {
|
||||||
req.page = paginationConfig.currentPage;
|
req.page = paginationConfig.currentPage;
|
||||||
req.pageSize = paginationConfig.pageSize;
|
req.pageSize = paginationConfig.pageSize;
|
||||||
SearchWebsites(req).then((res) => {
|
loading.value = true;
|
||||||
data.value = res.data.items;
|
await SearchWebsites(req)
|
||||||
paginationConfig.total = res.data.total;
|
.then((res) => {
|
||||||
});
|
data.value = res.data.items;
|
||||||
|
paginationConfig.total = res.data.total;
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
loading.value = false;
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const listGroup = async () => {
|
const listGroup = async () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user