账户页面修改布局

This commit is contained in:
洛洛希雅Lolosia 2023-05-12 16:04:47 +08:00
parent 5028451710
commit bb55eaedad
3 changed files with 34 additions and 36 deletions

11
src/store/system.ts Normal file
View File

@ -0,0 +1,11 @@
import { defineStore } from 'pinia'
export const useSystemStore = defineStore('system', {
state() {
return {
userMng: {
searchKey: ''
}
}
}
})

View File

@ -0,0 +1,13 @@
<template>
<el-input v-model.trim="systemStore.userMng.searchKey" placeholder="按下回车键搜索" />
</template>
<script lang="ts" setup>
import { useSystemStore } from "@/store/system";
const systemStore = useSystemStore();
</script>
<style scoped>
</style>

View File

@ -1,40 +1,11 @@
<template>
<app-page class="userManagement-container">
<div>
<el-form :inline="true" :model="queryForm" @submit.prevent>
<!-- <el-form-item>
<el-select v-model="queryForm.post" placeholder="专业方向">
<el-option
v-for="item in postList"
:key="item.code"
:label="item.value"
:value="item.code"
></el-option>
</el-select>
</el-form-item> -->
<el-form-item>
<el-input
v-model.trim="queryForm.keys"
placeholder="请输入关键字"
@keyup.enter="queryData"
>
<template #suffix>
<i
class="el-icon-search el-input__icon i-search"
@click="queryData"
<template #right>
<right-nav-search-input
style="margin-right: 1em" @keyup.enter="queryData"
/>
</template>
</el-input>
</el-form-item>
<el-form-item>
<!-- <el-button icon="el-icon-search" type="primary" @click="queryData">
查询
</el-button> -->
<el-button type="primary" @click="handleEdit">新增</el-button>
<!-- <el-button type="danger" @click="handleExport">导出</el-button> -->
</el-form-item>
</el-form>
</div>
</template>
<el-table
v-loading="listLoading"
@ -110,11 +81,13 @@ import Edit from "./components/UserManagementEdit.vue";
import { sha1 } from "hash.js";
import MenuIcon from "@/layout/sidebar/MenuIcon.vue";
import { ElMessage, ElMessageBox } from "element-plus";
import RightNavSearchInput from "@/views/system/userManagement/components/RightNavSearchInput.vue";
import { useSystemStore } from "@/store/system";
//
export default {
name: "UserManagement",
components: { MenuIcon, Edit },
components: { RightNavSearchInput, MenuIcon, Edit },
data() {
return {
list: null,
@ -181,6 +154,7 @@ export default {
},
async fetchData() {
this.listLoading = true;
this.queryForm.keys = useSystemStore().userMng.searchKey;
const { data } = await getList(this.queryForm);
this.list = data.data;
this.total = data.total;