lanan-system-vue/src/views/drivingSchool/driveSchoolExamPass/index.vue

408 lines
14 KiB
Vue
Raw Normal View History

2024-08-26 23:43:09 +08:00
<template>
<div class="app-container">
2025-02-19 16:17:56 +08:00
<!-- 搜索工作栏 -->
2024-08-26 23:43:09 +08:00
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
2025-02-19 16:17:56 +08:00
<el-form-item label="教练" prop="coachName">
<el-input v-model="queryParams.coachName" placeholder="请输入课程名称" clearable @keyup.enter.native="handleQuery"/>
2024-08-26 23:43:09 +08:00
</el-form-item>
2025-02-19 16:17:56 +08:00
<el-form-item label="学员" prop="studentName">
<el-input v-model="queryParams.studentName" placeholder="请输入教练姓名" clearable @keyup.enter.native="handleQuery"/>
2024-08-26 23:43:09 +08:00
</el-form-item>
2025-02-19 16:17:56 +08:00
<el-form-item label="审核人" prop="checkName">
<el-input v-model="queryParams.checkName" placeholder="请输入教练姓名" clearable @keyup.enter.native="handleQuery"/>
2024-08-26 23:43:09 +08:00
</el-form-item>
2025-02-19 16:17:56 +08:00
<el-form-item label="课程" prop="courseName">
<el-input v-model="queryParams.courseName" placeholder="请输入教练姓名" clearable @keyup.enter.native="handleQuery"/>
2024-08-26 23:43:09 +08:00
</el-form-item>
<el-form-item>
2025-02-19 16:17:56 +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 23:43:09 +08:00
</el-form-item>
</el-form>
2025-02-19 16:17:56 +08:00
<!-- 操作工具栏 -->
2024-08-26 23:43:09 +08:00
<el-row :gutter="10" class="mb8">
2025-02-19 16:17:56 +08:00
<!-- <el-col :span="1.5">-->
<!-- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="openForm(undefined)"-->
<!-- v-hasPermi="['drive:school-commission:create']">新增</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"-->
<!-- v-hasPermi="['drive:school-commission:export']">导出</el-button>-->
<!-- </el-col>-->
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
2025-04-24 17:26:14 +08:00
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增提成记录</el-button>
</el-col>
2024-08-26 23:43:09 +08:00
</el-row>
2025-02-19 16:17:56 +08:00
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
<el-table-column label="教练姓名" align="center" prop="coachName" />
<el-table-column label="学生姓名" align="center" prop="studentName" />
2025-06-06 17:33:22 +08:00
<el-table-column label="课程名称" align="center" prop="courseName" />
<el-table-column label="课程类型" align="center" prop="courseType" />
2025-02-19 16:17:56 +08:00
<el-table-column label="提成金额" align="center" prop="commissionAmount" />
<el-table-column label="科目" align="center" prop="subject" />
<el-table-column label="审核人姓名" align="center" prop="checkName" />
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
<!-- <template v-slot="scope">-->
<!-- <el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id)"-->
<!-- v-hasPermi="['drive:school-commission:update']">修改</el-button>-->
<!-- <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"-->
<!-- v-hasPermi="['drive:school-commission:delete']">删除</el-button>-->
2024-08-26 23:43:09 +08:00
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
2025-02-19 16:17:56 +08:00
<!-- 分页组件 -->
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/>
<!-- &lt;!&ndash; 对话框(添加 / 修改) &ndash;&gt;-->
<!-- <SchoolCommissionForm ref="formRef" @success="getList" />-->
2025-04-24 17:26:14 +08:00
<!-- 添加或修改提成配置对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<el-form ref="form" :model="form" label-width="120px">
<el-form-item label="教练" prop="coachUserId">
<el-select v-model="form.coachUserId" filterable clearable placeholder="请选择教练" @change="handleCoachChange">
<el-option
v-for="coach in coachList"
:key="coach.userId"
:label="coach.name"
:value="coach.userId"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="课程" prop="courseId">
<el-select v-model="form.courseId" filterable clearable placeholder="请选择课程">
<el-option
v-for="coach in courseList"
:key="coach.id"
:label="coach.name"
:value="coach.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="学员" prop="studentId">
<el-select
v-model="form.studentId"
filterable
remote
reserve-keyword
clearable
placeholder="请输入学员姓名搜索"
:remote-method="handleStudentSearch"
:loading="studentLoading"
@visible-change="handleStudentVisibleChange"
@focus="handleStudentFocus"
@change="handleStudentChange"
>
<el-option
v-for="student in studentList"
:key="student.userId"
:label="student.name"
:value="student.userId"
></el-option>
<el-pagination
small
layout="prev, pager, next"
:total="studentTotal"
:page-size="studentQueryParams.pageSize"
:current-page="studentQueryParams.pageNo"
@current-change="handleStudentPageChange"
v-if="studentTotal > studentQueryParams.pageSize"
></el-pagination>
</el-select>
</el-form-item>
<el-form-item label="科目" prop="subject">
<el-select v-model="form.subject" filterable clearable placeholder="请选择科目">
<el-option
v-for="coach in subjectList"
:key="coach.value"
:label="coach.label"
:value="coach.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="教练提成" prop="commissionAmount">
<el-input v-model="form.commissionAmount" placeholder="请输入教练提成" style="width: 210px" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
2024-08-26 23:43:09 +08:00
</div>
</template>
<script>
2025-02-19 16:17:56 +08:00
import * as SchoolCommissionApi from "./api/pass";
2025-04-24 17:26:14 +08:00
import { createSchoolCommission, getCourseList } from './api/pass'
import { getDlDriveSchoolStudentPage } from "../student/studentApi/index";
import { listCoach } from "../drivingSchoolCar/api/car";
2025-02-19 16:17:56 +08:00
// import SchoolCommissionForm from './SchoolCommissionForm.vue';
2024-08-26 23:43:09 +08:00
export default {
2025-02-19 16:17:56 +08:00
name: "SchoolCommission",
components: {
// SchoolCommissionForm,
},
2024-08-26 23:43:09 +08:00
data() {
return {
// 遮罩层
loading: true,
2025-02-19 16:17:56 +08:00
// 导出遮罩层
exportLoading: false,
2024-08-26 23:43:09 +08:00
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
2025-02-19 16:17:56 +08:00
// 提成记录列表
list: [],
// 是否展开,默认全部展开
isExpandAll: true,
// 重新渲染表格状态
refreshTable: true,
// 选中行
currentRow: {},
2024-08-26 23:43:09 +08:00
// 查询参数
queryParams: {
2025-02-19 16:17:56 +08:00
coachName:null,
studentName:null,
checkName:null,
courseName:null,
pageNo: 1,
2024-08-26 23:43:09 +08:00
pageSize: 10,
},
2025-04-24 17:26:14 +08:00
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 表单参数
form: {},
coachList: {},
courseList: {},
studentQueryParams: {
pageNo: 1,
pageSize: 10,
name: null // 用于搜索学生姓名
},
studentLoading: false, // 学生下拉框加载状态
studentTotal: 0, // 学生总数
studentList: [], // 学生列表数据
studentRemoteMethodTimer: null,
subjectList: [
{
value: "1",
label: "科目一"
},
{
value: "2",
label: "科目二"
},
{
value: "3",
label: "科目三"
},
{
value: "4",
label: "科目四"
}
],
2024-08-26 23:43:09 +08:00
};
},
created() {
this.getList();
2025-04-24 17:26:14 +08:00
this.getCourseList();
this.getCoachList();
this.getStudentList();
2024-08-26 23:43:09 +08:00
},
methods: {
2025-02-19 16:17:56 +08:00
/** 查询列表 */
async getList() {
try {
this.loading = true;
const res = await SchoolCommissionApi.getSchoolCommissionPage(this.queryParams);
this.list = res.data.records;
this.total = res.data.total;
} finally {
2024-08-26 23:43:09 +08:00
this.loading = false;
2025-02-19 16:17:56 +08:00
}
2024-08-26 23:43:09 +08:00
},
/** 搜索按钮操作 */
handleQuery() {
2025-02-19 16:17:56 +08:00
this.queryParams.pageNo = 1;
2024-08-26 23:43:09 +08:00
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
2025-02-19 16:17:56 +08:00
/** 添加/修改操作 */
openForm(id) {
this.$refs["formRef"].open(id);
2024-08-26 23:43:09 +08:00
},
2025-04-24 17:26:14 +08:00
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加提成记录";
},
// 表单重置
reset() {
this.form = {
id: null,
deptId: null,
deduct: null,
courseSubject: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null
};
this.resetForm("form");
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
/* updateDeduct(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}); */
} else {
createSchoolCommission(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 获取课程列表 */
getCourseList() {
getCourseList().then(response => {
this.courseList = response.data;
console.log("课程列表:",this.courseList)
})
},
/** 获取教练列表 */
getCoachList() {
listCoach().then(response => {
this.coachList = response.data;
console.log("教练列表:",this.coachList)
})
},
/** 获取学生列表 */
async getStudentList() {
try {
this.studentLoading = true;
const response = await getDlDriveSchoolStudentPage(this.studentQueryParams);
this.studentList = response.data.records;
this.studentTotal = response.data.total;
} finally {
this.studentLoading = false;
}
},
/** 学生下拉框分页变化 */
handleStudentPageChange(pageNo) {
this.studentQueryParams.pageNo = pageNo;
this.getStudentList();
},
/** 学生下拉框远程搜索 */
handleStudentSearch(query) {
// 防抖处理
if (this.studentRemoteMethodTimer) {
clearTimeout(this.studentRemoteMethodTimer);
}
this.studentRemoteMethodTimer = setTimeout(() => {
this.studentQueryParams.name = query;
this.studentQueryParams.pageNo = 1; // 搜索时重置页码
this.getStudentList();
}, 300);
},
/** 学生下拉框显示状态变化 */
handleStudentVisibleChange(visible) {
if (visible && this.studentList.length === 0) {
this.getStudentList();
}
},
/** 学生下拉框获取焦点 */
handleStudentFocus() {
if (this.studentList.length === 0) {
this.getStudentList();
}
},
/** 教练选择变化事件 */
handleCoachChange(coachUserId) {
if (coachUserId) {
const selectedCoach = this.coachList.find(coach => coach.userId === coachUserId);
if (selectedCoach) {
this.form.coachName = selectedCoach.name; // 将教练名称存储到 form.coachName
console.log('form',this.form)
}
} else {
this.form.coachName = null; // 清空教练名称
}
},
/** 学生选择变化事件 */
handleStudentChange(studentId) {
if (studentId) {
const selectedStudent = this.studentList.find(student => student.userId === studentId);
if (selectedStudent) {
this.form.studentName = selectedStudent.name; // 将学生名称存储到 form.studentName
}
} else {
this.form.studentName = null; // 清空学生名称
}
},
2025-02-19 16:17:56 +08:00
// /** 删除按钮操作 */
// async handleDelete(row) {
// const id = row.id;
// await this.$modal.confirm('是否确认删除提成记录编号为"' + id + '"的数据项?')
// try {
// await SchoolCommissionApi.deleteSchoolCommission(id);
// await this.getList();
// this.$modal.msgSuccess("删除成功");
// } catch {}
// },
// /** 导出按钮操作 */
// async handleExport() {
// await this.$modal.confirm('是否确认导出所有提成记录数据项?');
// try {
// this.exportLoading = true;
// const data = await SchoolCommissionApi.exportSchoolCommissionExcel(this.queryParams);
// this.$download.excel(data, '提成记录.xls');
// } catch {
// } finally {
// this.exportLoading = false;
// }
// },
2024-08-26 23:43:09 +08:00
}
};
</script>