| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960 |
- <template>
- <ele-modal
- :title="title"
- :visible.sync="visible"
- v-if="visible"
- :close-on-click-modal="false"
- @close="handleClose"
- resizable
- maxable
- width="80%"
- append-to-body
- >
- <div
- v-if="(type == 'detail' || type == 'edit') && form.processInstanceId"
- class="switch"
- :maxable="true"
- style="margin-bottom: 20px"
- >
- <div class="switch_left">
- <ul>
- <li
- v-for="item in tabOptions"
- :key="item.key"
- :class="{ active: activeComp == item.key }"
- @click="activeComp = item.key"
- >
- {{ item.name }}
- </li>
- </ul>
- </div>
- </div>
- <bpmDetail
- v-if="activeComp == 'bpm' && form && form.processInstanceId"
- :id="form.processInstanceId"
- >
- </bpmDetail>
- <el-form
- v-if="activeComp == 'main'"
- ref="formRef"
- :model="form"
- :rules="rules"
- label-width="100px"
- :disabled="type == 'detail'"
- >
- <header-title title="基本信息"></header-title>
- <el-row :gutter="10">
- <el-col :span="8">
- <el-form-item label="放行单编码">
- <el-input
- v-model="form.code"
- placeholder="系统自动生成"
- disabled
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="放行单名称" prop="name">
- <el-input v-model="form.name" placeholder="请输入"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <header-title title="物品清单">
- <el-button type="primary" icon="el-icon-plus" @click="openAddModel">
- 添加
- </el-button>
- </header-title>
- <ele-pro-table
- ref="table"
- row-key="userId"
- :columns="ordersColumns"
- :datasource="form.orders"
- >
- <template v-slot:action="{ row }">
- <el-link
- icon="el-icon-view"
- type="primary"
- :underline="false"
- @click="openWorkOrderDetail(row)"
- >详情</el-link
- >
- <el-link
- v-if="type != 'detail'"
- icon="el-icon-delete"
- type="danger"
- :underline="false"
- @click="deleteRow(row)"
- >删除</el-link
- >
- </template>
- </ele-pro-table>
- <el-button
- type="primary"
- style="margin-bottom: 15px"
- @click="getKitCheck"
- :loading="butLoading"
- >
- 规则齐套检查
- </el-button>
- <header-title title="生产放行规则"> </header-title>
- <ele-pro-table
- ref="scTable"
- row-key="id"
- :columns="detailsColumns"
- :datasource="scDetails"
- >
- <template v-slot:isPass="{ row }">
- <el-radio-group v-model="row.isPass">
- <el-radio :label="1">是</el-radio>
- <el-radio :label="0">否</el-radio>
- </el-radio-group>
- </template>
- <template v-slot:remark="{ row }">
- <el-input
- type="textarea"
- v-model="row.remark"
- placeholder="请输入备注"
- :rows="1"
- ></el-input>
- </template>
- </ele-pro-table>
- <table
- class="detail-table"
- key="first-table"
- style="width: 500px; margin: 15px 0"
- >
- <tr>
- <td>结论</td>
- <td>
- <el-radio-group v-model="form.workConclution">
- <el-radio :label="0">不符合规定</el-radio>
- <el-radio :label="1">符合规定</el-radio>
- </el-radio-group>
- </td>
- </tr>
- <tr>
- <td>验收人</td>
- <td @click="openSelectUser(0)">
- <div class="mask-box">
- <el-input
- v-model="form.workCheckUserName"
- placeholder="请输选择验收人"
- readonly
- ></el-input>
- </div>
- </td>
- </tr>
- <tr>
- <td>验收时间</td>
- <td>
- <el-date-picker
- v-model="form.workCheckTime"
- type="datetime"
- placeholder="选择日期时间"
- style="width: 100%"
- value-format="yyyy-MM-dd HH:mm:ss"
- ></el-date-picker>
- </td>
- </tr>
- </table>
- <header-title title="质检放行规则"></header-title>
- <ele-pro-table
- ref="zjTable"
- row-key="id"
- :columns="detailsColumns"
- :datasource="zjDetails"
- >
- <template v-slot:isPass="{ row }">
- <el-radio-group v-model="row.isPass">
- <el-radio :label="1">是</el-radio>
- <el-radio :label="0">否</el-radio>
- </el-radio-group>
- </template>
- <template v-slot:remark="{ row }">
- <el-input
- type="textarea"
- v-model="row.remark"
- placeholder="请输入备注"
- :rows="1"
- ></el-input>
- </template>
- </ele-pro-table>
- <table
- class="detail-table"
- key="tow"
- style="width: 500px; margin: 15px 0"
- >
- <tr>
- <td>结论</td>
- <td>
- <el-radio-group v-model="form.qualityConclution">
- <el-radio :label="0">不符合规定</el-radio>
- <el-radio :label="1">符合规定</el-radio>
- </el-radio-group>
- </td>
- </tr>
- <tr>
- <td>验收人</td>
- <td>
- <div class="mask-box" @click="openSelectUser(1)">
- <el-input
- v-model="form.qualityCheckUserName"
- placeholder="请输选择验收人"
- readonly
- ></el-input>
- </div>
- </td>
- </tr>
- <tr>
- <td>验收时间</td>
- <td>
- <el-date-picker
- v-model="form.qualityCheckTime"
- type="datetime"
- placeholder="选择日期时间"
- style="width: 100%"
- value-format="yyyy-MM-dd HH:mm:ss"
- ></el-date-picker>
- </td>
- </tr>
- </table>
- <!-- 选择生产工单 -->
- <selectWorkOrder
- ref="selectWorkOrderRef"
- :where="workOrderWhere"
- :autoClose="false"
- @confirm="selectWorkOrderConfirm"
- ></selectWorkOrder>
- <!-- 选择用户 -->
- <SelectUser
- ref="SelectUserRef"
- v-model="showSelectUser"
- @selectUserFinished="selectUserFinished"
- ></SelectUser>
- </el-form>
- <template v-slot:footer>
- <el-button
- v-if="type != 'detail' && !form.approvalStatus"
- type="primary"
- @click="submit('submit')"
- :loading="butLoading"
- >保存并提交</el-button
- >
- <el-button
- v-if="type != 'detail' && !form.approvalStatus"
- type="primary"
- @click="submit('save')"
- :loading="butLoading"
- >保存</el-button
- >
- <el-button @click="handleClose">取 消</el-button>
- </template>
- <detailsPop ref="detailsRef"> </detailsPop>
- <process-submit-dialog
- :processSubmitDialogFlag.sync="processSubmitDialogFlag"
- v-if="processSubmitDialogFlag"
- ref="processSubmitDialogRef"
- :isNotNeedProcess="false"
- ></process-submit-dialog>
- </ele-modal>
- </template>
- <script>
- import dictMixins from '@/mixins/dictMixins';
- import selectWorkOrder from './selectWorkOrder.vue';
- import { checklisttemplateGetById } from '@/api/checklisttemplate/index';
- import SelectUser from '@/components/select/SelectUser/index.vue';
- import {
- checklistrecordSave,
- checklistrecordGetById,
- checklistrecordUpdate,
- checklistrecordKitCheck
- } from '@/api/checklistrecord/index';
- import bpmTask from '@/components/bpmTask/bpmTask.vue';
- import bpmDetail from '@/views/bpm/processInstance/detail.vue';
- import detailsPop from '@/views/produceOrder/components/details/index.vue';
- import { getById as getworkOrderById } from '@/api/produceOrder/index';
- import processSubmitDialog from '@/components/processSubmitDialog/processSubmitDialog.vue';
- export default {
- mixins: [dictMixins],
- components: {
- selectWorkOrder,
- SelectUser,
- bpmTask,
- bpmDetail,
- detailsPop,
- processSubmitDialog
- },
- props: {
- // 保存是否关闭弹窗
- saveClose: {
- type: Boolean,
- default: false
- }
- },
- data() {
- const formBaseData = {
- id: null,
- approvalStatus: null,
- checklistType: 0,
- code: '',
- createUserName: '',
- details: [],
- name: '',
- orders: [],
- processInstanceId: '',
- qualityCheckTime: '',
- qualityCheckUserId: null,
- qualityCheckUserName: '',
- qualityConclution: null,
- templateId: 0,
- templateName: '',
- workCheckTime: '',
- workCheckUserId: null,
- workCheckUserName: '',
- workConclution: null
- };
- return {
- visible: false,
- title: '放行申请单',
- formBaseData,
- form: JSON.parse(JSON.stringify(formBaseData)),
- rules: {
- name: [
- { required: true, message: '请输入放行单名称', trigger: 'blur' },
- { required: true, message: '请输入放行单名称', trigger: 'change' }
- ]
- },
- // 类型 add / edit / detail
- type: '',
- // 生产工单查询条件
- workOrderWhere: {
- statusList: ['6'],
- queryTermination: 0
- },
- loading: false,
- butLoading: false,
- tabOptions: [
- { key: 'main', name: '放行单详情' },
- { key: 'bpm', name: '流程详情' }
- ],
- // 当前选项
- activeComp: 'main',
- showSelectUser: false,
- // 0 生产验收人 1 质检验收人
- selectUserType: 0,
- processSubmitDialogFlag: false
- };
- },
- watch: {
- 'form.details': {
- handler(details) {
- console.log('details', details);
- // 区分生产放行规则 质检放行规则
- // 根据 审核结果修改 结论
- const scDetails = details.filter((item) => item.checkType == 1);
- const zjDetails = details.filter((item) => item.checkType == 2);
- // 当workConclution全为1 则为1 否则为0
- if (scDetails.length > 0) {
- const allPass = scDetails
- .map((item) => item.isPass)
- .every((val) => val === 1);
- this.form.workConclution = allPass ? 1 : 0;
- } else {
- this.form.workConclution = null;
- }
- if (zjDetails.length > 0) {
- const allPass = zjDetails
- .map((item) => item.isPass)
- .every((val) => val == 1);
- this.form.qualityConclution = allPass ? 1 : 0;
- } else {
- this.form.qualityConclution = null;
- }
- },
- deep: true
- },
- processSubmitDialogFlag(val) {
- if (!val) {
- // 关闭后 刷新详情
- if (this.form.id) {
- this.$emit('reload');
- this.$nextTick(() => {
- this.handleClose();
- });
- }
- }
- }
- },
- computed: {
- ordersColumns() {
- return [
- {
- width: 55,
- type: 'index',
- columnKey: 'index',
- label: '序号',
- align: 'center'
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'productCode',
- label: '产品编码',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'productName',
- label: '产品名称',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'workOrderCode',
- label: '生产工单号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'formingNum',
- label: '要求生产数量',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'formedNum',
- label: '实际生产数量',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'productModel',
- label: '型号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- label: '操作',
- columnKey: 'action',
- slot: 'action',
- minWidth: 120
- }
- ];
- },
- // 生产放行规则
- scDetails() {
- return this.form.details.filter((item) => item.checkType == 1);
- },
- // 质检放行规则
- zjDetails() {
- return this.form.details.filter((item) => item.checkType == 2);
- },
- detailsColumns() {
- return [
- {
- width: 55,
- type: 'index',
- columnKey: 'index',
- label: '序号',
- align: 'center'
- },
- {
- prop: 'mainIndicatorName',
- label: '指标名称',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'isPass',
- label: '审核结果',
- align: 'center',
- slot: 'isPass',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'remark',
- label: '备注',
- align: 'center',
- slot: 'remark',
- minWidth: 110,
- showOverflowTooltip: true
- }
- ];
- }
- },
- methods: {
- // 外部调用,打开弹窗
- open(type, data) {
- console.log('data , type', data, type);
- this.type = type;
- if (type == 'add') {
- this.title = '放行申请单';
- // 生产放心单名称 = 模版名称+年月日+3位数
- this.form.name = `${data.templateName}${new Date()
- .toLocaleDateString()
- .replace(/\//g, '')}${String(
- Math.floor(Math.random() * 1000)
- ).padStart(3, '0')}`;
- this.form.templateId = data.templateId;
- this.form.templateName = data.templateName;
- this.form.checklistType = data.checklistType;
- // 处理携带的生产工单
- if (data.workOrderList && data.workOrderList.length) {
- this.selectWorkOrderConfirm(data.workOrderList);
- }
- // 根据模版id 查询模版详情
- this.getTemplateDetails(data.templateId);
- } else if (type == 'edit') {
- this.title = '放行申请单';
- this.getCheckDetails(data.id);
- } else if (type == 'detail') {
- this.title = '放行单详情';
- this.getCheckDetails(data.id);
- } else {
- this.title = '审批';
- }
- this.visible = true;
- },
- // 关闭时清理表单
- handleClose() {
- this.form = JSON.parse(JSON.stringify(this.formBaseData));
- this.activeComp = 'main';
- this.$nextTick(() => {
- // 关闭流程里 visible 可能已变为 false(v-if 卸载整块内容),或当前在 BPM 页签时表单未挂载
- this.$refs.formRef?.clearValidate();
- this.visible = false;
- });
- },
- // 提交
- // submit(type) {
- // console.log('this.form', this.form);
- // this.$refs.formRef.validate(async (valid, invalidFields) => {
- // if (valid) {
- // // 必须要有物品清单
- // if (this.form.orders.length == 0) {
- // this.$message.warning('请添加物品清单');
- // return;
- // }
- // this.butLoading = true;
- // try {
- // if (type == 'save') {
- // // 存在id 则更新
- // if (this.form.id) {
- // await checklistrecordUpdate(this.form);
- // this.$message.success('操作成功,已保存到放行单列表');
- // } else {
- // this.form.createUserName = this.$store.state.user.info.name;
- // const data = await checklistrecordSave(this.form);
- // this.$message.success('操作成功,已保存到放行单列表');
- // this.form.id = data;
- // this.getCheckDetails(this.form.id);
- // }
- // } else {
- // // submit 保存并提交审核
- // // 存在id 则更新
- // if (this.form.id) {
- // await checklistrecordUpdate(this.form);
- // } else {
- // this.form.createUserName = this.$store.state.user.info.name;
- // const data = await checklistrecordSave(this.form);
- // this.form.id = data;
- // await this.getCheckDetails(this.form.id);
- // }
- // this.openApproval();
- // }
- // this.butLoading = false;
- // this.$emit('reload');
- // } catch (error) {
- // this.butLoading = false;
- // }
- // } else {
- // // 转换为数组
- // const firstErrorField = Object.values(invalidFields);
- // if (firstErrorField.length > 0) {
- // this.$message.warning(firstErrorField[0][0].message);
- // }
- // return false;
- // }
- // });
- // },
- submit(type) {
- this.$refs.formRef.validate(async (valid, invalidFields) => {
- if (valid) {
- // 必须要有物品清单
- if (this.form.orders.length == 0) {
- this.$message.warning('请添加物品清单');
- return;
- }
- this.butLoading = true;
- const text = type == 'save' ? '保存中...' : '提交中...';
- const loading = this.$loading({
- lock: true,
- text,
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- try {
- if (type == 'save') {
- // 存在id 则更新
- if (this.form.id) {
- await checklistrecordUpdate(this.form);
- this.$message.success('操作成功,已保存到放行单列表');
- } else {
- this.form.createUserName = this.$store.state.user.info.name;
- const data = await checklistrecordSave(this.form);
- this.$message.success('操作成功,已保存到放行单列表');
- this.form.id = data;
- this.getCheckDetails(this.form.id);
- }
- } else {
- if (this.form.id) {
- await checklistrecordUpdate(this.form);
- } else {
- this.form.createUserName = this.$store.state.user.info.name;
- const data = await checklistrecordSave(this.form);
- this.form.id = data;
- await this.getCheckDetails(this.form.id);
- }
- this.openApproval();
- }
- // this.visible = false;
- this.$emit('reload');
- } catch (error) {
- console.error(error);
- } finally {
- this.butLoading = false;
- loading.close();
- }
- } else {
- // 转换为数组
- const firstErrorField = Object.values(invalidFields);
- if (firstErrorField.length > 0) {
- this.$message.warning(firstErrorField[0][0].message);
- }
- return false;
- }
- });
- },
- // 选择生产工单
- openAddModel() {
- this.$refs.selectWorkOrderRef?.open();
- },
- // 选择生产工单确认
- selectWorkOrderConfirm(selection) {
- const selectList = selection.map((i) => {
- return {
- formedNum: i.formedNum,
- batchNo: i.batchNo,
- createUserName: i.createUserName,
- formingNum: i.formingNum,
- produceRoutingId: i.produceRoutingId,
- produceRoutingName: i.produceRoutingName,
- productCode: i.productCode,
- productModel: i.productModel,
- productName: i.productName,
- recordId: i.recordId,
- specification: i.specification,
- workOrderCode: i.code,
- workOrderId: i.id
- };
- });
- console.log('selectList', selectList);
- // 判断是否同一产品 同一批次
- if (selectList.length != 0) {
- const productCode = selectList[0].productCode;
- const batchNo = selectList[0].batchNo;
- const isSame = selectList.every(
- (item) =>
- item.productCode === productCode && item.batchNo === batchNo
- );
- const isSameOrders = this.form.orders.every(
- (item) =>
- item.productCode === productCode && item.batchNo === batchNo
- );
- if (!isSame || !isSameOrders) {
- this.$message.warning('请选择同产品同批次号工单发起批量放行');
- return;
- }
- // 去重
- const existingWorkOrderIds = this.form.orders.map(
- (order) => order.workOrderId
- );
- const newOrders = selectList.filter(
- (item) => !existingWorkOrderIds.includes(item.workOrderId)
- );
- this.form.orders = [...this.form.orders, ...newOrders];
- }
- // 关闭弹窗
- this.$refs.selectWorkOrderRef?.handleClose();
- },
- // 删除行
- deleteRow(row) {
- this.form.orders = this.form.orders.filter(
- (item) => item.workOrderId !== row.workOrderId
- );
- },
- // 获取模板详情
- async getTemplateDetails(id) {
- this.loading = true;
- try {
- const data = await checklisttemplateGetById(id);
- console.log('模板详情', data);
- // 详情
- this.form.details = data.details;
- this.loading = false;
- this.setDefaultValue();
- } catch (error) {
- this.loading = false;
- }
- },
- // 获取放行单详情
- async getCheckDetails(id) {
- this.loading = true;
- try {
- const data = await checklistrecordGetById(id);
- this.$util.assignObject(this.form, data);
- console.log('this.form', this.form);
- if (this.type == 'edit' || this.type == 'add') {
- this.setDefaultValue();
- }
- this.loading = false;
- } catch (error) {
- this.loading = false;
- }
- },
- // 设置默认值
- setDefaultValue() {
- // 编辑时 设置默认值
- if (!this.form.qualityCheckUserId) {
- // 设置为当前用户
- this.form.qualityCheckUserId = this.$store.state.user.info.id;
- this.form.qualityCheckUserName = this.$store.state.user.info.name;
- }
- if (!this.form.workCheckUserId) {
- // 设置为当前用户
- this.form.workCheckUserId = this.$store.state.user.info.id;
- this.form.workCheckUserName = this.$store.state.user.info.name;
- }
- if (!this.form.qualityCheckTime) {
- this.form.qualityCheckTime = this.$util.toDateString(
- new Date(),
- 'yyyy-MM-dd HH:mm:ss'
- );
- }
- if (!this.form.workCheckTime) {
- this.form.workCheckTime = this.$util.toDateString(
- new Date(),
- 'yyyy-MM-dd HH:mm:ss'
- );
- }
- },
- // 规则齐套检查
- async getKitCheck() {
- // 判断 是否有需要自动检查的项
- const hasAutoCheck = this.form.details.some((item) => item.isAutoCheck);
- if (!hasAutoCheck) {
- console.log('this.form.details', this.form.details);
- this.$message.warning('当前没有需要自动检查的规则');
- return;
- }
- // 必须要有物品清单
- if (this.form.orders.length == 0) {
- this.$message.warning('请添加物品清单');
- return;
- }
- if (!this.form.id) {
- this.$message.warning('请先保存放行单');
- return;
- }
- try {
- this.butLoading = true;
- const data = await checklistrecordKitCheck(this.form.id);
- console.log('规则齐套检查', data);
- // 把检查结果赋值给对应的明细
- this.form.details = this.form.details.map((item) => {
- const checkItem = data.find((d) => d.id === item.id);
- console.log('checkItem 存在', checkItem);
- if (checkItem && item.isAutoCheck) {
- return {
- ...item,
- isPass: checkItem.isPass
- };
- }
- return item;
- });
- console.log('规则齐套检查', this.form.details);
- this.butLoading = false;
- this.$message.success('规则齐套检查完成!');
- } catch (error) {
- this.butLoading = false;
- }
- },
- // 打开选择用户
- openSelectUser(type) {
- this.selectUserType = type;
- this.showSelectUser = true;
- },
- selectUserFinished(userInfo) {
- console.log('userInfo', userInfo);
- console.log('this.selectUserType', this.selectUserType);
- if (this.selectUserType == 0) {
- this.form.workCheckUserId = userInfo.id;
- this.form.workCheckUserName = userInfo.name;
- } else {
- this.form.qualityCheckUserId = userInfo.id;
- this.form.qualityCheckUserName = userInfo.name;
- }
- },
- async openWorkOrderDetail(row) {
- console.log('row', row);
- const info = await getworkOrderById(row.workOrderId);
- this.$refs.detailsRef.open(info);
- },
- // 提交审批
- openApproval() {
- const row = this.form;
- console.log('row', row);
- let businessType = this.getDictValue(
- '放行类型',
- row.checklistType + ''
- );
- console.log('businessType', businessType);
- this.processSubmitDialogFlag = true;
- this.$nextTick(async () => {
- let params = {
- businessId: row.id,
- businessKey: 'work_order_checklist_approval',
- formCreateUserId: row.createUserId,
- variables: {
- businessCode: row.code,
- businessName: '放行单',
- businessType: businessType
- }
- };
- if (this.clientEnvironmentId == 5) {
- // 嘉实环境
- const data = await getCategoryByCode(row.orders[0]?.productCode);
- // 判断品类
- if (data && data.categoryLevelCodePath?.includes('W3-209')) {
- // 药品
- params.businessKey = 'work_order_checklist_approval1';
- } else {
- // 器械
- params.businessKey = 'work_order_checklist_approval';
- }
- }
- console.log('params', params);
- this.$refs.processSubmitDialogRef.init(params);
- });
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .detail-table {
- border: 1px solid #ebeef5;
- // 实线边框
- border-collapse: collapse;
- td {
- border: none;
- padding: 10px 15px;
- border: 1px solid #ebeef5;
- &:first-child {
- font-weight: 600;
- background: #f5f7fa;
- width: 130px;
- text-align: center;
- }
- }
- }
- .mask-box {
- position: relative;
- &::after {
- content: '';
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, 0);
- cursor: pointer;
- }
- }
- </style>
|