2025-03-31 18:24:37 +08:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<TableSearch :query="query" :options="searchOpt" :search="handleSearch" />
|
|
|
|
<div class="table-container">
|
|
|
|
<TableCustom
|
|
|
|
:columns="columns"
|
|
|
|
:tableData="tableData"
|
|
|
|
:total="page.total"
|
|
|
|
:delFunc="handleDelete"
|
|
|
|
:editFunc="handleEdit"
|
|
|
|
:refresh="getData"
|
|
|
|
:currentPage="page.index"
|
|
|
|
:changePage="changePage"
|
|
|
|
>
|
|
|
|
<template #toolbarBtn>
|
|
|
|
<el-button type="primary" @click="visible = true">类型编辑</el-button>
|
|
|
|
<el-button type="primary" @click="visible = true">新增用户</el-button>
|
2025-04-01 09:05:07 +08:00
|
|
|
<el-button @click="handleImp">批量创建用户</el-button>
|
2025-03-31 18:24:37 +08:00
|
|
|
<el-button @click="visible = true">导出</el-button>
|
|
|
|
<el-button type="danger" @click="visible = true">删除</el-button>
|
|
|
|
</template>
|
|
|
|
<template #money="{ rows }"> ¥{{ rows.money }} </template>
|
|
|
|
<template #thumb="{ rows }">
|
|
|
|
<el-image class="table-td-thumb" :src="rows.thumb" :z-index="10" :preview-src-list="[rows.thumb]" preview-teleported> </el-image>
|
|
|
|
</template>
|
|
|
|
<template #state="{ rows }">
|
|
|
|
<el-tag :type="rows.state ? 'success' : 'danger'">
|
|
|
|
{{ rows.state ? "正常" : "异常" }}
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
<template #operator>
|
|
|
|
<el-button link type="primary" size="small"> 重置密码 </el-button>
|
|
|
|
<el-button link type="primary" size="small"> 修改 </el-button>
|
|
|
|
<el-button link type="danger" size="small"> 删除 </el-button>
|
|
|
|
</template>
|
|
|
|
</TableCustom>
|
|
|
|
</div>
|
|
|
|
<el-dialog :title="isEdit ? '编辑' : '新增'" v-model="visible" width="700px" destroy-on-close :close-on-click-modal="false" @close="closeDialog">
|
|
|
|
<TableEdit :form-data="rowData" :options="options" :edit="isEdit" :update="updateData" />
|
|
|
|
</el-dialog>
|
|
|
|
<BatchImp ref="batchImpRef" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts" name="basetable">
|
|
|
|
import { ref, reactive } from "vue";
|
|
|
|
import { ElMessage } from "element-plus";
|
|
|
|
import { fetchData } from "@/api/index";
|
|
|
|
import TableCustom from "@/components/table-custom.vue";
|
|
|
|
import TableSearch from "@/components/table-search.vue";
|
|
|
|
import TableEdit from "@/components/table-edit.vue";
|
|
|
|
import BatchImp from "@/components/batch-imp.vue";
|
|
|
|
import { TableItem } from "@/types/table";
|
|
|
|
import { FormOption, FormOptionList } from "@/types/form-option";
|
|
|
|
|
|
|
|
// 查询相关
|
|
|
|
const query = reactive({
|
|
|
|
name: "",
|
|
|
|
});
|
|
|
|
const searchOpt = ref<FormOptionList[]>([
|
|
|
|
{ type: "input", label: "用户名:", prop: "name" },
|
|
|
|
{
|
|
|
|
type: "select",
|
|
|
|
label: "用户类型:",
|
|
|
|
prop: "name1",
|
|
|
|
opts: [
|
|
|
|
{ label: "管理员", value: "1" },
|
|
|
|
{ label: "警察", value: "2" },
|
|
|
|
{ label: "辅警", value: "3" },
|
|
|
|
{ label: "协警", value: "4" },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{ type: "daterange", label: "创建时间:", prop: "name2" },
|
|
|
|
{
|
|
|
|
type: "select",
|
|
|
|
label: "状态:",
|
|
|
|
prop: "name3",
|
|
|
|
opts: [
|
|
|
|
{ label: "启用", value: "1" },
|
|
|
|
{ label: "禁用", value: "0" },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
const batchImpRef = ref();
|
|
|
|
|
|
|
|
// 表格相关
|
|
|
|
let columns = ref([
|
|
|
|
{ type: "selection" },
|
|
|
|
{ type: "index", label: "序号", width: 55, align: "center" },
|
|
|
|
{ prop: "name", label: "用户名称" },
|
|
|
|
{ prop: "money", label: "警员号" },
|
|
|
|
{ prop: "thumb", label: "手机号" },
|
|
|
|
{ prop: "state", label: "密码" },
|
|
|
|
{ prop: "state", label: "类型" },
|
|
|
|
{ prop: "state", label: "创建时间" },
|
|
|
|
{ prop: "state", label: "状态" },
|
|
|
|
{ prop: "operator", label: "操作", width: 250 },
|
|
|
|
]);
|
|
|
|
const page = reactive({
|
|
|
|
index: 1,
|
|
|
|
size: 10,
|
|
|
|
total: 200,
|
|
|
|
});
|
|
|
|
const tableData = ref<TableItem[]>([]);
|
|
|
|
|
|
|
|
const handleImp = () => {
|
|
|
|
batchImpRef.value.dialogVisible = true;
|
|
|
|
};
|
|
|
|
const handleSearch = () => {
|
|
|
|
changePage(1);
|
|
|
|
};
|
|
|
|
|
|
|
|
const getData = async () => {
|
|
|
|
const res = await fetchData();
|
|
|
|
tableData.value = res.data.list;
|
|
|
|
};
|
|
|
|
getData();
|
|
|
|
|
|
|
|
const changePage = (val: number) => {
|
|
|
|
page.index = val;
|
|
|
|
getData();
|
|
|
|
};
|
|
|
|
|
|
|
|
// 新增/编辑弹窗相关
|
|
|
|
let options = ref<FormOption>({
|
|
|
|
labelWidth: "100px",
|
|
|
|
span: 24,
|
|
|
|
list: [
|
|
|
|
{ type: "input", label: "用户名称", prop: "name1", required: true },
|
|
|
|
{ type: "input", label: "电话号码", prop: "money2", required: true },
|
|
|
|
{ type: "input", label: "警员号", prop: "money3", required: true },
|
|
|
|
{ type: "select", label: "类型", prop: "money4", required: true },
|
|
|
|
{ type: "input", label: "密码", prop: "mone5y", required: true },
|
|
|
|
{ type: "input", label: "确认密码", prop: "mon6ey" },
|
|
|
|
{ type: "textarea", label: "备注", prop: "mon8ey" },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
const visible = ref(false);
|
|
|
|
const isEdit = ref(false);
|
|
|
|
const rowData = ref({});
|
|
|
|
const handleEdit = (row: TableItem) => {
|
|
|
|
rowData.value = { ...row };
|
|
|
|
isEdit.value = true;
|
|
|
|
visible.value = true;
|
|
|
|
};
|
|
|
|
const updateData = () => {
|
|
|
|
closeDialog();
|
|
|
|
getData();
|
|
|
|
};
|
|
|
|
|
|
|
|
const closeDialog = () => {
|
|
|
|
visible.value = false;
|
|
|
|
isEdit.value = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
// 删除相关
|
|
|
|
const handleDelete = (row: TableItem) => {
|
|
|
|
ElMessage.success("删除成功");
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.table-td-thumb {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
</style>
|