123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- <template >
- <div class="app-container">
- <el-table v-loading="loading" :data="approvedangerList" @selection-change="handleSelectionChange" :height="clientHeight" border>
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column :label="$t('流程')+' '+ $t('ID')" align="center" prop="processId" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('流程')+' ' + $t('名称')" align="center" prop="processName" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('流程')+' ' + $t('创建时间')" align="center" prop="processCreateTime" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('待办任务')+' ' + $t('名称')" align="center" prop="taskName" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('待办任务')+' ' + $t('创建时间')" align="center" prop="taskCreateTime" :show-overflow-tooltip="true"/>
- <el-table-column :label="$t('申请编号')" align="center" prop="apNo" :show-overflow-tooltip="true">
- <!-- <template slot-scope="scope">-->
- <!-- <span v-if="scope.row.processName === ($t('事件') + $t('审批流程')) ">{{scope.row.tApproveAccident.approveNo}}</span>-->
- <!-- <span v-if="scope.row.processName === ($t('重大隐患') + $t('审批流程') )|| scope.row.processName === ($t('普通隐患') + $t('审批流程') )">{{scope.row.tApprove.approveNo}}</span>-->
- <!-- </template>-->
- </el-table-column>
- <el-table-column :label="$t('操作')" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="addOrUpdateHandle(scope.row)"
- >{{ $t('处理') }}</el-button>
- <el-button
- size="mini"
- type="text"
- @click="processImg(scope.row.processId)"
- >{{ $t('流程图') }}</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"
- />
- <!-- 弹窗, 新增 / 修改 -->
- <div v-if="addOrUpdateVisible">
- <el-dialog v-dialogDrag :visible.sync="addOrUpdateVisible" :destroy-on-close="true">
- <add-or-update v-if="this.infoprocessName === ($t('重大隐患')+' '+ $t('审批流程') )|| this.infoprocessName === ($t('普通隐患')+' ' + $t('审批流程') )" :info="approveInfo"></add-or-update>
- <accident v-if="this.infoprocessName === ($t('事件')+ $t('审批流程'))" :info="approveInfo" @recordInfo="approveChange($event)"></accident>
- <el-form>
- <el-form-item :label="$t('上传措施前照片')" prop="before" v-if="this.infoTaskName === '执行人'">
- <el-upload
- ref="uploadbefore"
- :limit="1"
- :headers="uploadbefore.headers"
- :action="uploadbefore.url"
- :disabled="uploadbefore.isUploading"
- :on-progress="handleFileUploadProgressBefore"
- :on-success="handleFileSuccessBefore"
- :auto-upload="true"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- {{ $t('将文件拖到此处,或') }}
- <em>{{ $t('点击上传') }}</em>
- </div>
- </el-upload>
- </el-form-item>
- <el-form-item :label="$t('上传措施后照片')" prop="after" v-if="this.infoTaskName === $t('执行人')">
- <el-upload
- ref="uploadafter"
- :limit="1"
- :headers="uploadafter.headers"
- :action="uploadafter.url"
- :disabled="uploadafter.isUploading"
- :on-progress="handleFileUploadProgressAfter"
- :on-success="handleFileSuccessAfter"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- {{ $t('将文件拖到此处,或') }}
- <em>{{ $t('点击上传') }}</em>
- </div>
- </el-upload>
- </el-form-item>
- <el-form-item :label="$t('审批意见')" prop="comment">
- <el-input v-model="comment" :placeholder="$t('请输入') + $t('审批意见')" maxlength="100" show-word-limit></el-input>
- </el-form-item>
- </el-form>
- <span v-if="this.infoprocessName === ($t('重大隐患')+' ' + $t('审批流程') ) || this.infoprocessName === ($t('普通隐患')+' ' + $t('审批流程') )" slot="footer">
- <span v-if="this.infoTaskName === $t('执行人')" class="dialog-footer">
- <el-button type="primary" @click="dataFormSubmit(1)">{{ $t('已完成') }}</el-button>
- <el-button type="danger" @click="dataFormSubmit(0)">{{ $t('无法执行') }}</el-button>
- </span>
- <span v-if="this.infoTaskName === $t('验证人')" class="dialog-footer">
- <el-button type="primary" @click="dataFormSubmit(1)">{{ $t('通过') }}</el-button>
- <el-button type="danger" @click="dataFormSubmit(0)">{{ $t('无效') }}</el-button>
- <el-button type="warning" @click="dataFormSubmit(2)">{{ $t('未达标') }}</el-button>
- </span>
- <span v-if="this.infoTaskName === $t('记录人')" class="dialog-footer">
- <el-button type="primary" @click="dataFormSubmit(1)">{{ $t('重新提交') }}</el-button>
- </span>
- <span v-if="this.infoTaskName === $t('确认')" class="dialog-footer">
- <el-button type="primary" @click="dataFormSubmit(1)">{{ $t('确认') }}</el-button>
- <el-button type="danger" @click="dataFormSubmit(0)">{{ $t('确认')+' ' + $t('不通过') }}</el-button>
- </span>
- </span>
- <span v-if="this.infoprocessName === ($t('事件') + $t('审批流程'))" slot="footer">
- <span v-if="this.infoTaskName === $t('记录人')" class="dialog-footer">
- <el-button type="primary" @click="dataFormSubmit(1)">{{ $t('提交') }}</el-button>
- </span>
- </span>
- </el-dialog>
- </div>
- <add-or-update v-if="specDealVisible" ref="specDeal" @refreshDataList="getList"></add-or-update>
- <spec-modify v-if="specModifyDealVisible" ref="specModifyDeal" @refreshDataList="getList"></spec-modify>
- <process-img v-if="processImgVisible" ref="processImg" @refreshDataList="getList"></process-img>
- </div>
- </template>
- <script>
- import {getPendinglist, handleApprovedanger} from "@/api/ehs/approvedanger";
- import AddOrUpdate from './spec-detail';
- import SpecModify from './specModify-deal';
- import Accident from '../approveaccidentDetail/index';
- import ProcessImg from '../processImg/index';
- 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";
- export default {
- name: "Pending",
- components: {
- Treeselect,
- AddOrUpdate,
- SpecModify,
- Accident,
- ProcessImg
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- //弹窗界面是否开启
- addOrUpdateVisible: false,
- processImgVisible: false,
- specDealVisible: false,
- specModifyDealVisible: false,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: false,
- // 总条数
- total: 0,
- // 我的申请表格数据
- approvedangerList: [],
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- clientHeight:300,
- // 是否显示弹出层
- open: false,
- // 装置名称字典
- plantCodeOptions: [],
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 20,
- plantCode: null,
- recorderId: null,
- hiddendangerLevel: null,
- hiddendangerContent: null,
- measures: null,
- completeTime: null,
- status: null,
- creattime: null,
- endtime: null,
- processId: null,
- approveNo: null,
- deptId: null,
- },
- // 措施前上传照片参数
- uploadbefore: {
- file: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/upload",
- // 报告附件上传位置编号
- ids: 0,
- commonfileList: null,
- },
- // 措施后上传照片参数
- uploadafter: {
- file: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/upload",
- // 报告附件上传位置编号
- ids: 0,
- commonfileList: null,
- },
- // 表单参数
- form: {},
- //事件记录人更新内容
- recordInfo: {},
- //处理数据传输
- approveInfo: null,
- //审批显示按键判断依据
- infoprocessName: null,
- infoTaskName: null,
- //上传措施前后照片url,文件名称
- beforeUrl: null,
- beforeFilename: null,
- afterUrl: null,
- afterFilename: null,
- //审批备注
- comment: null
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- }
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = document.body.clientHeight -250
- })
- this.getList();
- this.getTreeselect();
- this.getDicts("PLANT_DIVIDE").then(response => {
- this.plantCodeOptions = response.data;
- });
- },
- methods: {
- /** 查询隐患申请列表 */
- getList() {
- this.loading = true;
- getPendinglist(this.queryParams).then(response => {
- this.approvedangerList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- // 装置名称字典翻译
- plantCodeFormat(row, column) {
- return this.selectDictLabel(this.plantCodeOptions, row.plantCode);
- },
- // 取消按钮
- cancel() {
- this.addOrUpdateVisible = false;
- this.reset();
- },
- /** 事件子组件传值 */
- approveChange(value) {
- this.recordInfo = value
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- plantCode: null,
- recorderId: null,
- hiddendangerLevel: null,
- hiddendangerContent: null,
- measures: null,
- completeTime: null,
- status: 0,
- creattime: null,
- endtime: null,
- processId: null,
- approveNo: null,
- deptId: null,
- delFlag: null,
- submitType: null,
- commont: null,
- accidentLevel: null,
- executorId: null
- };
- this.resetForm("form");
- },
- //操作审批流程
- addOrUpdateHandle (row) {
- if (row.processName == "特种设备审核"){
- this.specDealVisible = true
- this.$nextTick(() => {
- console.log(row.taskName)
- this.$refs.specDeal.init(row.specApprove.id, row.taskId, row.processId,row.taskName)
- })
- }else if (row.processName == "年度检查报告申请"){
- this.specDealVisible = true
- this.$nextTick(() => {
- console.log(row.taskName)
- this.$refs.specDeal.init(row.specApprove.id, row.taskId, row.processId,row.taskName)
- })
- }else if (row.processName == "月度检查"){
- this.specDealVisible = true
- this.$nextTick(() => {
- console.log(row.taskName)
- this.$refs.specDeal.init(row.specApprove.id, row.taskId, row.processId,row.taskName)
- })
- }else if (row.processName == "设备修改/删除审核"){
- this.specModifyDealVisible = true
- this.$nextTick(() => {
- console.log(row.taskName)
- this.$refs.specModifyDeal.init(row.approveSpecModify.id, row.taskId, row.processId,row.taskName)
- })
- }else {
- this.approveInfo = row;
- this.infoTaskName = row.taskName;
- this.infoprocessName = row.processName;
- this.addOrUpdateVisible = true;
- }
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- // 表单提交
- dataFormSubmit (val) {
- //相关信息
- this.form = this.approveInfo
- this.form.submitType = val
- this.form.comment = this.comment
- // 审批确认后,申请人填写相关信息
- if (this.form.processName === (this.$t('事件') + this.$t('审批流程'))) {
- this.form.accidentLevel = this.recordInfo.accidentLevel;
- this.form.measures = this.recordInfo.measures;
- this.form.executorId = this.recordInfo.executorId;
- this.form.completeTime = this.recordInfo.completeTime;
- console.info("accidentLevel:" + this.form.accidentLevel)
- console.info("measures:" + this.form.measures)
- console.info("executorId:" + this.form.executorId)
- console.info("completeTime:" + this.form.completeTime)
- }
- //提交审批
- this.form.beforeUrl = this.beforeUrl
- this.form.beforeFilename = this.beforeFilename
- this.form.afterUrl = this.afterUrl
- this.form.afterFilename = this.afterFilename
- handleApprovedanger(this.form).then(response => {
- this.msgSuccess(this.$t('处理成功'));
- this.addOrUpdateVisible = false;
- this.getList();
- });
- this.$nextTick(function () {
- this.comment = ''
- })
- },
- // 文件上传中处理
- handleFileUploadProgressBefore(event, file, fileList) {
- this.uploadbefore.isUploading = true;
- },
- handleFileUploadProgressAfter(event, file, fileList) {
- this.uploadafter.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccessBefore(response, file, fileList) {
- this.uploadbefore.isUploading = false;
- //this.$refs.uploadbefore.clearFiles();
- this.beforeUrl = response.url;
- this.beforeFilename = response.fileName;
- },
- handleFileSuccessAfter(response, file, fileList) {
- this.uploadafter.isUploading = false;
- //this.$refs.uploadafter.clearFiles();
- this.afterUrl = response.url;
- this.afterFilename = response.fileName;
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.uploadbefore.submit()
- this.$refs.uploadafter.submit()
- },
- processImg (processId) {
- this.processImgVisible = true
- this.$nextTick(() => {
- this.$refs.processImg.init(processId)
- })
- },
- }
- };
- </script>
|