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

150 lines
5.7 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>-->
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" />
<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" />-->
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";
// 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,
},
};
},
created() {
this.getList();
},
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-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>