123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="阀井名称" prop="valveWellName">
- <el-input
- v-model="queryParams.valveWellName"
- placeholder="请输入阀井名称"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="位置" prop="position">
- <el-input
- v-model="queryParams.position"
- placeholder="请输入位置"
- clearable
- size="small"
- @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="['gas:valveWellPosition: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="['gas:valveWellPosition: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="['gas:valveWellPosition:remove']"
- >删除</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['system:user:import']"
- >导入
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- :loading="exportLoading"
- @click="handleExport"
- v-hasPermi="['gas:valveWellPosition:export']"
- >导出</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="valveWellPositionList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="" align="center" prop="id" v-if="false"/>
- <el-table-column label="序列" width="70">
- <template slot-scope="scope">
- {{(queryParams.pageNum-1)*queryParams.pageSize+scope.$index+1}}
- </template>
- </el-table-column>
- <el-table-column label="阀井名称" align="center" prop="valveWellName" />
- <el-table-column label="位置" align="center" prop="position" />
- <el-table-column label="经度" align="center" prop="longitude" />
- <el-table-column label="纬度" align="center" prop="latitude" />
- <el-table-column label="控制区域" align="center" prop="remark" />
- <el-table-column label="行政区" align="center" prop="district" >
- <template slot-scope="scope">
- <dict-tag :options="dict.type.district" :value="scope.row.district"/>
- </template>
- </el-table-column>
- <el-table-column label="队伍" align="center" prop="team" />
- <el-table-column label="阀头形状" align="center" prop="valveHeadShape" />
- <el-table-column label="阀井深度(米)" align="center" prop="valveWellDepth" />
- <el-table-column label="井盖代别" align="center" prop="manholeCoverInstead" />
- <el-table-column label="积水情况" align="center" prop="waterCondition" />
- <el-table-column label="压力等级" align="center" prop="pressureRating" />
- <el-table-column label="是否需要下井才能开关阀门" align="center" prop="isXyxjcnkg" />
- <el-table-column label="备注" align="center" prop="remarks" />
- <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="['gas:valveWellPosition:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['gas:valveWellPosition:remove']"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 用户导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url + '?updateSupport=' + upload.updateSupport"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <!--<div class="el-upload__tip" slot="tip">-->
- <!--<el-checkbox v-model="upload.updateSupport"/>-->
- <!--是否更新已经存在的用户数据-->
- <!--</div>-->
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;"
- @click="importTemplate"
- >下载模板
- </el-link>
- </div>
- </el-upload>
- <div style="padding-top: 15px;line-height: 25px;font-size: 14px;">
- 完成度:{{ bfb }}%
- <progress max="100" :value="bfb" style="width: 200px;height: 18px;"></progress>
- <br>
- 导入结果:{{ jdtMsg }}
- </div>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false;bfb='0';jdtMsg=''">取 消</el-button>
- </div>
- </el-dialog>
- <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="850px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="180px" :inline="true">
- <el-form-item label="阀井名称" prop="valveWellName">
- <el-input v-model="form.valveWellName" placeholder="请输入阀井名称" />
- </el-form-item>
- <el-form-item label="位置" prop="position">
- <el-input v-model="form.position" 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-item label="控制区域" prop="remark">
- <el-input v-model="form.remark" placeholder="请输入内容"/>
- </el-form-item>
- <el-form-item label="行政区" prop="district">
- <el-select v-model="form.district" placeholder="请选择行政区" style="width: 202px">
- <el-option
- v-for="dict in dict.type.district"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="阀头形状" prop="valveHeadShape">
- <el-input v-model="form.valveHeadShape" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="队伍" prop="team">
- <el-select v-model="form.team" clearable placeholder="请选择队伍" style="width: 202px">
- <el-option
- v-for="item in postOptions"
- :key="item.postName"
- :label="item.postName"
- :value="item.postName"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="阀井深度(米)" prop="valveWellDepth">
- <el-input v-model="form.valveWellDepth" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="井盖代别" prop="manholeCoverInstead" >
- <el-input v-model="form.manholeCoverInstead" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="积水情况" prop="waterCondition">
- <el-input v-model="form.waterCondition" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="压力等级" prop="pressureRating">
- <el-input v-model="form.pressureRating" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="是否需要下井才能开关阀门" prop="isXyxjcnkg">
- <el-input v-model="form.isXyxjcnkg" placeholder="请输入内容" />
- </el-form-item>
- <el-form-item label="备注" prop="remarks">
- <el-input v-model="form.remarks" placeholder="请输入内容" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listValveWellPosition, getValveWellPosition, delValveWellPosition, addValveWellPosition, updateValveWellPosition } from "@/api/gas/valveWellPosition";
- import {listPostAll} from "@/api/system/post";
- import {getToken} from "@/utils/auth";
- import {clearFlushProgress, clearFlushProgressA, flushProgress, flushProgressA} from "@/api/gas/area";
- export default {
- name: "ValveWellPosition",
- dicts: ['district'],
- data() {
- return {
- //进度条
- timeInterval: null,
- bfb: '0',
- jdtMsg: '',
- // 按钮loading
- buttonLoading: false,
- // 遮罩层
- loading: true,
- // 导出遮罩层
- exportLoading: false,
- // 岗位选项
- postOptions: [],
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 阀井位置表格数据
- valveWellPositionList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- valveWellName: undefined,
- position: undefined,
- longitude: undefined,
- latitude: undefined,
- },
- // 表单参数
- form: {},
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: '',
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: 'Bearer ' + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + '/gas/valveWellPosition/importData'
- },
- // 表单校验
- rules: {
- id: [
- { required: true, message: "不能为空", trigger: "blur" }
- ],
- valveWellName: [
- { required: true, message: "阀井名称不能为空", trigger: "blur" }
- ],
- position: [
- { required: true, message: "位置不能为空", trigger: "blur" }
- ],
- longitude: [
- { required: true, message: "经度不能为空", trigger: "blur" }
- ],
- latitude: [
- { required: true, message: "纬度不能为空", trigger: "blur" }
- ],
- }
- };
- },
- created() {
- this.getPostList();
- this.getList();
- },
- methods: {
- /** 下载模板操作 */
- importTemplate() {
- this.$download.excel('/gas/valveWellPosition/importTemplate')
- },
- // 提交上传文件
- submitFileForm() {
- const ther = this
- this.timeInterval = setInterval(function() {
- ther.flushProgress()
- }, 1500)
- this.$refs.upload.submit()
- },
- // 提交上传文件
- flushProgress() {
- flushProgressA().then(response => {
- this.bfb = parseInt(response.data.bfb) >= 100 ? 100 : response.data.bfb
- this.jdtMsg = response.data.message
- if (response.data.message != null && response.data.message != '') {
- clearFlushProgressA().then(response => {
- })
- clearInterval(this.timeInterval)
- }
- })
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.isUploading = false
- this.$refs.upload.clearFiles()
- this.getList()
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = '导入'
- this.upload.open = true
- },
- getPostList(){
- listPostAll({remark:'ranks'}).then(response => {
- this.postOptions = response.data;
- });
- },
- /** 查询阀井位置列表 */
- getList() {
- this.loading = true;
- listValveWellPosition(this.queryParams).then(response => {
- this.valveWellPositionList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: undefined,
- valveWellName: undefined,
- position: undefined,
- longitude: undefined,
- latitude: undefined,
- remark: undefined,
- delFlag: undefined,
- createBy: undefined,
- createTime: undefined,
- updateBy: undefined,
- updateTime: undefined
- };
- 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.loading = true;
- this.reset();
- const id = row.id || this.ids
- getValveWellPosition(id).then(response => {
- this.loading = false;
- this.form = response.data;
- this.open = true;
- this.title = "修改阀井位置";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- this.buttonLoading = true;
- if (this.form.id != null) {
- updateValveWellPosition(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- }).finally(() => {
- this.buttonLoading = false;
- });
- } else {
- addValveWellPosition(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- }).finally(() => {
- this.buttonLoading = false;
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal.confirm('是否确认删除阀井位置数据项?').then(() => {
- this.loading = true;
- return delValveWellPosition(ids);
- }).then(() => {
- this.loading = false;
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).finally(() => {
- this.loading = false;
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- this.$download.excel('/gas/valveWellPosition/export', this.queryParams);
- }
- }
- };
- </script>
- <style>
- .ftzt-class{
- ::v-deep .el-form-item--medium .el-form-item__label{
- width: 165px !important;
- }
- }
- </style>
|