123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <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="流程ID" align="center" prop="processId" :show-overflow-tooltip="true"/>
- <el-table-column label="流程名称" align="center" prop="processName" :show-overflow-tooltip="true"/>
- <el-table-column label="流程创建时间" align="center" prop="processCreateTime" :show-overflow-tooltip="true"/>
- <!-- <el-table-column :label="$t('隐患级别')" align="center" prop="tApprove.hiddendangerLevel" :show-overflow-tooltip="true"/>-->
- <el-table-column label="申请编号" align="center" prop="apNo" :show-overflow-tooltip="true"/>
- <el-table-column
- prop="isEnd"
- header-align="center"
- align="center"
- label="是否结束">
- <template slot-scope="scope">
- <el-tag
- :type="scope.row.end? 'success' : 'danger'"
- disable-transitions>{{scope.row.end? '是' : '否'}}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="120" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <!-- <el-button-->
- <!-- size="mini"-->
- <!-- type="text"-->
- <!-- @click="cancelProcess(scope.row)"-->
- <!-- >{{ $t('查看') }}</el-button>-->
- <el-button
- size="mini"
- type="text"
- @click="detailHandle(scope.row)"
- >查看</el-button>
- <el-button
- size="mini"
- type="text"
- @click="processImg(scope.row.processId)"
- >流程图</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"
- />
- <process-img v-if="processImgVisible" ref="processImg" @refreshDataList="getList"></process-img>
- <!--<add-or-update v-if="specDealVisible" ref="specDeal" @refreshDataList="getList"></add-or-update>-->
- <!--<spec-modify v-if="specModifyDealVisible" ref="specModifyDeal" @refreshDataList="getList"></spec-modify>-->
- <!--<spec-training-plan v-if="specTrainingPlanVisible" ref="specTrainingPlan" @refreshDataList="getList"></spec-training-plan>-->
- <!--<spec-maintenance v-if="specMaintenanceVisible" ref="specMaintenance" @refreshDataList="getList"></spec-maintenance>-->
- <!--<intact-detail v-if="intactDetailVisible" ref="intactDetail" @refreshDataList="getList"></intact-detail>-->
- <!--<kekao-detail v-if="kekaoDetailVisible" ref="kekaoDetail" @refreshDataList="getList"></kekao-detail>-->
- <!--<invoice-detail v-if="invoiceDetailVisible" ref="invoiceDetail" @refreshDataList="getList"></invoice-detail>-->
- <!--<offlinevalve-detail v-if="offlinevalveDetailVisible" ref="offlinevalveDetail" @refreshDataList="getList"></offlinevalve-detail>-->
- <!--<safetychange-detail v-if="safetychangeDetailVisible" ref="safetychangeDetail" @refreshDataList="getList"></safetychange-detail>-->
- <!--<sai-apply-detail v-if="saiApplyVisible" ref="saiApplyDetail" @refreshDataList="getList"></sai-apply-detail>-->
- <common-detail v-if="commonVisible" ref="commonDetail" @refreshDataList="getList"/>
- </div>
- </template>
- <script>
- import {getMyApprovelist} from "@/api/branch/approvedanger";
- import {treeselect} from "@/api/system/dept";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import ProcessImg from '../processImg'
- import CommonDetail from "@/views/branch/approve/detail/common-detail";
- // import AddOrUpdate from '../approveDetail/spec-detail';
- // import SpecModify from '../approveDetail/specModify-detail';
- // import SpecTrainingPlan from '../approveDetail/specTrainingPlan-detaill';
- // import SpecMaintenance from '../approveDetail/specMaintenance-detail';
- // import IntactDetail from '../approveDetail/intact-detail';
- // import KekaoDetail from "@/views/approve/approveDetail/kekao-detail";
- // import InvoiceDetail from "@/views/approve/approveDetail/invoice-detail";
- // import OfflinevalveDetail from "@/views/approve/approveDetail/offlinevalve-detail";
- // import SafetychangeDetail from "@/views/approve/approveDetail/safetychange-detail";
- // import SaiApplyDetail from "@/views/approve/approveDetail/sai-apply-detail";
- export default {
- name: "Myapprove",
- components: {
- // SaiApplyDetail,
- // SafetychangeDetail,
- // OfflinevalveDetail,
- Treeselect,
- ProcessImg,
- CommonDetail,
- // AddOrUpdate,
- // SpecModify,
- // SpecTrainingPlan,
- // SpecMaintenance,
- // IntactDetail,
- // KekaoDetail,
- // InvoiceDetail
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- processImgVisible: false,
- specDealVisible: false,
- specModifyDealVisible: false,
- specTrainingPlanVisible: false,
- specMaintenanceVisible: false,
- intactDetailVisible:false,
- kekaoDetailVisible:false,
- invoiceDetailVisible:false,
- offlinevalveDetailVisible:false,
- safetychangeDetailVisible:false,
- saiApplyVisible:false,
- commonVisible: 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,
- },
- // 表单参数
- form: {},
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- }
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = document.body.clientHeight -200
- })
- this.getList();
- this.getTreeselect();
- this.getDicts("PLANT_DIVIDE").then(response => {
- this.plantCodeOptions = response.data;
- });
- },
- methods: {
- /** 查询隐患申请列表 */
- getList() {
- this.loading = true;
- getMyApprovelist(this.queryParams).then(response => {
- this.approvedangerList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- //操作审批流程
- detailHandle (row) {
- if (row.processName == "通用审批流程") {
- this.commonVisible = true
- this.$nextTick(() => {
- this.$refs.commonDetail.init(row.obj.memberId, row.taskId, row.processId, row.taskName, 2)
- })
- }
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- // 装置名称字典翻译
- plantCodeFormat(row, column) {
- return this.selectDictLabel(this.plantCodeOptions, row.plantCode);
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- 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
- };
- 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
- },
- processImg (processId) {
- this.processImgVisible = true
- this.$nextTick(() => {
- this.$refs.processImg.init(processId)
- })
- },
- }
- };
- </script>
|