2024-08-26 00:44:02 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
2025-01-18 11:22:27 +08:00
|
|
|
<!-- 搜索工作栏 -->
|
2024-08-26 00:44:02 +08:00
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="姓名" prop="name">
|
2025-01-18 11:22:27 +08:00
|
|
|
<el-input v-model="queryParams.name" placeholder="请输入姓名" clearable @keyup.enter.native="handleQuery"/>
|
2024-08-26 00:44:02 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
2025-01-18 11:22:27 +08:00
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
2024-08-26 00:44:02 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
2025-01-18 11:22:27 +08:00
|
|
|
<!-- 操作工具栏 -->
|
2024-08-26 00:44:02 +08:00
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
2025-01-18 11:22:27 +08:00
|
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="openForm(undefined)">新增
|
2024-08-26 00:44:02 +08:00
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
2025-01-18 11:22:27 +08:00
|
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
|
|
|
<el-table-column label="姓名" align="center" prop="name"/>
|
|
|
|
|
<el-table-column label="年龄" align="center" prop="age"/>
|
|
|
|
|
<el-table-column label="性别" align="center" prop="sex"/>
|
|
|
|
|
<el-table-column label="联系电话" align="center" prop="phone"/>
|
|
|
|
|
<el-table-column label="身份证号" align="center" prop="idCard"/>
|
|
|
|
|
<el-table-column label="工作单位" align="center" prop="workName"/>
|
|
|
|
|
<el-table-column label="户籍地址" align="center" prop="registAddress"/>
|
|
|
|
|
<el-table-column label="家庭住址" align="center" prop="address"/>
|
|
|
|
|
<el-table-column label="人员类型" align="center" prop="type"/>
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark"/>
|
2024-08-26 00:44:02 +08:00
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
2025-01-18 11:22:27 +08:00
|
|
|
<template v-slot="scope">
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id)">修改
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)">删除
|
|
|
|
|
</el-button>
|
2024-08-26 00:44:02 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
2025-01-18 11:22:27 +08:00
|
|
|
<!-- 分页组件 -->
|
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"/>
|
|
|
|
|
<!-- 对话框(添加 / 修改) -->
|
|
|
|
|
<DlDriveSchoolStudentForm ref="formRef" @success="getList"/>
|
2024-08-26 00:44:02 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-01-18 11:22:27 +08:00
|
|
|
import * as DlDriveSchoolStudentApi from '@/views/drivingSchool/student/studentApi';
|
|
|
|
|
import DlDriveSchoolStudentForm from '@/views/drivingSchool/student/form/DlDriveSchoolStudentForm.vue';
|
2024-08-26 00:44:02 +08:00
|
|
|
|
|
|
|
|
export default {
|
2025-01-18 11:22:27 +08:00
|
|
|
name: "DlDriveSchoolStudent",
|
|
|
|
|
components: {
|
|
|
|
|
DlDriveSchoolStudentForm,
|
|
|
|
|
},
|
2024-08-26 00:44:02 +08:00
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
2025-01-18 11:22:27 +08:00
|
|
|
// 导出遮罩层
|
|
|
|
|
exportLoading: false,
|
2024-08-26 00:44:02 +08:00
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
2025-01-18 11:22:27 +08:00
|
|
|
// 驾校学员列表
|
|
|
|
|
list: [],
|
|
|
|
|
// 是否展开,默认全部展开
|
|
|
|
|
isExpandAll: true,
|
|
|
|
|
// 重新渲染表格状态
|
|
|
|
|
refreshTable: true,
|
|
|
|
|
// 选中行
|
|
|
|
|
currentRow: {},
|
2024-08-26 00:44:02 +08:00
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
2025-01-18 11:22:27 +08:00
|
|
|
pageNo: 1,
|
2024-08-26 00:44:02 +08:00
|
|
|
pageSize: 10,
|
|
|
|
|
name: null,
|
|
|
|
|
phone: null,
|
2025-01-18 11:22:27 +08:00
|
|
|
type: null,
|
|
|
|
|
idPhoto: null,
|
|
|
|
|
lifePhoto: null,
|
|
|
|
|
otherPhoto: null,
|
2024-08-26 00:44:02 +08:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2025-01-18 11:22:27 +08:00
|
|
|
/** 查询列表 */
|
|
|
|
|
async getList() {
|
|
|
|
|
try {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
const res = await DlDriveSchoolStudentApi.getDlDriveSchoolStudentPage(this.queryParams);
|
|
|
|
|
this.list = res.data.records;
|
|
|
|
|
this.total = res.data.total;
|
|
|
|
|
} finally {
|
2024-08-26 00:44:02 +08:00
|
|
|
this.loading = false;
|
2025-01-18 11:22:27 +08:00
|
|
|
}
|
2024-08-26 00:44:02 +08:00
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
2025-01-18 11:22:27 +08:00
|
|
|
this.queryParams.pageNo = 1;
|
2024-08-26 00:44:02 +08:00
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
2025-01-18 11:22:27 +08:00
|
|
|
/** 添加/修改操作 */
|
|
|
|
|
openForm(id) {
|
|
|
|
|
this.$refs["formRef"].open(id);
|
2024-08-26 00:44:02 +08:00
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
2025-01-18 11:22:27 +08:00
|
|
|
async handleDelete(row) {
|
|
|
|
|
const id = row.id;
|
|
|
|
|
await this.$modal.confirm('是否确认删除驾校学员编号为"' + id + '"的数据项?')
|
|
|
|
|
try {
|
|
|
|
|
await DlDriveSchoolStudentApi.deleteDlDriveSchoolStudent(id);
|
|
|
|
|
await this.getList();
|
2024-08-26 00:44:02 +08:00
|
|
|
this.$modal.msgSuccess("删除成功");
|
2025-01-18 11:22:27 +08:00
|
|
|
} catch {
|
|
|
|
|
}
|
2024-08-26 00:44:02 +08:00
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
2025-01-18 11:22:27 +08:00
|
|
|
async handleExport() {
|
|
|
|
|
await this.$modal.confirm('是否确认导出所有驾校学员数据项?');
|
|
|
|
|
try {
|
|
|
|
|
this.exportLoading = true;
|
|
|
|
|
const data = await DlDriveSchoolStudentApi.exportDlDriveSchoolStudentExcel(this.queryParams);
|
|
|
|
|
this.$download.excel(data, '驾校学员.xls');
|
|
|
|
|
} catch {
|
|
|
|
|
} finally {
|
|
|
|
|
this.exportLoading = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-08-26 00:44:02 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|