| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340 |
- <template>
- <div
- :class="
- ((userAuthority || ownerApply) && is_end == 0 && share != 1) ||
- is_end == 0
- ? 'approvalAction'
- : null
- "
- class="approvalContainer"
- >
- <m-header v-if="share != 1" :appHide="true">
- <template #right>
- <van-icon
- @click="onShare"
- :name="iconShare"
- style="transform: translateY(5px)"
- size="22"
- ></van-icon>
- </template>
- </m-header>
- <!-- <van-notice-bar
- v-if="activeIndex !== nodeStepList.length && is_end===1"
- style="margin-bottom: .1rem"
- :text="alertMessage"
- :scrollable="false"
- /> -->
- <van-cell
- class="headerInfo"
- v-if="processStructureValue.workOrder.priority"
- >
- <template #title>
- <div class="titleSection" v-if="title">
- <span class="titleContent">{{ title }}</span>
- <template v-if="processStructureValue.workOrder.priority === 2">
- <van-tag
- size="small"
- style="background: #fff9f6; vertical-align: text-bottom"
- plain
- type="warning"
- >紧急</van-tag
- >
- </template>
- <template v-else-if="processStructureValue.workOrder.priority === 3">
- <van-tag
- size="small"
- style="background: #fff6f7; vertical-align: text-bottom"
- plain
- type="danger"
- >非常紧急</van-tag
- >
- </template>
- <template v-else-if="processStructureValue.workOrder.priority === 1">
- <van-tag
- size="small"
- style="background: #edfff6; vertical-align: text-bottom"
- plain
- type="success"
- >一般</van-tag
- >
- </template>
- </div>
- <template v-if="is_end == 0">
- <span v-if="userAuthority" class="waitStatus">等待我审批</span>
- <span v-else class="waitStatus">{{ principals }}</span>
- </template>
- <template v-else>
- <template v-if="is_cancel == 0">
- <span
- v-if="processStructureValue.workOrder.is_denied"
- class="waitStatus"
- >审批拒绝</span
- >
- <span v-else class="waitStatus">审批通过</span>
- <img
- v-if="processStructureValue.workOrder.is_denied"
- class="imgStatus"
- src="./images/icon_reject.png"
- />
- <img v-else class="imgStatus" src="./images/icon_resolve.png" />
- </template>
- <template v-else>
- <span class="waitStatus">已关闭</span>
- <img class="imgStatus" src="./images/icon_close_round.png" />
- </template>
- </template>
- </template>
- </van-cell>
- <div
- style="
- margin: 0 0.12rem 0.12rem;
- border-radius: 0.05rem;
- overflow: hidden;
- "
- >
- <template v-for="(tplItem, tplIndex) in processStructureValue.tpls">
- <form-modal
- style="padding-bottom: 0.12rem; background: #fff"
- :key="tplIndex"
- v-if="
- (currentNode.hideTpls !== undefined &&
- currentNode.hideTpls !== null &&
- currentNode.hideTpls.indexOf(tplItem.form_structure.id) !== -1) ||
- currentNode.writeTpls === undefined ||
- currentNode.writeTpls === null ||
- currentNode.writeTpls.indexOf(tplItem.form_structure.id) === -1
- "
- :formData="tplItem.form_structure"
- :value="tplItem.form_data"
- :preview="true"
- />
- </template>
- </div>
- <template v-if="userAuthority">
- <van-form
- ref="headForm"
- validate-first
- @submit="onSubmitHead"
- :scroll-to-error="true"
- :show-error="false"
- >
- <template v-for="(tplItem, tplIndex) in processStructureValue.tpls">
- <form-modal
- :key="tplIndex"
- v-if="
- currentNode.writeTpls !== undefined &&
- currentNode.writeTpls !== null &&
- currentNode.writeTpls.indexOf(tplItem.form_structure.id) > -1
- ? true
- : false
- "
- :ref="'generateForm-' + tplItem.id"
- :value="tplItem.form_data"
- :formData="tplItem.form_structure"
- />
- </template>
- </van-form>
- </template>
- <div class="step_section" v-if="circulationHistoryList.length > 0">
- <div class="step_title">流程</div>
- <van-steps
- v-if="
- currentNode.clazz !== undefined &&
- currentNode.clazz !== null &&
- currentNode.clazz !== ''
- "
- :active="activeIndex"
- direction="vertical"
- inactive-color="#D8D8D8"
- active-color="#D8D8D8"
- >
- <template v-for="(item, index) in circulationHistoryList">
- <van-step
- v-if="
- item.isHideNode === false ||
- item.isHideNode === undefined ||
- item.isHideNode == null ||
- item.id === processStructureValue.workOrder.current_state
- "
- :key="index"
- class="step"
- >
- <template #inactive-icon>
- <i class="inactive-icon"></i>
- </template>
- <template #active-icon>
- <van-icon :name="iconWait" />
- </template>
- <template #finish-icon>
- <template v-if="item.circulation == '转交'">
- <van-icon :name="iconSystemTransfer" />
- </template>
- <template v-else>
- <van-icon :name="iconReject" v-if="item.status == 0" />
- <van-icon :name="iconComplete" v-else />
- </template>
- </template>
- <div class="step-t">
- <p class="apply-state">{{ item.state || item.label }}</p>
- <p class="apply-time">
- {{
- item.create_time
- ? dayjs(item.create_time).format("MM-DD HH:mm")
- : null
- }}
- </p>
- </div>
- <!-- 判断是否有审核数据 -->
- <template v-if="!item.create_time">
- <p
- class="apply-status"
- v-if="item.assignUsers && item.assignUsers.length > 0"
- >
- <!-- 判断是否是自己审批 -->
- <template
- v-if="
- item.assignUsers[0].userId == userInfo.userId &&
- activeIndex == index
- "
- >
- 我(审批中)
- </template>
- <template v-else>
- <template v-if="item.isCounterSign">
- <span
- v-for="(au, aIndex) in item.assignUsers"
- :key="aIndex"
- >
- {{ au.username
- }}{{ aIndex < item.assignUsers.length - 1 ? "," : null }}
- </span>
- </template>
- <template v-else>
- {{ item.assignUsers[0].username }}
- </template>
- {{ activeIndex == index ? `(审批中)` : null }}
- <!-- {{ item.assignUsers[0].username }}{{ activeIndex == index ? `(审批中)` : null }} -->
- </template>
- </p>
- </template>
- <template v-else>
- <p class="apply-status" v-if="item.processor">
- {{ item.processor
- }}{{ item.circulation ? `(${item.circulation})` : null }}
- </p>
- <p
- class="remarks"
- v-if="item.remarks"
- v-html="dataModelFormatBr(item.remarks)"
- ></p>
- <!-- 判断是否有添加图片 -->
- <div
- class="imgUploader"
- v-if="
- item.fileUrl &&
- item.fileUrl.file &&
- item.fileUrl.image.length > 0
- "
- >
- <van-uploader
- v-model="item.fileUrl.image"
- disabled
- class="preview-uploader"
- :preview-size="40"
- :deletable="false"
- :max-count="item.fileUrl.image.length"
- ></van-uploader>
- </div>
- <!-- 判断是否有添加的文件 -->
- <div
- v-if="
- item.fileUrl &&
- item.fileUrl.file &&
- item.fileUrl.file.length > 0
- "
- >
- <FilePreview :dataModel="item.fileUrl.file" />
- </div>
- </template>
- <!-- 有抄送人并且,本节点已经审批完成了 -->
- <template
- v-if="
- item.cc_user && item.cc_user.length > 0 && activeIndex > index
- "
- >
- <!-- 已抄送1人 -->
- <div class="ccUsers" @click="onCCChange(item)">
- <span>已抄送{{ item.cc_user.length }}人</span>
- <van-icon
- v-show="!item.ccStatus"
- style="color: #cccccc"
- name="arrow-down"
- />
- <van-icon
- v-show="item.ccStatus"
- style="color: #cccccc"
- name="arrow-up"
- />
- </div>
- <div class="ccUserDetail" v-if="item.ccStatus">
- <span>{{ item.cc_user.join(",") }}</span>
- </div>
- </template>
- </van-step>
- </template>
- </van-steps>
- </div>
- <!-- 是自己审批 或者 是自己提交的记录 并且不是分享连接 -->
- <van-goods-action v-if="share != 1 && is_end == 0">
- <van-goods-action-icon
- v-if="ownerApply"
- :icon="iconDing"
- text="催办"
- @click="handleUrge"
- />
- <van-goods-action-icon
- v-if="ownerApply"
- :icon="iconClose"
- text="关闭"
- @click="handleUnity"
- />
- <van-goods-action-icon
- v-if="userAuthority"
- :icon="iconTransfer"
- text="转交"
- @click="exchange"
- />
- <!-- -->
- <van-goods-action-icon :icon="iconCommit" text="评论" @click="onCommit" />
- <template v-if="userAuthority">
- <van-goods-action-button
- v-for="(item, index) in btn_group"
- :key="index"
- :type="item.className"
- :disabled="submitDisabled"
- :text="item.labelShow"
- plain
- @click="onCheckSubmit(item)"
- />
- <!-- 拒绝按钮内置 -->
- <van-goods-action-button
- v-if="endNodeDetail.id"
- :disabled="submitDisabled"
- plain
- :text="endNodeDetail.label"
- type="danger"
- @click="onCheckSubmit(endNodeDetail)"
- />
- </template>
- </van-goods-action>
- <!-- 审批时填写意见 -->
- <van-popup
- v-model="showMarks"
- closeable
- class="markModel"
- @closed="
- () => {
- remarks = '';
- fileUrl = [];
- }
- "
- >
- <div class="popup-marks">
- <h2>确认{{ popupMarkTxt }}</h2>
- <van-field
- name="remarks"
- v-model="remarks"
- type="textarea"
- class="remarks-input"
- :border="false"
- row="4"
- :autosize="{ maxHeight: 300, minHeight: 180 }"
- maxlength="200"
- show-word-limit
- :placeholder="popupMarkPlaceholder || '请输入审批意见'"
- />
- <div style="padding: 10px 16px">
- <Upload :fileUrl="fileUrl" />
- </div>
- <van-button type="info" round @click="popupSubmit"
- >确认{{ popupMarkTxt }}</van-button
- >
- </div>
- </van-popup>
- <!-- 转交 -->
- <van-popup
- v-model="transferStatus"
- position="bottom"
- :style="{ height: '100%', width: '100%' }"
- >
- <m-header name="转交" :backUrl="backUrl2" />
- <transfer-modal
- v-if="transferStatus"
- :popupForm="popupForm"
- :columns="columns"
- :nodeList="nodeList"
- />
- </van-popup>
- </div>
- </template>
- <script>
- import MHeader from "@/components/header";
- import {
- processStructure,
- handleWorkOrder,
- sysUserList,
- urgeWorkOrder,
- getInfo,
- unityWorkOrder,
- asyncPlayLog,
- orderComment,
- } from "./api";
- import FormModal from "./modal/formModal";
- import TransferModal from "./modal/transferModal";
- import Upload from "./modal/upload";
- import copy from "copy-to-clipboard";
- import dayjs from "dayjs";
- import FilePreview from "./modal/filePreview.vue";
- export default {
- name: "approvalAction",
- components: { MHeader, FormModal, TransferModal, Upload, FilePreview },
- data() {
- let query = this.$route.query;
- return {
- iconComplete: require("./images/system-complete-default.png"),
- iconWait: require("./images/system-wait.png"),
- iconReject: require("./images/system-reject.png"),
- iconSystemTransfer: require("./images/system-transfer.png"),
- iconTransfer: require("./images/icon_transfer.png"),
- iconCommit: require("./images/icon_commit.png"),
- iconDing: require("./images/icon_ding.png"),
- iconClose: require("./images/icon_close.png"),
- iconShare: require("./images/icon_share.png"),
- showMarks: false,
- popupMarkTxt: null,
- popupMarkPlaceholder: null,
- showMarksType: null, // 操作类型
- backUrl2: {
- callBack: () => {
- this.transferStatus = false;
- },
- },
- dayjs,
- active: 0,
- // classify: query.classify,
- processId: query.processId,
- workOrderId: query.workOrderId,
- principals: null,
- share: query.share,
- title: null,
- submitDisabled: false,
- ruleForm: {
- title: "",
- priority: 1,
- process: "",
- classify: "",
- state: [],
- source: "",
- source_state: "",
- process_method: "",
- tpls: {
- form_structure: [],
- form_data: [],
- },
- tasks: [],
- },
- currentNode: {
- hideTpls: null,
- writeTpls: null,
- },
- isActiveProcessing: false,
- tpls: [],
- remarks: "", // 备注信息
- fileUrl: [], // 文件链接
- alertMessage: "",
- nodeStepList: [],
- circulationHistoryList: [],
- endNodeDetail: {}, // 结束结节信息
- activeIndex: 0,
- processStructureValue: {
- workOrder: { title: "" },
- },
- selectItem: null,
- btn_group: [],
- transferStatus: false,
- columns: [],
- popupForm: {
- work_order_id: "",
- node_id: "",
- user_id: "",
- remarks: "",
- fileUrl: [],
- },
- userInfo: {},
- userAuthority: false, // 是否是自己审批
- ownerApply: false, // 是否是自己提交的申请
- is_end: 0, // 是否结束
- is_cancel: 0, // 是否取消
- };
- },
- async mounted() {
- await this.getProcessNodeList();
- if (this.share != 1) {
- await this.getUserInfo();
- }
- },
- methods: {
- onShare() {
- const url = window.location.href + "&share=1";
- copy(url);
- copy(url);
- this.$toast("分享连接复制成功");
- },
- // 获取对应元素的值
- getFormDataDetail(formData, model) {
- let modelStatus = {
- status: false,
- value: null,
- };
- for (let data in formData) {
- if (typeof formData[data] == "object") {
- // 没有子表单里面有子表单
- for (let child in formData[data]) {
- if (child == model) {
- modelStatus = {
- status: true,
- model: child,
- value: formData[data][child]
- ? formData[data][child].split(",")
- : [],
- };
- }
- }
- } else {
- if (data == model) {
- modelStatus = {
- status: true,
- model: data,
- value: formData[data] ? formData[data].split(",") : [],
- };
- }
- }
- }
- return modelStatus;
- },
- getSelectValueObject(tpls, type = "value", tplValues = []) {
- const tempData = tpls || [];
- let selectList = [];
- tempData.forEach((temp, index) => {
- let tempList = temp.form_structure.list || [];
- let tempSelectList = tplValues[index] || [];
- let listArray = [];
- tempList.forEach((list) => {
- if (list.type == "select") {
- if (type == "value") {
- const result = this.getFormDataDetail(temp.form_data, list.model);
- if (result.status) {
- listArray.push(result);
- }
- } else {
- let selectOptions = [];
- let selectValue = [];
- tempSelectList.forEach((tsl) => {
- if (tsl.model == list.model) {
- selectOptions = list.options?.options || [];
- selectValue = tsl.value || [];
- }
- });
- selectOptions.forEach((so) => {
- if (selectValue.includes(so.value)) {
- let tempRo = so.relationOptions || [];
- listArray.push(...tempRo);
- }
- });
- }
- }
- if (list.type == "subform") {
- let childList = list.columns || [];
- childList.forEach((child) => {
- let childList = child.list || [];
- childList.forEach((c) => {
- if (c.type == "select") {
- if (type == "value") {
- const originObj = JSON.parse(JSON.stringify(c));
- const result = this.getFormDataDetail(
- temp.form_data,
- originObj.model
- );
- if (result.status) {
- listArray.push(result);
- }
- } else {
- let selectOptions = [];
- let selectValue = [];
- tempSelectList.forEach((tsl) => {
- if (tsl.model == c.model) {
- selectOptions = c.options?.options || [];
- selectValue = tsl.value || [];
- }
- });
- selectOptions.forEach((so) => {
- if (selectValue.includes(so.value)) {
- let tempRo = so.relationOptions || [];
- listArray.push(...tempRo);
- }
- });
- }
- }
- });
- });
- }
- });
- selectList.push(listArray);
- });
- return selectList;
- },
- async getProcessNodeList() {
- try {
- let params = {
- processId: this.processId,
- workOrderId: this.workOrderId,
- };
- const userId = sessionStorage.getItem("userId");
- if (this.share != 1 && userId) {
- params.userId = userId;
- }
- let res = await processStructure(params);
- this.isActiveProcessing = false;
- let tempData = res.data.tpls;
- // 获取对应模板中,下拉框的key, value
- let selectList = this.getSelectValueObject(tempData);
- // 获取对应模板中,需要隐藏的字段
- let hiddenFormList = this.getSelectValueObject(
- tempData,
- "hiddenForm",
- selectList
- );
- tempData.forEach((temp, index) => {
- let tempList = temp.form_structure.list || [];
- tempList.forEach((item) => {
- if (hiddenFormList[index].length > 0) {
- if (item.type != "text" && !item.options.relationStatus) {
- item.hidden = true;
- } else {
- item.hidden = false;
- }
- // item.hidden = false
- if (hiddenFormList[index].includes(item.model)) {
- item.hidden = false;
- }
- } else {
- item.hidden = false;
- }
- // 子表单
- if (item.type == "subform") {
- let childList = item.columns || [];
- let subFormStatus = true;
- childList.forEach((child) => {
- let childList = child.list || [];
- childList.forEach((c) => {
- if (hiddenFormList[index].length > 0) {
- if (c.type != "text" && !c.options.relationStatus) {
- c.hidden = true;
- } else {
- c.hidden = false;
- subFormStatus = false;
- }
- if (hiddenFormList[index].includes(c.model)) {
- c.hidden = false;
- subFormStatus = false;
- }
- } else {
- c.hidden = false;
- subFormStatus = false;
- }
- });
- });
- item.hidden = subFormStatus;
- }
- });
- });
- this.processStructureValue = res.data;
- this.circulationHistoryList =
- this.processStructureValue.circulationHistory;
- this.userAuthority = this.processStructureValue.userAuthority;
- this.is_end = res.data.workOrder.is_end;
- this.is_cancel = res.data.workOrder.is_cancel;
- if (res.data.workOrder.title) {
- this.title = res.data.workOrder.title;
- }
- // 获取当前展示节点列表
- this.nodeStepList = [];
- this.tempNodeStepList = [];
- const nodes = this.processStructureValue.nodes;
- this.principals = "处理中";
- for (var i = 0; i < nodes.length; i++) {
- if (
- nodes[i].id === this.processStructureValue.workOrder.current_state
- ) {
- // 当前节点
- this.nodeStepList.push(nodes[i]);
- this.activeIndex = this.nodeStepList.length - 1;
- if (i + 1 === nodes.length) {
- this.activeIndex = this.nodeStepList.length;
- }
- this.currentNode = nodes[i];
- // 处理是认谁在处理,已处理完成则显示处理中
- const assignUsers = nodes[i].assignUsers;
- if (assignUsers && assignUsers.length > 0) {
- this.principals = assignUsers[0].username + "处理中";
- }
- } else if (!nodes[i].isHideNode) {
- // 非隐藏节点
- this.nodeStepList.push(nodes[i]);
- }
- // 判断节点里面是否有结束节点,而且一个流程里面只能有一个结束结点,
- if (nodes[i].clazz == "end") {
- this.endNodeDetail = JSON.parse(JSON.stringify(nodes[i]));
- this.endNodeDetail.target = nodes[i].id;
- this.endNodeDetail.flowProperties = 0; // 拒绝属性
- this.endNodeDetail.label = "拒绝";
- }
- }
- this.circulationHistoryList.reverse();
- // 如果审批流程没有结束则,流程和历史记录合并显示;结束了,就只显示历史记录
- if (!this.is_end) {
- this.circulationHistoryList.forEach((cir) => {
- this.nodeStepList.forEach((node) => {
- if (cir.source == node.id) {
- cir.label = node.label;
- cir.assignType = node.assignType;
- cir.assignValue = node.assignValue;
- cir.assignUsers = node.assignUsers;
- cir.id = node.id;
- }
- });
- });
- let tempNodes = [];
- this.nodeStepList.forEach((node) => {
- let count = 0;
- this.circulationHistoryList.forEach((cir) => {
- if (node.id === cir.source) {
- count += 1;
- }
- });
- if (count <= 0) {
- tempNodes.push(node);
- }
- });
- this.circulationHistoryList.push(...tempNodes);
- this.circulationHistoryList.forEach((cir, index) => {
- if (cir.id == this.processStructureValue.workOrder.current_state) {
- this.activeIndex = index;
- if (index + 1 == this.circulationHistoryList.length) {
- this.activeIndex = this.circulationHistoryList.length;
- }
- }
- });
- } else {
- this.activeIndex = this.circulationHistoryList.length;
- }
- // 添加抄送状态
- this.circulationHistoryList.forEach((res) => {
- res.ccStatus = true;
- const file = res.file_url ? JSON.parse(res.file_url) : [];
- const tempFile = {
- image: [],
- file: [],
- };
- file.forEach((item) => {
- if (item.type == "image") {
- tempFile.image.push(item);
- } else if (item.type == "file") {
- tempFile.file.push(item);
- }
- });
- res.fileUrl = tempFile;
- // console.log(tempFile, res);
- });
- // 如果回退到初始节点则可编辑。
- if (this.activeIndex === 0 && this.currentNode.clazz === "start") {
- this.currentNode.writeTpls = [];
- for (var tplTmp of this.processStructureValue.tpls) {
- this.currentNode.writeTpls.push(tplTmp.form_structure.id);
- }
- }
- // 判断是否需要主动处理
- for (var stateValue of this.processStructureValue.workOrder.state) {
- if (
- this.processStructureValue.workOrder.current_state ===
- stateValue.id &&
- stateValue.processor.length > 1
- ) {
- this.isActiveProcessing = true;
- break;
- }
- }
- let psv = res.data?.edges || [];
- let btn_group = [];
- psv.forEach((item) => {
- // console.log(this.currentNode)
- // 过滤其它类型的操作
- if (
- this.is_end === 0 &&
- item.source === this.currentNode.id &&
- item.flowProperties == 1
- ) {
- if (item.flowProperties == 1) {
- item.className = "info";
- item.labelShow = "同意";
- } else if (item.flowProperties == 0) {
- item.className = "danger";
- } else if (item.flowProperties == 2) {
- item.className = "info";
- }
- btn_group.push(item);
- } else {
- item.className = "info";
- }
- });
- this.btn_group = btn_group;
- // console.log(this.endNodeDetail, btn_group , 'btn_group')
- // console.log(this.circulationHistoryList);
- this.getAlertMessage();
- } catch {
- //
- }
- },
- relationFormChange(value) {
- let temp = value || [];
- this.formData.list?.forEach((item) => {
- item.hidden = false;
- if (temp.includes(item.model)) {
- item.hidden = true;
- }
- // 子表单
- if (item.type == "subform") {
- let childList = item.columns || [];
- childList.forEach((child) => {
- if (child.list?.length > 0) {
- child.list.forEach((c) => {
- c.hidden = false;
- if (temp.includes(c.originModel)) {
- c.hidden = true;
- }
- });
- }
- });
- // 重置数据
- let subForm = this.$refs.subform;
- subForm.forEach((item) => {
- item.reSetFormData();
- });
- }
- });
- },
- async getUserInfo() {
- // 获取用户信息
- try {
- let user = await getInfo();
- this.userInfo = user.data;
- this.ownerApply =
- this.processStructureValue.workOrder.creator == this.userInfo.userId
- ? true
- : false;
- } catch {
- //
- }
- },
- // 获取提示消息
- getAlertMessage() {
- if (this.is_end === 1) {
- this.alertMessage = "当前工单已结束";
- }
- },
- // 转交
- async exchange() {
- let workOrder = this.processStructureValue.workOrder;
- this.popupForm.work_order_id = workOrder.id;
- this.nodeList = workOrder.state || [];
- this.nodeList.forEach((item) => {
- item.text = item.label;
- });
- if (this.nodeList.length === 1) {
- this.popupForm.node_id = this.nodeList[0].id;
- }
- try {
- // 获取所有用户
- const res = await sysUserList({ pageSize: 9999 });
- const users = res.data.list || [];
- users.forEach((item) => {
- this.columns.push({
- avatar: item.avatar,
- text: item.nickName,
- phone: item.phone,
- id: item.userId,
- });
- });
- } catch {
- //
- }
- this.transferStatus = true;
- },
- // 评论
- onCommit() {
- this.showMarksType = "commit";
- this.showMarks = true;
- this.popupMarkTxt = "评论";
- this.popupMarkPlaceholder = "请输入评论内容";
- },
- // 催办
- handleUrge() {
- this.$dialog
- .confirm({
- title: "催办",
- allowHtml: true,
- message:
- '<span style="font-size:15px ">对此工单处理人进行催办通知提醒, 是否继续?</span><br><span style="color: #c33; font-size: 10px">注意:十分钟内只能催办一次。</span>',
- confirmButtonColor: "#01C1B5",
- })
- .then(async () => {
- try {
- let workOrder = this.processStructureValue.workOrder;
- let workOrderId = workOrder.id;
- await urgeWorkOrder({ workOrderId });
- this.$toast("已进行催办通知");
- } catch {
- //
- }
- });
- },
- handleUnity() {
- // 关闭
- this.$dialog
- .confirm({
- title: "提示",
- allowHtml: true,
- message:
- '<span style="font-size:15px ">此操作将会关闭该工单, 是否继续?</span>',
- confirmButtonColor: "#01C1B5",
- })
- .then(async () => {
- try {
- let workOrder = this.processStructureValue.workOrder;
- let work_oroder_id = workOrder.id;
- await unityWorkOrder({ work_oroder_id });
- this.$toast("已关闭工单");
- setTimeout(() => {
- this.$router.push({
- path: "/myApproval",
- query: {
- classify: 2,
- },
- });
- }, 500);
- } catch {
- //
- }
- });
- },
- onCheckSubmit(item) {
- this.selectItem = item;
- this.showMarksType = "check";
- this.popupMarkPlaceholder = "";
- this.$refs.headForm.validate().then(() => {
- this.showMarks = true;
- this.popupMarkTxt = item.label;
- });
- },
- async popupSubmit() {
- // 判断是否评论
- console.log("111", this.showMarksType);
- if (this.showMarksType === "commit") {
- if (!this.remarks) {
- return this.$toast("请输入评论内容");
- }
- try {
- await orderComment({
- workOrderId: parseInt(this.workOrderId),
- remarks: this.remarks,
- fileUrl: JSON.stringify(this.fileUrl || []),
- });
- this.showMarks = false;
- this.popupMarkTxt = null;
- // 初始化
- this.getProcessNodeList();
- } catch {
- //
- }
- } else {
- this.$refs.headForm.submit();
- this.showMarks = false;
- this.popupMarkTxt = null;
- }
- },
- onCCChange(item) {
- item.ccStatus = !item.ccStatus;
- this.$forceUpdate();
- },
- async onSubmitHead(values) {
- // remarks
- let { ...res } = values;
- let promiseList = [];
- this.tpls = [];
- for (let tpl of this.processStructureValue.tpls) {
- this.tpls.push({
- tplDataId: tpl.id,
- tplId: tpl.form_structure.id,
- });
- // 说明是当前用户需要填写的列表数据
- if (
- this.currentNode.writeTpls !== undefined &&
- this.currentNode.writeTpls !== null &&
- this.currentNode.writeTpls.indexOf(tpl.form_structure.id) > -1
- ) {
- let fd = this.formatData(res);
- promiseList.push(fd);
- } else {
- // 已存在的表单数据
- promiseList.push(tpl.form_data);
- }
- }
- for (let tplDataIndex in this.tpls) {
- this.tpls[tplDataIndex].tplValue = promiseList[tplDataIndex];
- }
- let params = {
- tasks: this.processStructureValue.process.task,
- source_state: this.processStructureValue.workOrder.current_state,
- target_state: this.selectItem.target,
- circulation: this.selectItem.label,
- flow_properties:
- this.selectItem.flowProperties === undefined
- ? 2
- : parseInt(this.selectItem.flowProperties),
- work_order_id: parseInt(this.workOrderId),
- remarks: this.remarks,
- fileUrl: JSON.stringify(this.fileUrl || []),
- tpls: this.tpls,
- };
- let fileList = [];
- this.tpls &&
- this.tpls.forEach((tpl) => {
- for (let val in tpl.tplValue) {
- if (val.indexOf("file") != -1) {
- const file = tpl.tplValue[val] || [];
- file.forEach((item) => {
- fileList.push(item.url);
- });
- }
- }
- });
- try {
- // const fileUrl = ''
- // console.log(params)
- // return
- // 确认提交
- await handleWorkOrder(params);
- await asyncPlayLog({
- workOrderId: parseInt(this.workOrderId),
- fileUrl: fileList.join(","),
- });
- this.submitDisabled = false;
- // workOrderId
- this.getProcessNodeList();
- } catch {
- //
- this.submitDisabled = false;
- }
- },
- formatData(json) {
- let tempJson = {};
- let subFormList = {};
- for (let v in json) {
- let nameList = v.split(".");
- // 只要大于1说明是子表单
- if (nameList.length > 1) {
- nameList.push(v);
- let delName = nameList.shift();
- if (subFormList[delName]) {
- subFormList[delName].push(nameList);
- } else {
- subFormList[delName] = [];
- subFormList[delName].push(nameList);
- }
- } else {
- tempJson[v] = json[v];
- }
- }
- for (let sub in subFormList) {
- let subList = subFormList[sub] || [];
- let subDown = [];
- subList.forEach((item) => {
- if (subDown[item[1]]) {
- subDown[item[1]][item[0]] = json[item[2]];
- } else {
- subDown[item[1]] = {};
- subDown[item[1]][item[0]] = json[item[2]];
- }
- });
- tempJson[sub] = subDown;
- }
- return tempJson;
- },
- dataModelFormatBr(str) {
- return str ? str.replace(/\n/g, "<br />") : str;
- },
- getHideTplData(tpl) {
- // 獲取隱藏模板數據
- let list = tpl.list;
- let data = {};
- list.forEach((item) => {
- if (item.type == "subform") {
- if (item.columns.length > 0) {
- data[item.model] = [];
- let arr = [];
- item.columns?.forEach((col) => {
- if (col.list?.length > 0) {
- arr.push(...col.list);
- }
- });
- let tempSub = {};
- arr.forEach((a) => {
- tempSub[a.model] = a.options.defaultValue;
- });
- data[item.model].push(tempSub);
- } else {
- data[item.model] = "";
- }
- } else {
- data[item.model] = item.options.defaultValue;
- }
- });
- return data;
- },
- },
- };
- </script>
- <style lang="less" scoped>
- @import url("../../assets/commonLess/variable.less");
- .approvalContainer {
- min-height: 100vh;
- }
- .approvalAction {
- margin-bottom: 85px;
- padding-bottom: env(safe-area-inset-bottom);
- }
- /deep/.van-goods-action {
- box-shadow: 0 4px 10px 0 #cecece;
- z-index: 99;
- justify-content: space-around;
- height: 70px;
- .van-goods-action-icon__icon {
- font-size: 20px;
- min-width: 55px;
- display: flex;
- justify-content: center;
- }
- .van-goods-action-button--last {
- margin-right: 0.12rem;
- }
- .van-button--danger {
- background: #fff;
- border: 1px solid #01c1b5;
- color: #01c1b5;
- }
- }
- .style {
- margin-bottom: 0.12rem;
- padding: 12px 16px;
- line-height: 1.3;
- font-size: 16px;
- &.info {
- display: flex;
- flex-direction: column;
- }
- /deep/.van-field__label {
- margin-bottom: 7px;
- width: auto;
- color: #111f2c;
- }
- /deep/.van-field__value {
- padding: 0.03rem 0;
- }
- }
- .headerInfo {
- margin-bottom: 0.1rem;
- padding: 0.18rem 0.12rem;
- overflow: inherit;
- /deep/.van-cell__title {
- flex-direction: column;
- align-items: flex-start;
- }
- }
- .titleSection {
- .titleContent {
- font-size: 0.18rem;
- color: #333333;
- padding-right: 0.08rem;
- }
- }
- .waitStatus {
- color: #f39001;
- font-size: 0.14rem;
- display: inline-block;
- padding-top: 0.06rem;
- }
- .imgStatus {
- bottom: -35%;
- width: 0.75rem;
- height: 0.75rem;
- position: absolute;
- z-index: 98;
- right: 0.2rem;
- }
- .markModel {
- width: 90%;
- border-radius: 0.08rem;
- padding: 0.2rem 0;
- }
- .popup-marks {
- // width: 95%;
- h2 {
- font-size: 0.16rem;
- text-align: center;
- }
- /deep/.van-cell {
- font-size: 0.14rem;
- }
- /deep/.van-button {
- width: 90%;
- margin-left: 5%;
- font-size: 0.16rem;
- }
- }
- .step_section {
- margin: 0px 0.12rem 0.12rem;
- border-radius: 0.1rem;
- overflow: hidden;
- .step_title {
- background: #fff;
- padding: 0.1rem 0.16rem;
- color: #333333;
- font-size: 0.18rem;
- font-weight: 500;
- }
- /deep/.van-steps--vertical {
- padding-left: 0.45rem;
- .van-step__circle-container,
- .van-step__line {
- left: -22px;
- }
- }
- .step {
- font-size: 0.13rem;
- .step-t {
- display: flex;
- align-content: center;
- justify-content: space-between;
- font-size: 0.16rem;
- color: #444;
- }
- .inactive-icon {
- width: 0.1rem;
- height: 0.1rem;
- background: #d8d8d8;
- display: inline-block;
- border-radius: 1rem;
- }
- .apply-state {
- line-height: 1.5;
- flex-basis: 73%;
- }
- .apply-time {
- font-size: 0.14rem;
- color: #999999;
- flex-basis: 27%;
- }
- .apply-status {
- padding: 0.05rem 0;
- color: #999;
- }
- .remarks {
- background: #f5f5f5;
- padding: 0.08rem;
- color: #323233;
- }
- .van-icon {
- font-size: 0.17rem;
- }
- }
- .ccUsers {
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #444;
- padding-top: 0.08rem;
- }
- .ccUserDetail {
- color: #444;
- }
- }
- .imgUploader {
- background: #f5f5f5;
- margin-top: 8px;
- margin-bottom: 8px;
- }
- .preview-uploader {
- vertical-align: middle;
- /deep/.van-uploader__wrapper--disabled {
- opacity: 1;
- }
- /deep/.van-uploader__preview {
- margin-bottom: 0;
- }
- /deep/.van-uploader__preview-image {
- background: #f5f5f5;
- border-radius: 4px;
- padding: 2px;
- }
- }
- .remarks-input {
- background: #f7f8f9;
- margin: 0.14rem 0.14rem 0;
- width: auto;
- font-size: 0.14rem;
- border-radius: 8px;
- }
- </style>
|