|
@@ -0,0 +1,435 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="app-container">
|
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
+ <el-form-item label="姓名" prop="name">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.name"
|
|
|
|
+ placeholder="请输入姓名"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="账号" prop="userName">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.userName"
|
|
|
|
+ placeholder="请输入账号"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="组织归属" prop="dept">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.dept"
|
|
|
|
+ placeholder="请输入组织归属"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="职务" prop="post">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.post"
|
|
|
|
+ placeholder="请输入职务"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="单位" prop="company">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.company"
|
|
|
|
+ placeholder="请输入单位"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="救援队" prop="emergencyRescue">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.emergencyRescue"
|
|
|
|
+ placeholder="请输入救援队"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="市" prop="city">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.city"
|
|
|
|
+ placeholder="请输入市"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="区县" prop="area">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.area"
|
|
|
|
+ placeholder="请输入区县"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="乡镇" prop="township">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.township"
|
|
|
|
+ placeholder="请输入乡镇"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="村" prop="village">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.village"
|
|
|
|
+ placeholder="请输入村"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="手机号" prop="phone">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.phone"
|
|
|
|
+ placeholder="请输入手机号"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="防汛抗旱" prop="effect">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.effect"
|
|
|
|
+ placeholder="请输入防汛抗旱"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="经度" prop="longitude">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.longitude"
|
|
|
|
+ placeholder="请输入经度"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="纬度" prop="latitude">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="queryParams.latitude"
|
|
|
|
+ placeholder="请输入纬度"
|
|
|
|
+ clearable
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
+ />
|
|
|
|
+ </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="['system:team: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="['system:team: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="['system:team: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="['system:team:export']"
|
|
|
|
+ >导出
|
|
|
|
+ </el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
+ </el-row>
|
|
|
|
+
|
|
|
|
+ <el-table v-loading="loading" :data="teamList" @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="姓名" align="center" prop="name"/>
|
|
|
|
+ <el-table-column label="账号" align="center" prop="userName"/>
|
|
|
|
+ <el-table-column label="组织归属" align="center" prop="dept"/>
|
|
|
|
+ <el-table-column label="职务" align="center" prop="post"/>
|
|
|
|
+ <el-table-column label="单位" align="center" prop="company"/>
|
|
|
|
+ <el-table-column label="救援队" align="center" prop="emergencyRescue"/>
|
|
|
|
+ <el-table-column label="市" align="center" prop="city"/>
|
|
|
|
+ <el-table-column label="区县" align="center" prop="area"/>
|
|
|
|
+ <el-table-column label="乡镇" align="center" prop="township"/>
|
|
|
|
+ <el-table-column label="村" align="center" prop="village"/>
|
|
|
|
+ <el-table-column label="手机号" align="center" prop="phone"/>
|
|
|
|
+ <el-table-column label="防汛抗旱" align="center" prop="effect"/>
|
|
|
|
+ <el-table-column label="经度" align="center" prop="longitude"/>
|
|
|
|
+ <el-table-column label="纬度" align="center" prop="latitude"/>
|
|
|
|
+ <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="['system:team:edit']"
|
|
|
|
+ >修改
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ icon="el-icon-delete"
|
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
|
+ v-hasPermi="['system:team: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="500px" append-to-body>
|
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
|
+ <el-form-item label="姓名" prop="name">
|
|
|
|
+ <el-input v-model="form.name" placeholder="请输入姓名"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="账号" prop="userName">
|
|
|
|
+ <el-input v-model="form.userName" placeholder="请输入账号"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="组织归属" prop="dept">
|
|
|
|
+ <el-input v-model="form.dept" placeholder="请输入组织归属"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="职务" prop="post">
|
|
|
|
+ <el-input v-model="form.post" placeholder="请输入职务"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="单位" prop="company">
|
|
|
|
+ <el-input v-model="form.company" placeholder="请输入单位"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="救援队" prop="emergencyRescue">
|
|
|
|
+ <el-input v-model="form.emergencyRescue" placeholder="请输入救援队"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="市" prop="city">
|
|
|
|
+ <el-input v-model="form.city" placeholder="请输入市"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="区县" prop="area">
|
|
|
|
+ <el-input v-model="form.area" placeholder="请输入区县"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="乡镇" prop="township">
|
|
|
|
+ <el-input v-model="form.township" placeholder="请输入乡镇"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="村" prop="village">
|
|
|
|
+ <el-input v-model="form.village" placeholder="请输入村"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="手机号" prop="phone">
|
|
|
|
+ <el-input v-model="form.phone" placeholder="请输入手机号"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="防汛抗旱" prop="effect">
|
|
|
|
+ <el-input v-model="form.effect" placeholder="请输入防汛抗旱"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="经度" prop="longitude">
|
|
|
|
+ <el-input v-model="form.longitude" placeholder="请输入经度"/>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item label="纬度" prop="latitude">
|
|
|
|
+ <el-input v-model="form.latitude" placeholder="请输入纬度"/>
|
|
|
|
+ </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 {addTeam, delTeam, updateTeam,getTeam, listTeam} from "@/api/system/team";
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: "Team",
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ // 遮罩层
|
|
|
|
+ loading: true,
|
|
|
|
+ // 选中数组
|
|
|
|
+ ids: [],
|
|
|
|
+ // 非单个禁用
|
|
|
|
+ single: true,
|
|
|
|
+ // 非多个禁用
|
|
|
|
+ multiple: true,
|
|
|
|
+ // 显示搜索条件
|
|
|
|
+ showSearch: true,
|
|
|
|
+ // 总条数
|
|
|
|
+ total: 0,
|
|
|
|
+ // 抢险救援队表格数据
|
|
|
|
+ teamList: [],
|
|
|
|
+ // 弹出层标题
|
|
|
|
+ title: "",
|
|
|
|
+ // 是否显示弹出层
|
|
|
|
+ open: false,
|
|
|
|
+ // 查询参数
|
|
|
|
+ queryParams: {
|
|
|
|
+ pageNum: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ name: null,
|
|
|
|
+ userName: null,
|
|
|
|
+ dept: null,
|
|
|
|
+ post: null,
|
|
|
|
+ company: null,
|
|
|
|
+ emergencyRescue: null,
|
|
|
|
+ city: null,
|
|
|
|
+ area: null,
|
|
|
|
+ township: null,
|
|
|
|
+ village: null,
|
|
|
|
+ phone: null,
|
|
|
|
+ effect: null,
|
|
|
|
+ longitude: null,
|
|
|
|
+ latitude: null
|
|
|
|
+ },
|
|
|
|
+ // 表单参数
|
|
|
|
+ form: {},
|
|
|
|
+ // 表单校验
|
|
|
|
+ rules: {}
|
|
|
|
+ };
|
|
|
|
+ },
|
|
|
|
+ created() {
|
|
|
|
+ this.getList();
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ /** 查询抢险救援队列表 */
|
|
|
|
+ getList() {
|
|
|
|
+ this.loading = true;
|
|
|
|
+ listTeam(this.queryParams).then(response => {
|
|
|
|
+ this.teamList = response.rows;
|
|
|
|
+ this.total = response.total;
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 取消按钮
|
|
|
|
+ cancel() {
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.reset();
|
|
|
|
+ },
|
|
|
|
+ // 表单重置
|
|
|
|
+ reset() {
|
|
|
|
+ this.form = {
|
|
|
|
+ id: null,
|
|
|
|
+ name: null,
|
|
|
|
+ userName: null,
|
|
|
|
+ dept: null,
|
|
|
|
+ post: null,
|
|
|
|
+ company: null,
|
|
|
|
+ emergencyRescue: null,
|
|
|
|
+ city: null,
|
|
|
|
+ area: null,
|
|
|
|
+ township: null,
|
|
|
|
+ village: null,
|
|
|
|
+ phone: null,
|
|
|
|
+ effect: null,
|
|
|
|
+ longitude: null,
|
|
|
|
+ latitude: 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
|
|
|
|
+ },
|
|
|
|
+ /** 新增按钮操作 */
|
|
|
|
+ handleAdd() {
|
|
|
|
+ this.reset();
|
|
|
|
+ this.open = true;
|
|
|
|
+ this.title = "添加抢险救援队";
|
|
|
|
+ },
|
|
|
|
+ /** 修改按钮操作 */
|
|
|
|
+ handleUpdate(row) {
|
|
|
|
+ this.reset();
|
|
|
|
+ const id = row.id || this.ids
|
|
|
|
+ getTeam(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){
|
|
|
|
+ updateTeam(this.form).then(response => {
|
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
|
+ this.open = false;
|
|
|
|
+ this.getList();
|
|
|
|
+ });
|
|
|
|
+ }else{
|
|
|
|
+ addTeam(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 delTeam(ids);
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ /** 导出按钮操作 */
|
|
|
|
+ handleExport() {
|
|
|
|
+ this.download('system/team/export', {
|
|
|
|
+ ...this.queryParams
|
|
|
|
+ }, `team_${new Date().getTime()}.xlsx`)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+;
|
|
|
|
+</script>
|