初始化
This commit is contained in:
387
src/views/stureg/pickstation/index.vue
Normal file
387
src/views/stureg/pickstation/index.vue
Normal file
@@ -0,0 +1,387 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
||||
<el-form-item label="学生id" prop="studentId">
|
||||
<el-input
|
||||
v-model="queryParams.studentId"
|
||||
placeholder="请输入学生id"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="交通工具" prop="toolsType">
|
||||
<el-select v-model="queryParams.toolsType" placeholder="请选择交通工具" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.vehicle_types"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="到达车站" prop="atStation">
|
||||
<el-input
|
||||
v-model="queryParams.atStation"
|
||||
placeholder="请输入到达车站"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="到达时间" prop="atDatetime">
|
||||
<el-date-picker clearable
|
||||
v-model="queryParams.atDatetime"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择到达时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否接站" prop="isNeedPick">
|
||||
<el-select v-model="queryParams.isNeedPick" placeholder="请选择是否接站" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.is_need_pick_station"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否被接" prop="pickState">
|
||||
<el-select v-model="queryParams.pickState" placeholder="请选择是否被接" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.pick_station_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['stureg:pickstation:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['stureg:pickstation:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['stureg:pickstation:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['stureg:pickstation:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="pickstationList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="id" align="center" prop="id" />
|
||||
<el-table-column label="学生id" align="center" prop="studentId" />
|
||||
<el-table-column label="交通工具" align="center" prop="toolsType">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.vehicle_types" :value="scope.row.toolsType"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="到达车站" align="center" prop="atStation" />
|
||||
<el-table-column label="到达时间" align="center" prop="atDatetime" width="180">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.atDatetime, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否接站" align="center" prop="isNeedPick">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.is_need_pick_station" :value="scope.row.isNeedPick"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否被接" align="center" prop="pickState">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.pick_station_type" :value="scope.row.pickState"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="部门状态" align="center" prop="status" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['stureg:pickstation:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['stureg:pickstation:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改新生接站登记对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||
<el-form-item label="学生" prop="studentId">
|
||||
<el-select v-model="form.studentId" filterable placeholder="请选择学生">
|
||||
<el-option v-for="item in stuSelect" :key="item.registerId" :label="item.registerId + '--' + item.userName"
|
||||
:value="item.registerId">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="交通工具" prop="toolsType">
|
||||
<el-select v-model="form.toolsType" placeholder="请选择交通工具">
|
||||
<el-option
|
||||
v-for="dict in dict.type.vehicle_types"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="到达车站" prop="atStation">
|
||||
<el-input v-model="form.atStation" placeholder="请输入到达车站" />
|
||||
</el-form-item>
|
||||
<el-form-item label="到达时间" prop="atDatetime">
|
||||
<el-date-picker clearable
|
||||
v-model="form.atDatetime"
|
||||
type="date"
|
||||
value-format="yyyy-MM-dd"
|
||||
placeholder="请选择到达时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否接站" prop="isNeedPick">
|
||||
<el-select v-model="form.isNeedPick" placeholder="请选择是否接站">
|
||||
<el-option
|
||||
v-for="dict in dict.type.is_need_pick_station"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="是否被接" prop="pickState">
|
||||
<el-select v-model="form.pickState" placeholder="请选择是否被接">
|
||||
<el-option
|
||||
v-for="dict in dict.type.pick_station_type"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="parseInt(dict.value)"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</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>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listPickstation, getPickstation, delPickstation, addPickstation, updatePickstation } from "@/api/stureg/pickstation";
|
||||
import { listInfo } from "@/api/stureg/intenetin";
|
||||
|
||||
export default {
|
||||
name: "Pickstation",
|
||||
dicts: ['vehicle_types', 'pick_station_type', 'is_need_pick_station'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 新生接站登记表格数据
|
||||
pickstationList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
studentId: null,
|
||||
toolsType: null,
|
||||
atStation: null,
|
||||
atDatetime: null,
|
||||
isNeedPick: null,
|
||||
pickState: null,
|
||||
status: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
},
|
||||
//选择学生的下拉框数据
|
||||
stuSelect: [],
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询新生接站登记列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listPickstation(this.queryParams).then(response => {
|
||||
this.pickstationList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
studentId: null,
|
||||
toolsType: null,
|
||||
atStation: null,
|
||||
atDatetime: null,
|
||||
isNeedPick: null,
|
||||
pickState: null,
|
||||
status: null,
|
||||
delFlag: null,
|
||||
createBy: null,
|
||||
createTime: null,
|
||||
updateBy: null,
|
||||
updateTime: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
//加载学生下拉框
|
||||
async initStuSelect() {
|
||||
let res = await listInfo();
|
||||
this.stuSelect = [...res.rows];
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
async handleAdd() {
|
||||
await this.initStuSelect();
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加新生接站登记";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
async handleUpdate(row) {
|
||||
await this.initStuSelect();
|
||||
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getPickstation(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改新生接站登记";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updatePickstation(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addPickstation(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除新生接站登记编号为"' + ids + '"的数据项?').then(function() {
|
||||
return delPickstation(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('stureg/pickstation/export', {
|
||||
...this.queryParams
|
||||
}, `pickstation_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user