|
@@ -28,43 +28,6 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="已经检验(是/否)" prop="checked">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.checked"
|
|
|
- placeholder="请输入已经检验(是/否)"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="符合要求(是/否)" prop="require">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.require"
|
|
|
- placeholder="请输入符合要求(是/否)"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="在有效期内(是/否)" prop="validity">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.validity"
|
|
|
- placeholder="请输入在有效期内(是/否)"
|
|
|
- clearable
|
|
|
- size="small"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
-
|
|
|
- <el-form-item label="时间" prop="confirmationDate">
|
|
|
- <el-date-picker clearable size="small" style="width: 200px"
|
|
|
- v-model="queryParams.confirmationDate"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="选择时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
-
|
|
|
<el-form-item>
|
|
|
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -79,7 +42,9 @@
|
|
|
size="mini"
|
|
|
@click="handleAdd"
|
|
|
v-hasPermi="['pssr:pipe:add']"
|
|
|
- >新增</el-button>
|
|
|
+ v-if="isApprove==0"
|
|
|
+ >新增
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -89,7 +54,9 @@
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
v-hasPermi="['pssr:pipe:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ v-if="isApprove==0"
|
|
|
+ >修改
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -99,34 +66,31 @@
|
|
|
:disabled="multiple"
|
|
|
@click="handleDelete"
|
|
|
v-hasPermi="['pssr:pipe:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ v-if="isApprove==0"
|
|
|
+ >删除
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="info"
|
|
|
- icon="el-icon-upload2"
|
|
|
- size="mini"
|
|
|
- @click="handleImport"
|
|
|
- v-hasPermi="['pssr:pipe:edit']"
|
|
|
- >导入</el-button>
|
|
|
- </el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="warning"
|
|
|
- icon="el-icon-download"
|
|
|
+ type="info"
|
|
|
+ icon="el-icon-upload2"
|
|
|
size="mini"
|
|
|
- @click="handleExport"
|
|
|
- v-hasPermi="['pssr:pipe:export']"
|
|
|
- >导出</el-button>
|
|
|
+ @click="handleImport"
|
|
|
+ v-hasPermi="['pssr:pipe:edit']"
|
|
|
+ v-if="isApprove==0"
|
|
|
+ >导入
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
- type="primary"
|
|
|
- icon="el-icon-plus"
|
|
|
+ type="warning"
|
|
|
+ icon="el-icon-download"
|
|
|
size="mini"
|
|
|
- @click="handleSync"
|
|
|
- v-hasPermi="['pssr:pipe:add']"
|
|
|
- >同步特种设备数据</el-button>
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['pssr:pipe:export']"
|
|
|
+ v-if="isApprove==0"
|
|
|
+ >导出
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -135,7 +99,7 @@
|
|
|
size="mini"
|
|
|
@click="handleApprove"
|
|
|
v-if="isApprove==0"
|
|
|
- v-hasPermi="['pssr:overhaulExchanger:edit']"
|
|
|
+ v-hasPermi="['pssr:pipe:edit']"
|
|
|
>发起审批
|
|
|
</el-button>
|
|
|
</el-col>
|
|
@@ -144,12 +108,34 @@
|
|
|
type="primary"
|
|
|
icon="el-icon-check"
|
|
|
size="mini"
|
|
|
- v-if="isApprove==1"
|
|
|
+ v-if="isApprove==4||isApprove==5"
|
|
|
@click="handleConfirmApprove"
|
|
|
- v-hasPermi="['pssr:overhaulExchanger:edit']"
|
|
|
+ v-hasPermi="['pssr:pipe:edit']"
|
|
|
>确认
|
|
|
</el-button>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ icon="el-icon-refresh-left"
|
|
|
+ size="mini"
|
|
|
+ v-if="isApprove==2"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleTurnDown"
|
|
|
+ v-hasPermi="['pssr:pipe:edit']"
|
|
|
+ >驳回
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleSync"
|
|
|
+ v-hasPermi="['pssr:pipe:add']"
|
|
|
+ >同步特种设备数据
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="success"
|
|
@@ -158,28 +144,50 @@
|
|
|
:disabled="multiple"
|
|
|
@click="handleBatch"
|
|
|
v-hasPermi="['pssr:pipe:edit']"
|
|
|
- >批量操作</el-button>
|
|
|
+ >批量操作
|
|
|
+ </el-button>
|
|
|
</el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="pipeList" @selection-change="handleSelectionChange" :height="clientHeight" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table v-loading="loading" :data="pipeList" @selection-change="handleSelectionChange" :height="clientHeight"
|
|
|
+ border>
|
|
|
+ <el-table-column type="selection" width="55" align="center"/>
|
|
|
+ <el-table-column label="审批状态" align="center" prop="approveStatus" :show-overflow-tooltip="true" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag v-if="scope.row.approveStatus==0">未审批</el-tag>
|
|
|
+ <el-tag v-if="scope.row.approveStatus==1" type="warning">待确认</el-tag>
|
|
|
+ <el-tag v-if="scope.row.approveStatus==3" type="success">已确认1</el-tag>
|
|
|
+ <el-tag v-if="scope.row.approveStatus==2" type="success">已确认2</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="单元号" align="center" prop="unit" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="管道名称" align="center" prop="pipelineName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="管道编号" align="center" prop="pipelineNo" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="已经检验(是/否)" align="center" prop="checked" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="符合要求(是/否)" align="center" prop="require" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="在有效期内(是/否)" align="center" prop="validity" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="确认人1" align="center" prop="confirmer1" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="确认人2" align="center" prop="confirmer2" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="检查内容" align="center">
|
|
|
+ <el-table-column label="已经检验(是/否)" align="center" prop="checked" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="符合要求(是/否)" align="center" prop="require" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="在有效期内(是/否)" align="center" prop="validity" :show-overflow-tooltip="true"/>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="确认人1" align="center" prop="confirmer1" :show-overflow-tooltip="true"
|
|
|
+ width="150">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ userFormat(scope.row.confirmer1) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="确认人2" align="center" prop="confirmer2" :show-overflow-tooltip="true"
|
|
|
+ width="150">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ userFormat(scope.row.confirmer2) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="确认时间" align="center" prop="confirmationDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.confirmationDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" width="120" v-if="isApprove==0" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
@@ -187,14 +195,16 @@
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['pssr:pipe:edit']"
|
|
|
- >修改</el-button>
|
|
|
+ >修改
|
|
|
+ </el-button>
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
icon="el-icon-delete"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
v-hasPermi="['pssr:pipe:remove']"
|
|
|
- >删除</el-button>
|
|
|
+ >删除
|
|
|
+ </el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -211,39 +221,51 @@
|
|
|
<el-dialog :close-on-click-modal="false" :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="unit">
|
|
|
- <el-input v-model="form.unit" placeholder="请输入单元号" />
|
|
|
+ <el-input v-model="form.unit" placeholder="请输入单元号"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="管道名称" prop="pipelineName">
|
|
|
- <el-input v-model="form.pipelineName" placeholder="请输入管道名称" />
|
|
|
+ <el-input v-model="form.pipelineName" placeholder="请输入管道名称"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="管道编号" prop="pipelineNo">
|
|
|
- <el-input v-model="form.pipelineNo" placeholder="请输入管道编号" />
|
|
|
+ <el-input v-model="form.pipelineNo" placeholder="请输入管道编号"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="已经检验(是/否)" prop="checked">
|
|
|
- <el-input v-model="form.checked" placeholder="请输入已经检验(是/否)" />
|
|
|
+ <el-input v-model="form.checked" placeholder="请输入已经检验(是/否)"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="符合要求(是/否)" prop="require">
|
|
|
- <el-input v-model="form.require" placeholder="请输入符合要求(是/否)" />
|
|
|
+ <el-input v-model="form.require" placeholder="请输入符合要求(是/否)"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="在有效期内(是/否)" prop="validity">
|
|
|
- <el-input v-model="form.validity" placeholder="请输入在有效期内(是/否)" />
|
|
|
+ <el-input v-model="form.validity" placeholder="请输入在有效期内(是/否)"/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="确认人1" prop="confirmer1">
|
|
|
- <el-input v-model="form.confirmer1" placeholder="请输入确认人1" />
|
|
|
+ <el-select v-model="form.confirmer1" clearable filterable style="width: 100%;"
|
|
|
+ placeholder="请选择确认人1">
|
|
|
+ <el-option v-for="user in userOptions"
|
|
|
+ :label="user.nickName"
|
|
|
+ :value="user.userId+''"
|
|
|
+ :key="user.userId"/>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="确认人2" prop="confirmer2">
|
|
|
- <el-input v-model="form.confirmer2" placeholder="请输入确认人2" />
|
|
|
+ <el-select v-model="form.confirmer2" clearable filterable style="width: 100%;"
|
|
|
+ placeholder="请选择确认人2">
|
|
|
+ <el-option v-for="user in userOptions"
|
|
|
+ :label="user.nickName"
|
|
|
+ :value="user.userId+''"
|
|
|
+ :key="user.userId"/>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="时间确认" prop="confirmationDate">
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
- v-model="form.confirmationDate"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="选择时间">
|
|
|
+ v-model="form.confirmationDate"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择时间">
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="备注" prop="remarks">
|
|
|
- <el-input v-model="form.remarks" placeholder="请输入备注" />
|
|
|
+ <el-input v-model="form.remarks" placeholder="请输入备注"/>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -254,15 +276,27 @@
|
|
|
|
|
|
<!-- 添加或修改管道对话框 -->
|
|
|
<el-dialog :close-on-click-modal="false" title="批量修改" :visible.sync="openBatch" width="500px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" label-width="80px">
|
|
|
+ <el-form ref="form" :model="form" label-width="80px">
|
|
|
<el-form-item>
|
|
|
<span>已选择 {{ ids.length }} 条数据</span>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="确认人1" prop="confirmer1">
|
|
|
- <el-input v-model="form.confirmer1" placeholder="请输入确认人1" />
|
|
|
+ <el-select v-model="form.confirmer1" clearable filterable style="width: 100%;"
|
|
|
+ placeholder="请选择确认人1">
|
|
|
+ <el-option v-for="user in userOptions"
|
|
|
+ :label="user.nickName"
|
|
|
+ :value="user.userId+''"
|
|
|
+ :key="user.userId"/>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="确认人2" prop="confirmer2">
|
|
|
- <el-input v-model="form.confirmer2" placeholder="请输入确认人2" />
|
|
|
+ <el-select v-model="form.confirmer2" clearable filterable style="width: 100%;"
|
|
|
+ placeholder="请选择确认人2">
|
|
|
+ <el-option v-for="user in userOptions"
|
|
|
+ :label="user.nickName"
|
|
|
+ :value="user.userId+''"
|
|
|
+ :key="user.userId"/>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="时间确认" prop="confirmationDate">
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
@@ -273,7 +307,7 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="备注" prop="remarks">
|
|
|
- <el-input v-model="form.remarks" placeholder="请输入备注" />
|
|
|
+ <el-input v-model="form.remarks" placeholder="请输入备注"/>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -281,52 +315,66 @@
|
|
|
<el-button @click="cancelBatch">取 消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
- <!-- 用户导入对话框 -->
|
|
|
- <el-dialog :close-on-click-modal="false" :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" slot="tip">
|
|
|
- <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
|
|
|
- <el-link type="info" style="font-size:12px" @click="importTemplate">下载模板</el-link>
|
|
|
- </div>
|
|
|
- <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
|
|
|
- </el-upload>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
- <el-button @click="upload.open = false">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
+ <!-- 用户导入对话框 -->
|
|
|
+ <el-dialog :close-on-click-modal="false" :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" slot="tip">
|
|
|
+ <el-checkbox v-model="upload.updateSupport"/>
|
|
|
+ 是否更新已经存在的用户数据
|
|
|
+ <el-link type="info" style="font-size:12px" @click="importTemplate">下载模板</el-link>
|
|
|
+ </div>
|
|
|
+ <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
|
|
|
+ </el-upload>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitFileForm">确 定</el-button>
|
|
|
+ <el-button @click="upload.open = false">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listPipe,syncPipe, getPipe, delPipe, addPipe, updatePipe, exportPipe, importTemplate,updatePipeBatch} from "@/api/pssr/pipe";
|
|
|
-import { treeselect } from "@/api/system/dept";
|
|
|
-import { getToken } from "@/utils/auth";
|
|
|
+import {
|
|
|
+ addPipe,
|
|
|
+ delPipe,
|
|
|
+ exportPipe,
|
|
|
+ getPipe,
|
|
|
+ handleConfirmPipe,
|
|
|
+ handleTurnDownPipe,
|
|
|
+ importTemplate,
|
|
|
+ listPipe,
|
|
|
+ syncPipe,
|
|
|
+ updatePipe,
|
|
|
+ updatePipeBatch
|
|
|
+} from "@/api/pssr/pipe";
|
|
|
+import {treeselect} from "@/api/system/dept";
|
|
|
+import {getToken} from "@/utils/auth";
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
import {doApprove} from "@/api/pssr/approve";
|
|
|
-import {handleConfirmApprove} from "@/api/pssr/blind";
|
|
|
+import {listUserNoPage} from "@/api/system/user";
|
|
|
|
|
|
export default {
|
|
|
- dicts:['pssr_approve_status'],
|
|
|
+ dicts: ['pssr_approve_status'],
|
|
|
name: "Pipe",
|
|
|
- components: { Treeselect },
|
|
|
+ components: {Treeselect},
|
|
|
props: {
|
|
|
subId: {
|
|
|
type: Number,
|
|
@@ -339,6 +387,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ userOptions: [],
|
|
|
// 遮罩层
|
|
|
loading: true,
|
|
|
// 选中数组
|
|
@@ -357,25 +406,25 @@ export default {
|
|
|
title: "",
|
|
|
// 部门树选项
|
|
|
deptOptions: undefined,
|
|
|
- clientHeight:300,
|
|
|
+ clientHeight: 300,
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
openBatch: false,
|
|
|
- // 用户导入参数
|
|
|
- upload: {
|
|
|
- // 是否显示弹出层(用户导入)
|
|
|
- open: false,
|
|
|
- // 弹出层标题(用户导入)
|
|
|
- title: "",
|
|
|
- // 是否禁用上传
|
|
|
- isUploading: false,
|
|
|
- // 是否更新已经存在的用户数据
|
|
|
- updateSupport: 0,
|
|
|
- // 设置上传的请求头部
|
|
|
- headers: { Authorization: "Bearer " + getToken() },
|
|
|
- // 上传的地址
|
|
|
- url: process.env.VUE_APP_BASE_API + "/pssr/pipe/importData"
|
|
|
- },
|
|
|
+ // 用户导入参数
|
|
|
+ upload: {
|
|
|
+ // 是否显示弹出层(用户导入)
|
|
|
+ open: false,
|
|
|
+ // 弹出层标题(用户导入)
|
|
|
+ title: "",
|
|
|
+ // 是否禁用上传
|
|
|
+ isUploading: false,
|
|
|
+ // 是否更新已经存在的用户数据
|
|
|
+ updateSupport: 0,
|
|
|
+ // 设置上传的请求头部
|
|
|
+ headers: {Authorization: "Bearer " + getToken()},
|
|
|
+ // 上传的地址
|
|
|
+ url: process.env.VUE_APP_BASE_API + "/pssr/pipe/importData"
|
|
|
+ },
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -401,26 +450,25 @@ export default {
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
- rules: {
|
|
|
- }
|
|
|
+ rules: {}
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
|
- // 根据名称筛选部门树
|
|
|
- deptName(val) {
|
|
|
- this.$refs.tree.filter(val);
|
|
|
- }
|
|
|
- },
|
|
|
+ // 根据名称筛选部门树
|
|
|
+ deptName(val) {
|
|
|
+ this.$refs.tree.filter(val);
|
|
|
+ }
|
|
|
+ },
|
|
|
created() {
|
|
|
- const id = this.$route.params.subId
|
|
|
- const serialNumber = this.$route.params.serialNumber
|
|
|
- this.subId = id
|
|
|
- //设置表格高度对应屏幕高度
|
|
|
- this.$nextTick(() => {
|
|
|
- this.clientHeight = document.body.clientHeight - 350
|
|
|
- })
|
|
|
+ //设置表格高度对应屏幕高度
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.clientHeight = document.body.clientHeight - 350
|
|
|
+ })
|
|
|
this.getList();
|
|
|
this.getTreeselect();
|
|
|
+ listUserNoPage({}).then(res => {
|
|
|
+ this.userOptions = res.data
|
|
|
+ });
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询管道列表 */
|
|
@@ -432,12 +480,12 @@ export default {
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|
|
|
- /** 查询部门下拉树结构 */
|
|
|
- getTreeselect() {
|
|
|
- treeselect().then(response => {
|
|
|
- this.deptOptions = response.data;
|
|
|
- });
|
|
|
- },
|
|
|
+ /** 查询部门下拉树结构 */
|
|
|
+ getTreeselect() {
|
|
|
+ treeselect().then(response => {
|
|
|
+ this.deptOptions = response.data;
|
|
|
+ });
|
|
|
+ },
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
@@ -481,7 +529,7 @@ export default {
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
this.ids = selection.map(item => item.id)
|
|
|
- this.single = selection.length!==1
|
|
|
+ this.single = selection.length !== 1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
@@ -490,7 +538,7 @@ export default {
|
|
|
this.open = true;
|
|
|
this.title = "添加管道";
|
|
|
},
|
|
|
- handleBatch(){
|
|
|
+ handleBatch() {
|
|
|
this.reset();
|
|
|
this.openBatch = true
|
|
|
},
|
|
@@ -503,17 +551,17 @@ export default {
|
|
|
submitFormBatch() {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
if (valid) {
|
|
|
- this.form.ids = this.ids
|
|
|
- updatePipeBatch(this.form).then(response => {
|
|
|
- this.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
+ this.form.ids = this.ids
|
|
|
+ updatePipeBatch(this.form).then(response => {
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
//同步特种设备数据
|
|
|
- handleSync(){
|
|
|
+ handleSync() {
|
|
|
this.loading = true;
|
|
|
syncPipe(this.queryParams).then(response => {
|
|
|
this.pipeList = response.rows;
|
|
@@ -555,15 +603,55 @@ export default {
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
this.$confirm('是否确认删除?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }).then(function() {
|
|
|
- return delPipe(ids);
|
|
|
- }).then(() => {
|
|
|
- this.getList();
|
|
|
- this.msgSuccess("删除成功");
|
|
|
- })
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function () {
|
|
|
+ return delPipe(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ const queryParams = this.queryParams;
|
|
|
+ this.$confirm('是否确认导出所有管道数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function () {
|
|
|
+ return exportPipe(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.download(response.msg);
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 导入按钮操作 */
|
|
|
+ handleImport() {
|
|
|
+ this.upload.title = "用户导入";
|
|
|
+ this.upload.open = true;
|
|
|
+ },
|
|
|
+ /** 下载模板操作 */
|
|
|
+ importTemplate() {
|
|
|
+ importTemplate().then(response => {
|
|
|
+ this.download(response.msg);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 文件上传中处理
|
|
|
+ handleFileUploadProgress(event, file, fileList) {
|
|
|
+ this.upload.isUploading = true;
|
|
|
+ },
|
|
|
+ // 文件上传成功处理
|
|
|
+ handleFileSuccess(response, file, fileList) {
|
|
|
+ this.upload.open = false;
|
|
|
+ this.upload.isUploading = false;
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
+ this.$alert(response.msg, "导入结果", {dangerouslyUseHTMLString: true});
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ // 提交上传文件
|
|
|
+ submitFileForm() {
|
|
|
+ this.$refs.upload.submit();
|
|
|
},
|
|
|
/** 确认按钮操作*/
|
|
|
handleApprove() {
|
|
@@ -572,59 +660,45 @@ export default {
|
|
|
this.getList();
|
|
|
})
|
|
|
},
|
|
|
- checkSelectable(row) {
|
|
|
- return (row.approveStatus == 1 && this.isApprove != 0) || this.isApprove == 0
|
|
|
- },
|
|
|
handleConfirmApprove() {
|
|
|
let data = {
|
|
|
ids: this.ids,
|
|
|
subId: this.subId,
|
|
|
+ taskType: this.isApprove
|
|
|
}
|
|
|
- handleConfirmApprove(data).then(res => {
|
|
|
+ handleConfirmPipe(data).then(res => {
|
|
|
this.msgSuccess("确认成功");
|
|
|
this.getList()
|
|
|
+ this.$emit('refreshHisList');
|
|
|
})
|
|
|
},
|
|
|
- /** 导出按钮操作 */
|
|
|
- handleExport() {
|
|
|
- const queryParams = this.queryParams;
|
|
|
- this.$confirm('是否确认导出所有管道数据项?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
- }).then(function() {
|
|
|
- return exportPipe(queryParams);
|
|
|
- }).then(response => {
|
|
|
- this.download(response.msg);
|
|
|
+ handleTurnDown(val) {
|
|
|
+ this.$prompt('请输入驳回原因', '提示', {
|
|
|
+ confirmButtonText: '确认驳回',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ }).then(({value}) => {
|
|
|
+ let data = {
|
|
|
+ ids: this.ids,
|
|
|
+ subId: this.subId,
|
|
|
+ remarks: value
|
|
|
+ }
|
|
|
+ handleTurnDownPipe(data).then(res => {
|
|
|
+ this.msgSuccess("驳回成功");
|
|
|
})
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '取消驳回'
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
- /** 导入按钮操作 */
|
|
|
- handleImport() {
|
|
|
- this.upload.title = "用户导入";
|
|
|
- this.upload.open = true;
|
|
|
- },
|
|
|
- /** 下载模板操作 */
|
|
|
- importTemplate() {
|
|
|
- importTemplate().then(response => {
|
|
|
- this.download(response.msg);
|
|
|
- });
|
|
|
- },
|
|
|
- // 文件上传中处理
|
|
|
- handleFileUploadProgress(event, file, fileList) {
|
|
|
- this.upload.isUploading = true;
|
|
|
- },
|
|
|
- // 文件上传成功处理
|
|
|
- handleFileSuccess(response, file, fileList) {
|
|
|
- this.upload.open = false;
|
|
|
- this.upload.isUploading = false;
|
|
|
- this.$refs.upload.clearFiles();
|
|
|
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- // 提交上传文件
|
|
|
- submitFileForm() {
|
|
|
- this.$refs.upload.submit();
|
|
|
+ userFormat(userId) {
|
|
|
+ for (let item of this.userOptions) {
|
|
|
+ if (item.userId == userId) {
|
|
|
+ return item.nickName
|
|
|
+ }
|
|
|
}
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
</script>
|