1041 lines
34 KiB
Vue
1041 lines
34 KiB
Vue
<!--项目评估流程 - 分发责任人进行任务分发 -->
|
|
<template>
|
|
<div class="xmpg-step3">
|
|
<ProcessHeader toggle>
|
|
<template slot="proName">标准合规评估流程</template>
|
|
<template slot="proNode">分发责任人分发任务</template>
|
|
</ProcessHeader>
|
|
<div class="headerTabs">
|
|
<div class="headerTabsItem" :class="active === '1' ? 'active' : ''" @click="handleTabs('1')">基础信息</div>
|
|
<div class="headerTabsItem" :class="active === '3' ? 'active' : ''" @click="handleTabs('3')">审批历史</div>
|
|
</div>
|
|
<div class="content" v-show="active === '1'">
|
|
<div style=" overflow: auto">
|
|
<process-title>
|
|
<template slot="title">基础信息</template>
|
|
</process-title>
|
|
<el-collapse-transition>
|
|
<div class="prc-content-border" v-if="foldFormFlag === false">
|
|
<el-form
|
|
:model="listForm"
|
|
class="label-input-form prc-content-border"
|
|
label-width="150px"
|
|
>
|
|
<el-row :gutter="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
class="input-jump"
|
|
v-model="listForm.standNumber"
|
|
placeholder="请输入标准编号"
|
|
readonly
|
|
@click.native="handlePreview(listForm)"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
class="input-jump"
|
|
v-model="listForm.standName"
|
|
placeholder="请输入标准名称"
|
|
readonly
|
|
@click.native="handlePreview(listForm)"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.certifiedEngineerName"
|
|
placeholder="请选择认证工程师"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.certifiedEngineerName"
|
|
placeholder="--"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.qualityEngineerName"
|
|
placeholder="请选择质量工程师"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.qualityEngineerName"
|
|
placeholder="--"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</div>
|
|
</el-collapse-transition>
|
|
<el-button v-if="foldFormFlag === false" style="width: 100%" icon="el-icon-caret-top" @click="foldForm">隐藏基础信息</el-button>
|
|
<el-button v-if="foldFormFlag === true" style="width: 100%" icon="el-icon-caret-bottom" @click="foldForm">展开基础信息</el-button>
|
|
<el-form
|
|
v-if="foldFormFlag === true"
|
|
style="display: none"
|
|
:model="listForm"
|
|
class="label-input-form prc-content-border"
|
|
label-width="150px"
|
|
>
|
|
<el-row :gutter="24">
|
|
<el-col :span="24">
|
|
<el-form-item label="标准编号" prop="standNumber" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
v-model="listForm.standNumber"
|
|
placeholder="请输入标准编号"
|
|
readonly
|
|
@click.native="handlePreview(listForm)"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="标准名称" prop="standName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
v-model="listForm.standName"
|
|
placeholder="请输入标准名称"
|
|
readonly
|
|
@click.native="handlePreview(listForm)"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="认证工程师" v-if="listForm.certifiedEngineerName !== ''" prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.certifiedEngineerName"
|
|
placeholder="请选择认证工程师"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="认证工程师" v-else prop="certifiedEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.certifiedEngineerName"
|
|
placeholder="--"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item v-if="listForm.qualityEngineerName !== '' " label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.qualityEngineerName"
|
|
placeholder="请选择质量工程师"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item v-else label="质量工程师" prop="qualityEngineerName" class="add-form-item form-item-disabled">
|
|
<el-input
|
|
readonly
|
|
v-model="listForm.qualityEngineerName"
|
|
placeholder="--"
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<process-title>
|
|
<template slot="title">填写信息</template>
|
|
</process-title>
|
|
<div class="tableTitle">
|
|
<div class="tableButton">
|
|
<el-button class="common-button-primary" plain size="mini" @click="addProject">添加
|
|
</el-button>
|
|
<el-button plain class="common-button-primary" type="primary" size="mini" @click="deleteList">批量删除
|
|
</el-button>
|
|
<el-button plain class="common-button-primary" type="primary" size="mini" @click="choiceZRRS('', 2, '')">
|
|
批量分发落实人
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
<el-table
|
|
ref="multipleTable"
|
|
:data="breakdownList"
|
|
style="width: 100%; border: 1px solid #cccccc;height: 400px"
|
|
height="48%"
|
|
border
|
|
highlight-current-row
|
|
@selection-change="selectStandChange"
|
|
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
|
|
fontWeight: 'bold', fontFamily: 'MicrosoftYaHei-Bold', height: '48px'}">
|
|
<el-table-column
|
|
type="selection"
|
|
width="55"
|
|
align="center">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="productLine"
|
|
align="center"
|
|
width="150"
|
|
label="产品线">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="projectNumber"
|
|
align="center"
|
|
width="160px"
|
|
label="项目编号">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="projectName"
|
|
align="center"
|
|
min-width="300"
|
|
label="项目名称">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="itemNum"
|
|
align="center"
|
|
width="100px"
|
|
label="条款号">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="itemsName"
|
|
align="center"
|
|
width="160px"
|
|
label="条款名称">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="technicalRequir"
|
|
align="center"
|
|
width="160px"
|
|
label="核心技术要求/变化点">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="changePoint"
|
|
align="center"
|
|
width="160px"
|
|
label="基于上一版本差异">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="xcxssrq"
|
|
align="center"
|
|
width="120px"
|
|
label="新车型实施日期">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="zccssrq"
|
|
align="center"
|
|
width="120px"
|
|
label="在产车实施日期">
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="落实人"
|
|
width="210"
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.implementerId" style="display: none;" />
|
|
<el-input v-model="scope.row.implementer" placeholder="请选择落实人"
|
|
@click.native="choiceZRRS(scope.row, 1, scope.$index)" />
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!-- <el-pagination-->
|
|
<!-- layout="total,sizes, prev, pager, next"-->
|
|
<!-- background-->
|
|
<!-- :page-sizes="[20, 40, 60]"-->
|
|
<!-- :total="total"-->
|
|
<!-- @size-change="handleSizeChange"-->
|
|
<!-- @current-change="handleCurrentChange"-->
|
|
<!-- />-->
|
|
<!-- 选择责任人-->
|
|
<Role-tree
|
|
is-title="选择落实人"
|
|
:is-visible.sync="modalshowflag"
|
|
@checkedRole="checkedRole"
|
|
:nodeList="nodeList"
|
|
></Role-tree>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content" v-show="active === '3'">
|
|
<div class="flow-list" style="height: 100%">
|
|
<el-table
|
|
height="100%"
|
|
ref="selection"
|
|
:data="detailData"
|
|
tooltip-effect="dark"
|
|
style="width: 100%"
|
|
border
|
|
row-key="id"
|
|
:no-data-text="listNoDataText"
|
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
|
|
>
|
|
<el-table-column
|
|
type="selection"
|
|
width="55"
|
|
align="center">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="name"
|
|
label="任务步骤"
|
|
align="center"
|
|
>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="assignee"
|
|
label="任务受理人"
|
|
align="center"
|
|
>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="createTime"
|
|
label="创建时间"
|
|
sortable="custom"
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.createTime ? $moment(scope.row.createTime).format("YYYY-MM-DD HH:mm:ss") : "" }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="endTime"
|
|
label="完成时间"
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.endTime ? $moment(scope.row.endTime).format("YYYY-MM-DD HH:mm:ss") : "" }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="comment"
|
|
label="流程信息"
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.commentText }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="completeFlag"
|
|
label="状态"
|
|
align="center">
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.endTime ? "已完成" : "未完成" }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<loading :loading="loading">流程列表加载中</loading>
|
|
</div>
|
|
</div>
|
|
<!-- 添加项目抽屉-->
|
|
<el-drawer
|
|
title="添加项目"
|
|
:visible.sync="projectModel"
|
|
size="900px"
|
|
custom-class="demo-drawer"
|
|
>
|
|
<div class="demo-drawer-content">
|
|
<div style="position: absolute;bottom: 48px;top:60px;left: 0;right: 0">
|
|
<div style="position: absolute;bottom: 55px;top: 0;right: 0;left: 0">
|
|
<div class="left">
|
|
<el-form :modal="standardSearch" :inline="true" class="label-input-form"
|
|
style="margin-left:10px">
|
|
<el-form-item label="项目编号" class="search-item search-item-last">
|
|
<el-input
|
|
v-model="standardSearch.projectNumber"
|
|
placeholder="请输入项目编号"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="项目名称" class="search-item search-item-last">
|
|
<el-input
|
|
v-model="standardSearch.projectName"
|
|
placeholder="请输入项目名称"
|
|
></el-input>
|
|
</el-form-item>
|
|
<el-form-item class="search-item btn-box">
|
|
<el-button
|
|
type="primary"
|
|
class="common-button-primary"
|
|
size="small"
|
|
@click="getProject">
|
|
查询
|
|
</el-button>
|
|
</el-form-item>
|
|
<el-form-item class="search-item btn-box">
|
|
<el-button
|
|
class="common-button-default"
|
|
size="small"
|
|
@click="clearStandSearch">清空
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
<el-table
|
|
:data="projectData"
|
|
tooltip-effect="dark"
|
|
style="width: 100%"
|
|
border
|
|
ref="table"
|
|
height="100%"
|
|
:header-cell-style="{background: '#f5f1f1', color: '#333333', fontSize: '16px',
|
|
fontWeight: 'bold', height: '48px'}"
|
|
@selection-change="selectThree"
|
|
>
|
|
<el-table-column
|
|
type="selection"
|
|
width="55"
|
|
align="center">
|
|
</el-table-column>
|
|
<el-table-column
|
|
prop="productLine"
|
|
align="center"
|
|
label="产品线"
|
|
/>
|
|
<el-table-column
|
|
prop="projectName"
|
|
min-width="300"
|
|
align="center"
|
|
label="项目名称"
|
|
/>
|
|
<el-table-column
|
|
prop="projectNumber"
|
|
align="center"
|
|
label="项目编号"
|
|
/>
|
|
<el-table-column
|
|
prop="projectGroup"
|
|
align="center"
|
|
label="项目群"
|
|
/>
|
|
</el-table>
|
|
</div>
|
|
<pagination
|
|
:page="pageNo"
|
|
:pageSize="pageSizeNo"
|
|
:total="totalNo"
|
|
@pageChange="pageChangeNo"
|
|
@pageSizeChange="pageSizeChangeNo"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="demo-drawer-footer">
|
|
<el-button size="mini" @click="cancelStand">取消</el-button>
|
|
<el-button type="primary" size="mini" @click="okStand">添加</el-button>
|
|
</div>
|
|
</el-drawer>
|
|
<ProcessFooter
|
|
show-save
|
|
show-transfer
|
|
show-submit
|
|
:transfer-loading="isTransfer"
|
|
:submitLoading="isSubmit"
|
|
:saveLoading="saveLoading"
|
|
@save="handleSave"
|
|
@transfer="handleTransfer"
|
|
@submit="handleSubmit"
|
|
>
|
|
</ProcessFooter>
|
|
<!-- 福田全公司选人解决方案 -->
|
|
<Role-tree
|
|
check-box
|
|
:is-title="drawerTitle"
|
|
:is-visible.sync="drawerModal"
|
|
@checkedRole="checkedTransferRole"
|
|
:nodeList="nodeList"
|
|
></Role-tree>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ProcessHeader from "../../components/ProcessHeader";
|
|
import ProcessFooter from "../../components/ProcessFooter";
|
|
import ProcessTitle from "../../components/ProcessTitle";
|
|
import { changeAssigneeNew, inboundLiaisonDetail, saveTaskForPub } from "api/process";
|
|
|
|
export default {
|
|
name: "xmpgStep3",
|
|
components: {
|
|
ProcessHeader,
|
|
ProcessFooter,
|
|
ProcessTitle
|
|
},
|
|
data() {
|
|
return {
|
|
projectModel: false,
|
|
projectData: [],
|
|
projectLineId: [],
|
|
projectJson: {},
|
|
totalNo: 0,
|
|
selectProject: [],
|
|
//查询添加标准相关数据
|
|
standardSearch: {
|
|
projectNumber: "",
|
|
projectName: "",
|
|
pageNo: 1,
|
|
pageSizeNo: this.$store.getters.userInfo.configContent
|
|
},
|
|
breakdownList: [],
|
|
pageNo: 1,
|
|
pageSizeNo: this.$store.getters.userInfo.configContent,
|
|
//折叠的标志,true为折叠,false为不折叠
|
|
foldFormFlag: false,
|
|
currentPage: 1,
|
|
isTransfer: false,
|
|
// 调整处理人抽屉状态
|
|
drawerModal: false,
|
|
showColumn: true,
|
|
drawerTitle: "", //drawer标题
|
|
modalshowflag: false, // drawer开关
|
|
modalshowflag2: false,
|
|
treeData: [], // 人员数据
|
|
nodeList: [],
|
|
defaultProps: {
|
|
children: "children",
|
|
label: "name"
|
|
},
|
|
detailData: [],
|
|
sarProStateTableHeight: null, // 项目列表高度
|
|
// 当前流程类型(1待办/2已办)
|
|
processType: 1,
|
|
sarFlag: true,
|
|
loading: false,
|
|
// dataList: [],//清单里的标准数据
|
|
active: "1",
|
|
userId: this.$store.getters.userInfo.userId,
|
|
taskIds: this.$route.query.taskIds,
|
|
pId: this.$route.query.prcId,
|
|
listType: "country", //选择的清单类型
|
|
isSubmit: false,
|
|
saveLoading: false,
|
|
tabValue: "listOfCountries",
|
|
selectedList: [], //选择清单的选择框
|
|
selectList: [], //选择标准的选择框
|
|
selectStandList: [], //点开批量弹窗选择数据丢失
|
|
lsIndex: "",
|
|
lsType: "",
|
|
bringData: [],
|
|
commentText: "", //填写会签意见
|
|
page: 1,
|
|
total: 0,
|
|
pageSize: this.$store.getters.userInfo.configContent,
|
|
listForm: {
|
|
passFlag: "1", //1为审批通过 2 为驳回
|
|
standNumber: "", //标准编号
|
|
standName: "",//标准名称
|
|
certifiedEngineer: "", //认证工程师
|
|
qualityEngineer: "", //质量工程师
|
|
breakdownList: [{ //分解单数据
|
|
implementer: "",
|
|
implementerId: "",
|
|
applyArctic: "",
|
|
busStandCover: "",
|
|
claimType: "",
|
|
id: "",
|
|
itemsName: "",
|
|
itemsNum: "",
|
|
responsibleUnit: "",
|
|
standId: "",
|
|
svpps: ""
|
|
}],
|
|
dataList: [{
|
|
implementer: "",
|
|
implementerId: "",
|
|
projectLine: "", //产品线
|
|
uname: "",//产品线责任人
|
|
distributePerson: "", //分发责任人
|
|
distributePersonId: "", //分发责任人id
|
|
id: "",
|
|
sarStandProjectLibraries: [{
|
|
projectManager: "",
|
|
projectLevel: "",
|
|
projectNumber: "",
|
|
projectEndDate: "",
|
|
currentNode: "",
|
|
projectGroup: "",
|
|
productLine: "",
|
|
projectClassification: "",
|
|
projectStatus: "",
|
|
projectStartDate: "",
|
|
id: "",
|
|
projectName: "",
|
|
projectPlatfor: ""
|
|
}]
|
|
}]
|
|
},
|
|
roleForm: {
|
|
implementer: "",
|
|
implementerId: ""
|
|
},
|
|
choiceForm: {}, //选择标准清单列表
|
|
user1: "",
|
|
user2: "",
|
|
user3: "",
|
|
user4: "",
|
|
user5: "",
|
|
standMap: new Map()
|
|
};
|
|
},
|
|
methods: {
|
|
//折叠/展开基础信息方法
|
|
foldForm() {
|
|
this.foldFormFlag = !this.foldFormFlag
|
|
},
|
|
//确认转办
|
|
checkedTransferRole(data) {
|
|
this.assigneeNewLoading = true;
|
|
changeAssigneeNew({
|
|
taskId: this.$route.query.taskIds, // 任务id
|
|
assignee: data[0].id, // 被委托人
|
|
userId: this.$store.getters.userInfo.userId, // 委托人
|
|
pId: this.$route.query.prcId // 流程实例
|
|
}).then(res => {
|
|
this.isTransfer = false;
|
|
if (res.success) {
|
|
this.drawerModal = false;
|
|
this.$message.success("调整成功");
|
|
this.$router.push("/processCenter");
|
|
this.processNum();
|
|
} else {
|
|
this.$message.warning(res.message);
|
|
}
|
|
});
|
|
},
|
|
// 请求转换流程图
|
|
processNum(row) {
|
|
axios.request({
|
|
url: "/api/lawss/activiti/getImg?_t=" + new Date().getTime(),
|
|
responseType: "blob",
|
|
method: "get",
|
|
params: {
|
|
prcNum: this.$route.query.prcNum
|
|
}
|
|
}).then(res => {
|
|
// let blob = new Blob([res.data], {type: 'image/jpg'})
|
|
// let url = window.URL.createObjectURL(res.data)
|
|
this.processStep = window.URL.createObjectURL(res.data);
|
|
});
|
|
},
|
|
//转办事件
|
|
handleTransfer() {
|
|
this.drawerModal = true;
|
|
this.drawerTitle = "转办处理人";
|
|
this.selectPeople = row;
|
|
},
|
|
processTable() {
|
|
this.$http.get("lawss/activiti/get_list_by_instance", {
|
|
prcNum: this.$route.query.prcNum,
|
|
sortWord: this.shunxu ? this.paixu : "",
|
|
shunxu: this.shunxu
|
|
}, {
|
|
loading: "loading",
|
|
_this: this
|
|
}, res => {
|
|
this.detailData = res;
|
|
}, e => {
|
|
});
|
|
},
|
|
//tab发生变化
|
|
handleTabs(name) {
|
|
this.active = name;
|
|
},
|
|
//点击查看详情
|
|
handlePreview(item) {
|
|
let routeUrl = this.$router.resolve({
|
|
name: "OtherStandardDetails",
|
|
params: {
|
|
id: item.id,
|
|
pageType: "INLAND_STAND"
|
|
}
|
|
});
|
|
window.open(routeUrl.href, "_blank");
|
|
},
|
|
// 分页
|
|
handleCurrentChange(currentPage) {
|
|
this.currentPage = currentPage;
|
|
},
|
|
handleSizeChange(pageSize) {
|
|
this.pageSize = pageSize;
|
|
},
|
|
getData() {
|
|
return new Promise((resolve, reject) => {
|
|
inboundLiaisonDetail({
|
|
taskIds: this.taskIds,
|
|
pId: this.pId
|
|
}).then(res => {
|
|
if (res) {
|
|
const processForm = JSON.parse(res.mesg);
|
|
this.getFormFieldList(processForm);
|
|
}
|
|
}).catch(e => {
|
|
});
|
|
});
|
|
},
|
|
/**
|
|
* @description: 动态表单读取
|
|
*/
|
|
getFormFieldList(item) {
|
|
console.log(item);
|
|
this.projectJson = JSON.parse(JSON.stringify(item));
|
|
this.listForm = JSON.parse(JSON.stringify(item));
|
|
if (item.form === undefined) {
|
|
this.listForm.prcNum = this.prcNum;
|
|
this.listForm.prcName = this.prcName;
|
|
this.listForm["id"] = item.id;
|
|
this.listForm = JSON.parse(JSON.stringify(item.pepdtos[0]));
|
|
let projectLineList = item.pepdtos[0].dataList;
|
|
let ids = []
|
|
projectLineList.forEach(item => {
|
|
ids.push(item.productLine);
|
|
});
|
|
this.projectLineId = ids.join(',')
|
|
this.getProject();
|
|
} else {
|
|
this.listForm = item.form;
|
|
this.breakdownList = item.form.breakdownList;
|
|
}
|
|
|
|
},
|
|
getProject() {
|
|
this.$http.get("sarStandProjectLibrary/queryProjectUnderLine", {
|
|
productLine: this.projectLineId,
|
|
current: this.pageNo,
|
|
PageSize: this.pageSizeNo,
|
|
projectName: this.standardSearch.projectName,
|
|
projectNumber: this.standardSearch.projectNumber
|
|
}, {
|
|
_this: this
|
|
}, res => {
|
|
this.projectData = res.data.records;
|
|
this.totalNo = res.data.total;
|
|
});
|
|
},
|
|
clearStandSearch() {
|
|
this.standardSearch = {
|
|
projectName: "",
|
|
projectNumber: ""
|
|
};
|
|
this.getProject();
|
|
},
|
|
okStand() {
|
|
if (!this.selectProject.length) {
|
|
this.$message.warning("请至少选择一条产品线进行添加");
|
|
} else {
|
|
let proList = this.projectJson.pepdtos[0].dataList;
|
|
this.selectProject.map(item => {
|
|
proList.forEach(items => {
|
|
if (item.productLine === items.productLine) {
|
|
items.sarStandProjectLibraries.push(item);
|
|
}
|
|
});
|
|
});
|
|
this.projectJson.pepdtos[0].dataList = proList;
|
|
this.$http.post("activityData/backData", {
|
|
json: JSON.stringify(this.projectJson.pepdtos[0])
|
|
}, {
|
|
_this: this
|
|
}, res => {
|
|
let item = JSON.parse(res.data);
|
|
for (let i = 0; i < item.pepdtos.length; i++) {
|
|
for (let j = 0; j < item.pepdtos[i].breakdownList.length; j++) {
|
|
if (item.pepdtos[i].xcxssrq === null) {
|
|
item.pepdtos[i].xcxssrq = "";
|
|
}
|
|
if (item.pepdtos[i].zccssrq === null) {
|
|
item.pepdtos[i].zccssrq = "";
|
|
}
|
|
this.breakdownList.push({
|
|
itemsName: item.pepdtos[i].breakdownList[j].itemsName,
|
|
itemNum: item.pepdtos[i].breakdownList[j].itemsNum,
|
|
technicalRequir: item.pepdtos[i].breakdownList[j].technicalRequir,
|
|
changePoint: item.pepdtos[i].breakdownList[j].changePoint,
|
|
responsibleEngineer: item.pepdtos[i].breakdownList[j].responsibleEngineer,
|
|
responsibleUnit: item.pepdtos[i].breakdownList[j].responsibleUnit,
|
|
productLine: item.pepdtos[i].sarStandProjectLibraries.productLine,
|
|
projectNumber: item.pepdtos[i].sarStandProjectLibraries.projectNumber,
|
|
projectName: item.pepdtos[i].sarStandProjectLibraries.projectName,
|
|
implementer: item.pepdtos[i].breakdownList[j].implementer || null,
|
|
distributePerson: item.pepdtos[i].distributePerson,
|
|
distributePersonId: item.pepdtos[i].distributePersonId,
|
|
uname: item.pepdtos[i].uname,
|
|
projectManager: item.pepdtos[i].projectManager,
|
|
certifiedEngineerName: item.pepdtos[i].certifiedEngineerName,
|
|
qualityEngineerName: item.pepdtos[i].qualityEngineerName,
|
|
standNumber: item.pepdtos[i].standNumber,
|
|
standName: item.pepdtos[i].standName,
|
|
id: item.pepdtos[0].id,
|
|
xcxssrq: item.pepdtos[i].XCXSSRQ,
|
|
zccssrq: item.pepdtos[i].ZCCSSRQ
|
|
});
|
|
this.total = this.breakdownList.length;
|
|
}
|
|
}
|
|
});
|
|
this.projectModel = false;
|
|
}
|
|
|
|
},
|
|
//批量删除
|
|
deleteList() {
|
|
if (!this.selectList.length) {
|
|
this.$message.warning("请至少选择一条数据进行删除");
|
|
} else {
|
|
this.$confirm("您确认删除这些数据?", "提示", {
|
|
confirmButtonText: "确认",
|
|
confirmButtonClass: "common-button-primary",
|
|
cancelButtonText: "取消",
|
|
type: "warning"
|
|
}).then(() => {
|
|
let exits = [];
|
|
this.selectList.map(item => {
|
|
let index;
|
|
index = this.breakdownList.findIndex(items => {
|
|
return items.itemsName === item.itemsName;
|
|
});
|
|
if (index > -1) {
|
|
this.breakdownList.splice(index, 1);
|
|
}
|
|
exits.push(item);
|
|
});
|
|
this.selectList = [];
|
|
}).catch(() => {
|
|
});
|
|
}
|
|
},
|
|
cancelStand() {
|
|
this.projectModel = false;
|
|
},
|
|
pageChangeNo(page) {
|
|
this.pageNo = page;
|
|
this.getProject();
|
|
},
|
|
pageSizeChangeNo(pageSize) {
|
|
this.pageSizeNo = pageSize;
|
|
this.getProject();
|
|
},
|
|
checkedRole(data) {
|
|
var idList = "";
|
|
var nameList = "";
|
|
data.forEach(item => {
|
|
if (nameList.length > 0) {
|
|
nameList += ",";
|
|
idList += ",";
|
|
}
|
|
idList += item.id;
|
|
nameList += item.name;
|
|
});
|
|
if (this.type === 1) {
|
|
this.breakdownList[this.lsIndex].implementerId = idList;
|
|
this.breakdownList[this.lsIndex].implementer = nameList;
|
|
} else if (this.type === 2) {
|
|
this.breakdownList.forEach(item => {
|
|
this.selectStandList.forEach(items => {
|
|
if (item === items) {
|
|
item.implementerId = idList;
|
|
item.implementer = nameList;
|
|
}
|
|
});
|
|
});
|
|
this.$refs.multipleTable.clearSelection();
|
|
}
|
|
this.modalshowflag = false;
|
|
},
|
|
addProject() {
|
|
this.projectModel = true;
|
|
},
|
|
choiceZRRS(row, type, index) {
|
|
this.selectStandList = this.selectList;
|
|
this.type = type;
|
|
if (type === 1) {
|
|
this.drawerTitle = "选择责任人";
|
|
this.nodeList = [];
|
|
this.lsIndex = index;
|
|
this.lsType = type;
|
|
if (row.implementerId) {
|
|
this.nodeList = row.implementerId.split(",");
|
|
} else {
|
|
this.nodeList.push(row);
|
|
}
|
|
this.modalshowflag = true;
|
|
} else if (type === 2) {
|
|
// 批量
|
|
if (this.selectList.length > 0) {
|
|
this.lsType = type;
|
|
this.nodeList = [];
|
|
this.modalshowflag = true;
|
|
this.drawerTitle = "批量选择责任人";
|
|
this.selectList.forEach(item =>{
|
|
if(item.implementerId){
|
|
this.nodeList = item.implementerId.split(",");
|
|
}
|
|
})
|
|
// if(row.implementerId){
|
|
// this.nodeList = row.implementerId.split(",");
|
|
// }
|
|
} else {
|
|
this.$message.warning("请选择要分发的数据");
|
|
}
|
|
}
|
|
},
|
|
getTree() {
|
|
this.$http.get("SarInstitution/institution/institutionAndUser", {}, {}, res => {
|
|
this.treeData = res.data;
|
|
});
|
|
},
|
|
|
|
//保存事件
|
|
handleSave() {
|
|
this.saveLoading = true;
|
|
let _formData = new FormData();
|
|
_formData.append("id", this.bpnId || "");
|
|
_formData.append("prcType", "5");
|
|
_formData.append("taskIds", this.taskIds);
|
|
_formData.append("json", JSON.stringify({
|
|
form: this.listForm,
|
|
commentText: this.commentText
|
|
}));
|
|
saveTaskForPub(_formData).then(res => {
|
|
this.saveLoading = false;
|
|
this.$message.success("保存成功");
|
|
this.bpnId = res.result;
|
|
}).catch(e => {
|
|
this.saveLoading = false;
|
|
});
|
|
},
|
|
//提交事件
|
|
handleSubmit() {
|
|
let standList = []
|
|
this.breakdownList.forEach(item => {
|
|
if (item.implementer) {
|
|
standList.push(item);
|
|
}
|
|
});
|
|
this.listForm.breakdownList = standList
|
|
this.listForm.prcCreateUser = this.$store.getters.userInfo.userId;
|
|
this.listForm.applyUpdUserId = this.$store.getters.userInfo.userId;
|
|
this.listForm.prcCreateUserName = this.$store.getters.userInfo.account;
|
|
this.listForm.zrUserId = this.$store.getters.userInfo.userId;
|
|
this.listForm.commentText = this.commentText;
|
|
this.listForm.approvalOpinion = "";
|
|
this.listForm.signFlag = "";
|
|
const json = JSON.stringify(this.listForm.breakdownList);
|
|
this.isSubmit = true;
|
|
this.$http.post("lawss/activiti/completeTask", {
|
|
taskIds: this.taskIds,
|
|
userId: this.userId,
|
|
json: json
|
|
}, {
|
|
_this: this
|
|
}, res => {
|
|
if (res.success) {
|
|
this.$message.success(res.message);
|
|
this.$router.push("/processCenter");
|
|
}
|
|
this.isSubmit = false;
|
|
}, e => {
|
|
});
|
|
},
|
|
drawerCheck(data) {
|
|
var getlist = this.$refs.tree.getCheckedNodes().concat(this.$refs.tree.getHalfCheckedNodes());
|
|
if (getlist.length == 1) {
|
|
this.roleRow = getlist[0];
|
|
} else {
|
|
this.$refs.tree.setCheckedKeys([data.id]);
|
|
this.roleRow = this.$refs.tree.getCheckedNodes()[0];
|
|
}
|
|
},
|
|
//标准表格选择框改变
|
|
selectStandChange(data) {
|
|
console.log(data);
|
|
this.selectList = data;
|
|
},
|
|
selectThree(data) {
|
|
this.selectProject = data;
|
|
},
|
|
pageChange(page) {
|
|
this.page = page;
|
|
this.searchData();
|
|
},
|
|
pageSizeChange(pageSize) {
|
|
this.pageSize = this.$store.getters.userInfo.configContent;
|
|
this.searchData();
|
|
}
|
|
},
|
|
computed: {
|
|
listNoDataText() {
|
|
return this.processType === 1 ? "暂无待办流程" : "暂无已办流程";
|
|
}
|
|
},
|
|
mounted() {
|
|
this.getTree();
|
|
this.processTable();
|
|
this.getData();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
@import '~@/assets/styles/style';
|
|
|
|
.xmpg-step3 {
|
|
/deep/ .el-drawer__container {
|
|
.prc-content-border {
|
|
border: none;
|
|
padding: 0 20px 0;
|
|
}
|
|
}
|
|
|
|
.choiceBtn {
|
|
.el-button--primary {
|
|
width: 150px;
|
|
}
|
|
}
|
|
|
|
position: relative;
|
|
height: 100%;
|
|
|
|
.headerTabs {
|
|
height: 52px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 10px;
|
|
|
|
.headerTabsItem {
|
|
border: 1px solid #c1c1c1;
|
|
padding: 0 5px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.active {
|
|
border: 1px solid #E6A23C;
|
|
color: #fff;
|
|
background: #E6A23C;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
height: calc(~'100% - 103px');
|
|
overflow: auto;
|
|
|
|
.tableTitle {
|
|
margin-bottom: 10px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
position: relative;
|
|
font-size: 13px;
|
|
font-weight: bold;
|
|
|
|
.tableButton {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.accessStandardsAndRegulations {
|
|
height: 100%;
|
|
}
|
|
}
|
|
.input-jump {
|
|
/deep/.el-input__inner{
|
|
color: #409EFF;
|
|
}
|
|
}
|
|
}
|
|
|
|
.demo-drawer-content {
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
</style>
|
|
|