|
|
- <template>
- <div class="flex " :class="getFlexClass()">
- <div class="flex" :class="getFlexClass()">
- <el-input v-if="type === 'input'" :maxlength="item.maxlength || 50" :disabled="getDisabled()"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" @blur="onBlur"
- :placeholder="getPlaceholder()" v-model="inputValue" @input="onInputChange" @change="onInputChange" />
- <el-input v-else-if="type === 'textarea'" :maxlength="item.maxlength || 50" :disabled="getDisabled()"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" type="textarea" show-word-limit
- resize="none" @blur="onBlur" :rows="item.rows || 3" :placeholder="getPlaceholder()" v-model="inputValue"
- @input="onInputChange" @change="onInputChange" />
- <DecimalInput v-else-if="type === 'inputNumber'" @blur="onCommonHandleSaveRecord"
- :maxlength="item.maxlength || 10" class="flex1" :disabled="getDisabled()"
- :controls="item.controls || false" :min="item.min || 0" :prepend="item.prepend"
- :decimalDigits="getDecimalDigits()" :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')"
- :placeholder="getPlaceholder()" v-model="inputValue" @input="onInputChange" @change="onInputChange" />
- <el-select v-else-if="type === 'select'" class="flex1" :multiple="item.multiple"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" v-model="inputValue"
- :disabled="getDisabled()" :placeholder="getPlaceholder()" @remove-tag="onRemoveTag"
- @visible-change="onSelectBlur" @change="onInputChange" filterable>
- <el-option v-for="op in item.options" :key="op.value" :label="op.label" :value="op.value">
- </el-option>
- </el-select>
- <el-checkbox v-else-if="type === 'checkbox'" class="flex1" :multiple="item.multiple"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" v-model="inputValue"
- :disabled="getDisabled()" :placeholder="getPlaceholder()" @change="onItemCheckboxChange">
- {{ item.checkboxLabel }}
- </el-checkbox>
- <el-radio-group v-else-if="type === 'radio'" v-model="inputValue"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" :disabled="getDisabled()"
- @change="onItemCheckboxChange">
- <el-radio v-for="option in item.options" :key="option.value" :label="option.value"
- :disabled="getDisabled()">
- {{ option.label }}
- </el-radio>
- </el-radio-group>
- <div v-else-if="type === 'checkboxList'" class="flex1 checkbox-list-container"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')">
- <el-checkbox-group v-model="checkboxListValue.checkboxValues" @change="onCheckboxListChange">
- <div v-for="option in item.options" :key="option.value" class="checkbox-item">
- <el-checkbox :label="option.value" :disabled="getDisabled()">
- {{ option.label }}
- </el-checkbox>
- <div v-if="isShowCheckboxListOther(option)">
- <el-input v-model="checkboxListValue.otherValues[option.otherCode]"
- :class="{ 'error-border': isOtherInputError(option.otherCode) }"
- :placeholder="option.otherPlaceholder || '请输入'" @blur="onCheckboxListOtherBlur($event, option.otherCode)"/>
- </div>
- </div>
- </el-checkbox-group>
- </div>
- <div v-else-if="type === 'checkboxTree'" class="flex1 checkbox-list-container"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')">
- <div v-for="group in item.options" :key="group.value" class="checkbox-tree-group">
- <el-checkbox
- :label="group.value"
- :disabled="getDisabled()"
- :checked="isCheckboxTreeChecked(group.value)"
- @change="onCheckboxTreeChange(group.value, $event)">
- {{ group.label }}
- </el-checkbox>
- <div v-if="group.children && group.children.length > 0" class="checkbox-tree-children">
- <div v-for="child in group.children" :key="child.value" class="checkbox-tree-item">
- <el-checkbox
- :label="child.value"
- :disabled="getDisabled()"
- :checked="isCheckboxTreeChecked(child.value)"
- @change="onCheckboxTreeChange(child.value, $event)">
- {{ child.label }}
- </el-checkbox>
- <div v-if="(child.value === '样品信息' || child.value === '其他') && isCheckboxTreeChecked(child.value)" class="checkbox-tree-input-container">
- <el-input
- v-model="checkboxTreeValue.otherValues[child.value]"
- :class="{ 'error-border': isCheckboxTreeOtherInputError(child.value) }"
- placeholder="请输入"
- @blur="onCheckboxTreeOtherBlur(child.value, $event)"/>
- </div>
- </div>
- </div>
- </div>
- </div>
- <el-date-picker v-else-if="type === 'dateTime'" type="datetime" class="flex1"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" v-model="inputValue"
- :disabled="getDisabled()" format="yyyy/MM/dd HH:mm:ss" :placeholder="getPlaceholder()"
- @change="(val) => onDateChange(val, 'yyyy/MM/DD HH:mm:ss')">
- </el-date-picker>
- <el-date-picker v-else-if="type === 'datePicker'" class="flex1"
- :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')" v-model="inputValue"
- :disabled="getDisabled()" format="yyyy/MM/dd" :placeholder="getPlaceholder()"
- @change="(val) => onDateChange(val, 'yyyy/MM/DD')">
- </el-date-picker>
- <el-button v-else-if="type === 'button'" :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')"
- :disabled="getDisabled()" type="primary" @click="handleClickButton(item)">
- {{ $t(item.buttonName) }}
- <input type="hidden" v-model="inputValue">
- </el-button>
-
- <div class="clickable"
- :class="getFillTypeStyle() + (getDisabled() ? ' disabled' : '') + (orangeBg ? ' orange-bg' : '')"
- v-else-if="item.type === 'clickable'" @click="handleClickable(item, $event)">
- <span v-if="inputValue">{{ inputValue }}</span>
- <span v-else class="default-placeholder-text">{{ getPlaceholder() }}</span>
- </div>
- <div class="clickable"
- :class="getFillTypeStyle() + (getDisabled() ? ' disabled' : '') + (orangeBg ? ' orange-bg' : '')"
- v-else-if="regentType.includes(item.type)" @click="onCommonHandleRegent(item, item.type)">
- <span v-if="inputValue">{{ inputValue }}</span>
- <span v-else class="default-placeholder-text">{{ getPlaceholder() }}</span>
- </div>
- <template v-else-if="type === 'attachment'">
- <el-upload ref="uploadRef" class="upload-demo" :action="uploadFileUrl" :on-preview="handlePreview"
- :headers="headers" :before-remove="beforeRemove" :on-remove="handleRemove" multiple :limit="10"
- :on-success="handleSuccess" :on-change="handleChange" :on-exceed="handleExceed"
- :file-list="fileList" :auto-upload="false">
- <el-button :disabled="getDisabled()" :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')"
- size="small" type="primary">点击上传</el-button>
- <span v-if="error" class="atta-tips">请上传附件</span>
- <div slot="tip" class="el-upload__tip">支持扩展名:.rar .zip .doc .docx .pdf .jpg,文件大小不超过2MB</div>
- </el-upload>
- </template>
- <div v-else-if="type === 'checkboxTag'" class="flex1 checkbox-tag-wrapper" :class="getFillTypeStyle() + (orangeBg ? ' orange-bg' : '')">
- <div v-for="(tag, tagIndex) in checkboxTagList" :key="tagIndex" class="checkbox-tag-container">
- <div class="checkbox-tag-item">
- <el-checkbox v-model="tag.checked" :disabled="getDisabled()"
- @change="onCheckboxTagChange(tagIndex, $event)"></el-checkbox>
- <div class="tag-content blue-border">
- <el-input v-if="templateFillType === 'preFill'" v-model="tag.tagValue"
- :ref="'tagInput_' + tagIndex" :maxlength="item.maxlength || 20"
- @blur="onTagBlur(tagIndex)" @keyup.enter.native="onTagBlur(tagIndex)"
- placeholder="请输入" size="mini" class="tag-input" />
- <el-tag v-else :type="'info'" class="tag-display" :closable="false">
- {{ tag.tagValue }}
- </el-tag>
- <el-popconfirm confirm-button-text='确认' cancel-button-text='取消' icon="el-icon-info"
- icon-color="red" title="确认删除当前编号?" @confirm="onDeleteTag(tagIndex)">
- <i slot="reference" v-if="templateFillType === 'preFill'"
- class="el-icon-close delete-icon"></i>
- </el-popconfirm>
- </div>
- </div>
- </div>
- </div>
- <div v-else-if="type === 'fqyq'" :class="getFillTypeStyle()">
- <el-radio-group v-model="fqyqValue.mainRadio" :disabled="getDisabled()" @input="onFqyqRadioChange($event,'mainRadio')">
- <div class="item-center mb-10">
- <el-radio label="是">是</el-radio>
- <div class="item-center" v-if="fqyqValue.mainRadio === '是'">
- <el-input class="fqyq-input" maxlength="100" v-model="fqyqValue.inputValue" :disabled="getDisabled()" placeholder="请输入" @blur="onFqyqInputBlur" ></el-input>
- <div class="fs-14 mr-10">是否在规定时间完成</div>
- <el-radio-group v-model="fqyqValue.subRadio" :disabled="getDisabled()" @input="onFqyqRadioChange($event,'subRadio')">
- <el-radio label="是"></el-radio>
- <el-radio label="否"></el-radio>
- </el-radio-group>
- </div>
- </div>
- <el-radio label="否">否</el-radio>
- </el-radio-group>
- </div>
-
- </div>
- <div class="handle-row" v-if="isShowHandle()">
- <el-checkbox v-model="checkboxValue" v-if="getIsShowCheckboxIcon()" :disabled="getCheckboxDisabled()"
- class="mr-5" @change="onCheckboxChange"></el-checkbox>
- <div class="handle-icon" v-if="getIsShowQuestionIcon()" @click="onClickQuestion"
- @mouseenter="(e) => onMouseEnter('replyRecord', e)" @mouseleave="onMouseLeave">
- <Question :class="getQuestionColor()" />
- </div>
- <img v-if="getIsShowCopyIcon()" @click="onCopy" src="@/assets/images/copy-icon.svg" class="handle-icon"
- alt="" />
- <img v-if="getIsShowRecordIcon()" @mouseenter="(e) => onMouseEnter('fieldChanged', e)"
- @mouseleave="onMouseLeave" src="@/assets/images/record-icon.svg" class="handle-icon" alt="" />
- </div>
-
- <!-- 修改记录模态框 -->
- <div v-if="showModal && modificationRecords.length > 0" ref="modalRef"
- :class="['modification-modal', { 'show': showModal }]" @mouseenter="onModalEnter"
- @mouseleave="onModalLeave">
- <div class="modal-content">
- <div class="records-list">
- <div v-for="(record, index) in modificationRecords" :key="index" class="record-item">
- <!-- 字段修改记录 -->
- <div class="record-row" v-if="currentRecordType === 'fieldChanged'">
- <div>
- <span>{{ index + 1 }}.</span>
- <span> {{ getUserName(record) }} </span>
- <span>{{ record.time }} </span>
- <span>{{ modificationRecords.length - 1 == index ? "提交" : "修改" }}</span>
- </div>
- <div v-if="modificationRecords.length - 1 !== index">
- <div>原值:{{ record.oldValue }}</div>
- <div>修改值:{{ record.value }}</div>
- <div v-if="record.reason">备注:{{ record.reason }}</div>
- </div>
- </div>
- <!-- 回复记录 -->
- <div class="record-row" v-if="currentRecordType === 'replyRecord'">
- <div>
- <span> {{ getUserName(record) }} </span>
- <span>{{ record.time }} </span>
- </div>
- <div>
- <div v-if="record.content">复核意见:{{ record.content }}</div>
- <div v-if="record.reply">回复意见:{{ record.reply }}</div>
- </div>
- </div>
- <hr v-if="index < modificationRecords.length - 1">
- </div>
- </div>
- </div>
- </div>
- <el-dialog :close-on-click-modal="false" append-to-body :title="templateFillType == 'actFill' ? '回复意见' : '复核意见'"
- :visible.sync="visible" width="30%">
- <el-input v-model="replyContent" type="textarea" show-word-limit resize="none" rows="8" placeholder="输入内容"
- maxlength="500" />
- <span slot="footer" class="dialog-footer">
- <el-button @click="visible = false">取 消</el-button>
- <el-button type="primary" @click="onReplyConfirm">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
-
- <script>
- import Question from "./icons/Question.vue";
- import DecimalInput from "./DecimalInput.vue";
- import { EventBus } from "@/utils/eventBus";
- import moment from "moment";
- import { deepClone } from "@/utils/index";
- import { getuuid } from "@/utils/index.js";
- import { getToken } from "@/utils/auth"
- import { isValueEmpty } from '@/utils/index.js';
-
- export default {
- inject: ['templateData', 'templateFillType', "getZdxgjl", "getFhyjjl", "updateZdxgjl", "replaceFhyjjl", "updateFhyjjl", "getFieldCheckObj", "updateFieldCheckObj"],
- components: {
- Question,
- DecimalInput,
- },
- props: {
- type: {//form类型 input/select等
- type: String,
- default: "input"
- },
- item: {
- type: Object,
- default: () => {
- return {
- placeholder: "",
- maxlength: 30,
- label: "",
- disabled: false,
- }
- }
- },
- // v-model 值
- value: {
- type: [String, Number, Array, Boolean, Object],
- default: ''
- },
- // 错误状态
- error: {
- type: Boolean,
- default: false
- },
- // 橙色背景状态
- orangeBg: {
- type: Boolean,
- default: false
- },
- fieldKey: {
- type: String,
- default: ""
- },
- fieldItemLabel: {
- type: String,
- default: "",
- },
- //是否记录修改
- isFieldsRecord: {
- type: Boolean,
- default: true,
- },
- sourceFrom: {
- type: String,
- default: ""
- },
- },
- data() {
- let initialValue = this.value;
- let initialOtherValues = {}, checkboxTagList = [];
-
- if(this.type === 'checkboxList' && !this.value) {
- initialValue = {
- checkboxValues: [],
- otherValues: {}
- };
-
- } else if (this.type === 'checkboxTag' && Array.isArray(this.value)) {
- // checkboxTag类型,value是数组格式
- checkboxTagList = this.value.map(tag => ({
- checked: tag.checked,
- tagValue: tag.tagValue || ''
- }));
- } else if (this.type === 'fqyq' && !this.value) {
- initialValue = {mainRadio: '', subRadio: '',inputValue:""};
- }
- return {
- inputValue: initialValue,
- oldValue: initialValue, // 记录上一次的值
- showModal: false, // 控制模态框显示
- modificationRecords: [], // 存储修改记录
- modalTimer: null, // 用于延迟隐藏模态框
- isHoveringModal: false, // 是否悬停在模态框上
- isHoveringMain: false, // 是否悬停在主元素上(这个实际上不需要,因为我们有事件处理)
- currentRecordType: '', // 当前悬停的记录类型(replyRecord 或 modifyRecord)
- replyContent: '', // 回复内容
- visible: false,//是否显示弹窗
- checkboxValue: this.getChecked(),//是否选中
- checkboxTagList: checkboxTagList, // checkboxTag类型的列表数据
- oldCheckboxTagList: JSON.parse(JSON.stringify(checkboxTagList)), // 记录上一次的checkboxTagList
- fqyqValue: initialValue, // fqyq类型的值
- oldFqyqValue: {...initialValue}, // 记录上一次的fqyq值
- checkboxListValue: initialValue, // checkboxList类型的值
- oldCheckboxListValue: JSON.parse(JSON.stringify(initialValue)), // 记录上一次的checkboxList值
- checkboxTreeValue: this.type === 'checkboxTree' ? (this.value || { checkedValues: [], otherValues: {} }) : {}, // checkboxTree类型的值
- oldCheckboxTreeValue: this.type === 'checkboxTree' ? JSON.parse(JSON.stringify(this.value || { checkedValues: [], otherValues: {} })) : {}, // 记录上一次的checkboxTree值
- checkboxTreeFirstCheck: this.type === 'checkboxTree' ? {} : {}, // 记录第一次勾选的状态
- uuid: getuuid(), // 唯一标识符,用于EventBus事件匹配
- regentType: ['sj', 'gsp', 'mix', 'xj', 'xb', 'gyzj', 'mjy', 'yq', 'jcb', 'qxbd'], //试剂/仪器/供试品等类型
- selectRegentInfo: {},//选择的试剂/仪器/供试品等信息
- fileList: [],//上传的文件列表
- uploadFileUrl: process.env.VUE_APP_BASE_API + "/file/upload",
- headers: {
- Authorization: "Bearer " + getToken(),
- },
- pendingUploadFile: null, // 用于存储待上传的文件
- pendingRemoveFile: null, // 用于存储待删除的文件
- currentTagIndex:-1,//当前选中的checkboxTag索引
- currentHandleType:'',//当前操作的类型
- currentOtherCode:'',//当前操作的otherCode
- currentCheckboxTreeValue: '',//当前操作的checkboxTree值
- }
- },
- watch: {
- value(newVal) {
- if (this.type === 'checkboxList' && newVal && typeof newVal === 'object') {
- this.checkboxListValue = JSON.parse(JSON.stringify(newVal));
- } else if (this.type === 'checkboxTag' && Array.isArray(newVal)) {
- // checkboxTag类型,value是数组格式
- this.checkboxTagList = newVal.map(tag => ({
- checked: tag.checked,
- tagValue: tag.tagValue || ''
- }));
- } else if (this.type === 'fqyq' && newVal && typeof newVal === 'object') {
- // fqyq类型
- this.fqyqValue = {
- mainRadio: newVal.mainRadio || '',
- inputValue: newVal.inputValue || '',
- subRadio: newVal.subRadio || ''
- };
- } else if (this.type === 'checkboxTree' && newVal && typeof newVal === 'object') {
- // checkboxTree类型
- this.checkboxTreeValue = JSON.parse(JSON.stringify(newVal));
- this.oldCheckboxTreeValue = JSON.parse(JSON.stringify(newVal));
- } else {
- this.inputValue = newVal;
- }
- }
- },
- filters: {
-
-
- },
- mounted() {
- if (this.item.type === 'attachment') {
- try {
- this.fileList = JSON.parse(this.value);
- } catch (e) {
- this.fileList = [];
- }
- }
- EventBus.$on('onExternalFieldUpdate', this.handleExternalFieldUpdate);
- EventBus.$on('onEditSignCancel', this.handleEditSignCancel);
- EventBus.$on('onEditSignCallback', this.handleEditSignCallback);
- //试剂
- EventBus.$on("onReagentSubmit", this.onReagentSubmit)
- //仪器
- EventBus.$on("onInstrumentSubmit", this.onMixReagentSubmit)
- //供试品/试剂/给药制剂等
- EventBus.$on("onMixReagentSubmit", this.onMixReagentSubmit)
- },
- unmounted() {
- EventBus.$off('onExternalFieldUpdate', this.handleExternalFieldUpdate);
- EventBus.$off('onEditSignCancel', this.handleEditSignCancel);
- EventBus.$off('onEditSignCallback', this.handleEditSignCallback);
- EventBus.$off("onReagentSubmit", this.onReagentSubmit)
- EventBus.$off("onInstrumentSubmit", this.onMixReagentSubmit)
- EventBus.$off("onMixReagentSubmit", this.onMixReagentSubmit)
- },
- methods: {
- getFlexClass() {
- const noFlexArr = ["radio", "checkboxTag","fqyq"]
- return noFlexArr.includes(this.type) ? '' : 'flex1'
- },
- getDecimalDigits() {
- const { precision } = this.item;
- if (!isNaN(precision)) {
- return precision
- }
- return 6
- },
- onInstrumentSubmit(data) {
- if (data.uuid !== this.uuid) return;
- this.selectRegentInfo = data;
- },
-
- // 文件状态改变时的钩子,添加文件、上传成功、上传失败时都会被调用
- handleChange(file, fileList) {
- // 如果是新添加的文件(status为ready),进行验证
- if (file.status === 'ready') {
- const isAllowedType = ['image/jpeg', 'image/png', 'image/gif', 'application/pdf',
- 'application/x-rar-compressed', 'application/zip',
- 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'].includes(file.raw.type)
- const isLt2M = file.size / 1024 / 1024 < 2
-
- if (!isAllowedType) {
- this.$message.error(`文件 ${file.name} 格式不支持!只能上传 JPG/PNG/GIF/PDF/RAR/ZIP/DOC/DOCX 格式的文件`)
- // 从fileList中移除该文件
- const index = fileList.indexOf(file);
- if (index > -1) {
- fileList.splice(index, 1);
- }
- this.fileList = [...fileList];
- return
- }
- if (!isLt2M) {
- this.$message.error(`文件 ${file.name} 大小超过2MB!`)
- // 从fileList中移除该文件
- const index = fileList.indexOf(file);
- if (index > -1) {
- fileList.splice(index, 1);
- }
- this.fileList = [...fileList];
- return
- }
-
- // 如果已经有文件在列表中(不包括当前新添加的),需要验证电子签名
- const existingFiles = fileList.filter(f => f !== file && f.status === 'success');
- if (existingFiles.length > 0) {
- // 保存待上传的文件信息
- this.pendingUploadFile = file;
-
- // 从fileList中暂时移除新文件,等待签名验证
- const index = fileList.indexOf(file);
- if (index > -1) {
- fileList.splice(index, 1);
- }
- this.fileList = [...fileList];
-
- // 触发电子签名弹窗
- EventBus.$emit('showEditSignDialog', { uuid: this.uuid });
- return;
- }
-
- // 没有现有文件或验证通过,手动提交上传
- this.$nextTick(() => {
- // 找到对应的upload组件并提交
- const uploadComponent = this.$refs.uploadRef;
- if (uploadComponent) {
- uploadComponent.submit();
- }
- });
- }
-
- // 更新fileList
- this.fileList = fileList;
- },
- handleSuccess(res, file, fileList) {
- if (res.code == 200) {
- this.fileList = fileList;
- // 更新inputValue为文件路径列表,方便后续保存
- this.inputValue = JSON.stringify(this.getFileList(fileList));
- this.$emit("change", this.inputValue)
- this.onCommonHandleSaveRecord();
- this.$message.success('文件上传成功');
- } else {
- this.$message.error(res.message || '文件上传失败');
- // 上传失败,从列表中移除
- const index = fileList.indexOf(file);
- if (index > -1) {
- fileList.splice(index, 1);
- this.fileList = [...fileList];
- }
- }
- },
- getFileList(fileList) {
- const list = [];
- fileList.forEach(item => {
- const o = { name: item.name };
- if (item.url) {//回填的数据
- o.url = item.url
- } else {//新上传的
- o.url = item.response.data.url
- }
- list.push(o)
- })
- return list;
- },
- // 删除前验证电子签名
- beforeRemove(file) {
- // 所有删除操作都需要验证电子签名
- // 保存待删除的文件信息
- this.pendingRemoveFile = { file, fileList: this.fileList };
-
- // 触发电子签名弹窗
- EventBus.$emit('showEditSignDialog', { uuid: this.uuid });
-
- // 返回false阻止默认删除行为,等待签名验证通过后再删除
- return false;
- },
- handleRemove(file, fileList) {
- // on-remove事件在before-remove返回false时不会触发
- // 这个方法在签名验证通过后通过executeRemove调用
- // 这里不需要额外处理,因为executeRemove已经处理了删除逻辑
- },
- // 执行实际的文件删除操作
- executeRemove(file, fileList) {
- // 从el-upload的内部uploadFiles中移除文件
- const uploadComponent = this.$refs.uploadRef;
- if (uploadComponent && uploadComponent.uploadFiles) {
- const uploadFileIndex = uploadComponent.uploadFiles.indexOf(file);
- if (uploadFileIndex > -1) {
- uploadComponent.uploadFiles.splice(uploadFileIndex, 1);
- }
- }
-
- // 从fileList中移除文件
- const index = fileList.indexOf(file);
- if (index > -1) {
- fileList.splice(index, 1);
- }
-
- // 更新fileList
- this.fileList = [...fileList];
-
- // 更新inputValue为剩余文件路径列表
- this.inputValue = JSON.stringify(this.getFileList(fileList));
- this.$emit("change", this.inputValue);
-
- // 触发保存记录
- this.onCommonHandleSaveRecord();
-
- this.$message.success(`文件 ${file.name} 已移除`);
- },
- handlePreview(file) {
- console.log(file)
- const url = file.url || file.response?.data?.url;
- if (url) {
- window.open(process.env.VUE_APP_FILE_DOMAIN + url, '_blank');
- }
- },
- handleExceed(files, fileList) {
- this.$message.warning(`当前限制选择 10 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
- },
- //试剂弹窗提交
- onMixReagentSubmit(data) {
- if (data.uuid !== this.uuid) return;
-
- // 创建一个验证控制器,用于收集各级验证结果
- const validationController = {
- isPrevented: false,
- errorMsg: '',
- prevent(msg) {
- this.isPrevented = true;
- if (msg) this.errorMsg = msg;
- }
- };
-
- // 触发自定义验证事件,让父组件判断是否满足需求
- // 父组件可以通过validationController.prevent(msg)来阻止提交
- this.$emit('beforeReagentSubmit', data, validationController);
-
- // 检查是否被阻止
- if (validationController.isPrevented) {
- // 验证不通过,显示错误信息
- if (validationController.errorMsg) {
- this.$message.error(validationController.errorMsg);
- }
- return;
- }
-
- // 验证通过,继续执行
- this.executeReagentSubmit(data);
- },
-
- // 执行试剂提交的共同逻辑
- executeReagentSubmit(data) {
- this.inputValue = data.selectedId;
- const { filledCodes = [] } = this.item;
- console.log(filledCodes, "filledCodes")
- const { selectInfo, row } = data;
- if (filledCodes.length > 0) {
- this.inputValue = row[filledCodes[0]] + "(" + row[filledCodes[1]] + ")";
- }
- this.selectRegentInfo = data;
- EventBus.$emit("hideSelectMixReagentDialog");
- this.onCommonHandleSaveRecord(this.inputValue);
- },
- //统一处理试剂/供试品等弹窗
- onCommonHandleRegent(item, type) {
- if (this.templateFillType !== 'actFill') {
- return
- }
- let params = {
- studyFormId: this.templateData.id,
- uuid: this.uuid,
- sourceFrom: this.sourceFrom,
- }
- let eventName = "showSelectMixReagentDialog";
- if (type === "yq") {
- eventName = "showSelectInstrumentDialog";
- } else {
- const sjType = {
- sj: "1",//试剂
- gsp: "7",//供试品
- mix: "1",//试剂/供试品/试剂
- gyzj: "3",//给药制剂
- mjy: "5",//麻精药
- xj: "9",//细菌
- xb: "11",//细胞
- jcb: "13",//检测板
- qxbd: "15",//前序表单
- }
- params = {
- ...params,
- type: sjType[type]
- };
- if (type === "mix") {
- params.mixType = true;
- }else if(item.qxbdType){
- params.qxbdType = item.qxbdType;
- }
- }
- EventBus.$emit(eventName, params)
- // this.$emit('regent', item,type);
- },
- // 点击按钮
- handleClickButton(item) {
- this.inputValue = `button-${new Date().getTime()}`;
- this.onCommonHandleSaveRecord(this.inputValue);
- },
- onDateChange(val, format) {
- this.inputValue = moment(val).format(format);
- this.onCommonHandleSaveRecord(this.inputValue);
- },
- getUserName(record) {
- const locale = this.$i18n.locale;
- if (locale === 'zh_CN') {
- return record.userNameCn;
- }
- return record.userNameEn;
- },
- // 处理电子签名取消事件
- handleEditSignCancel(data) {
- if (data.uuid === this.uuid) {
- // 如果有待上传的文件,清空它
- if (this.pendingUploadFile) {
- this.pendingUploadFile = null;
- this.$message.info('已取消文件上传');
- } else if (this.pendingRemoveFile) {
- // 如果有待删除的文件,清空它
- this.pendingRemoveFile = null;
- this.$message.info('已取消文件删除');
- } else {
- this.resetRecord();
- }
- }
- },
- // 处理电子签名确认回调事件
- handleEditSignCallback(data) {
- if (data.uuid === this.uuid) {
- this.onEditSignSave(data.data);
- }
- },
- onEditSignSave(data) {
- // 检查是否有待上传的文件
- if (this.pendingUploadFile) {
- // 签名验证通过,将文件添加到列表并上传
- const file = this.pendingUploadFile;
-
- // 将文件添加到 fileList
- this.fileList.push(file);
-
- // 清空待上传文件标记
- this.pendingUploadFile = null;
-
- // 手动触发上传
- this.$nextTick(() => {
- const uploadComponent = this.$refs.uploadRef;
- if (uploadComponent) {
- uploadComponent.submit();
- }
- });
- } else if (this.pendingRemoveFile) {
- // 签名验证通过,执行文件删除
- const { file, fileList } = this.pendingRemoveFile;
-
- // 清空待删除文件标记
- this.pendingRemoveFile = null;
-
- // 执行删除操作
- this.executeRemove(file, fileList);
- } else {
- // 没有待上传/删除文件,执行正常的记录更新
- this.handleUpdateRecord(data);
- }
- },
- getChecked() {
- return !!this.getFieldCheckObj()[this.fieldKey]?.checked;
- },
- getFillTypeStyle(type) {
- const { fillType } = this.item;
- const filterType = ["attachment","checkboxTag","fqyq","checkboxTree"]
- const typeObj = {
- actFill: "orange-border",//实际填写的边框颜色
- green: "green-border",
- preFill: "blue-border",//预填写的边框颜色
- }
- // 如果有错误状态,返回红色边框样式,覆盖原有的边框颜色
- if (this.error && !filterType.includes(this.type)) {
- return "error-border";
- }
- return typeObj[fillType] || ""
- },
- //确认回复
- onReplyConfirm() {
- if (!this.replyContent) {
- this.$message({
- message: '请输入内容',
- type: 'error'
- });
- return;
- }
- const baseInfo = this.getCommonRecordInfo();
- const record = {
- ...baseInfo,
- title: this.templateFillType == 'actFill' ? "回复意见" : "复核意见",
- time: moment().format("YYYY-MM-DD HH:mm:ss"),
- }
- if (this.templateFillType == 'actFill') {
- record.reply = this.replyContent;
- const deepList = deepClone(this.getFhyjjl());//实际填报应该是修改指定的字段
- const item = deepList.find(o => o.key == record.key);
- if (item) {
- item.reply = this.replyContent;
- }
- this.replaceFhyjjl(deepList);//实际填报应该是修改指定的字段
- } else {
- const records = this.getReplyRecords();
- record.content = this.replyContent;
- if (records.length > 0) {
- const o = records[0];
- if (o.reply && o.content) {//如果填报人员已回复,那么就产生一条新的记录。
- this.updateFhyjjl(record);//qc直接插入数据源
- } else {//如果填报人员未填报,只更新当条记录的复核内容
- const deepList = deepClone(this.getFhyjjl());
- const item = deepList.find(it => it.key == record.key);
- if (item) {
- item.content = this.replyContent;
- }
- this.replaceFhyjjl(deepList);
- }
- } else {
- this.updateFhyjjl(record);//qc直接插入数据源
- }
-
- }
- const params = {
- //reply:回复,content:复核
- type: this.templateFillType == 'actFill' ? "reply" : "content",
- newRecord: [record],
- resourceList: this.getFhyjjl(),
- }
- // 触发回复记录事件
- EventBus.$emit('onModifyRecord', params);
- // 清空回复内容
- this.replyContent = '';
- // 隐藏弹窗
- this.visible = false;
-
- },
- //获取question图标颜色
- getQuestionColor() {
- const records = this.getReplyRecords();
- if (records.length > 0) {
- const o = records[0];
- if (o.reply && o.content) {//有回复意见和复核意见
- return "green"
- } else if (o.content && !o.reply) {//只有复核意见
- return "orange"
- } else {
- return "gray"
- }
- } else {//没有回复记录
- return "gray"
- }
-
- },
- // 复选框变化处理
- onCheckboxChange(val) {
- //有提出意见就不能勾选
- if (this.templateFillType == 'qc' && this.getQuestionColor() === "orange") {
- this.checkboxValue = false;
- this.$message({
- message: '该表单还有质疑项未处理,无法勾选',
- type: 'error'
- });
- return;
- }
- this.checkboxValue = val;
- // 触发修改记录事件
- EventBus.$emit('onModifyRecord', {
- type: "checkbox",
- fieldCheckObj: JSON.stringify({ ...this.getFieldCheckObj(), [this.fieldKey]: { checked: val } }),//复选框状态对象
- });
- this.updateFieldCheckObj({ [this.fieldKey]: { checked: val } });
- // this.$emit('input', val);
- // this.$emit('change', val);
- },
- onRemoveTag(e) {
- this.onCommonHandleSaveRecord(this.inputValue);
- },
- onItemCheckboxChange() {
- this.onCommonHandleSaveRecord(this.inputValue);
- },
- // 下拉框失去焦点处理
- onSelectBlur(visible) {
- if (!visible) {
- this.onCommonHandleSaveRecord(this.inputValue);
- }
- },
- // 统一处理输入变化
- onInputChange(val) {
- let value = val !== undefined ? val : this.inputValue;
- this.$emit('input', value);
- this.$emit('change', value);
-
- // 根据输入值判断是否显示错误状态
- const isEmpty = isValueEmpty(value);
- if (this.error && !isEmpty) {
- this.$emit('update:error', false);
- } else if (!this.error && isEmpty) {
- this.$emit('update:error', true);
- }
- },
- // checkboxTag的checkbox变化处理
- onCheckboxTagChange(tagIndex, e) {
- this.currentTagIndex = tagIndex;
- this.checkboxTagList[tagIndex].checked = e;
- this.emitCheckboxTagValue();
- this.onCommonHandleSaveRecord();
- },
- // 检查是否显示显示checkboxList的其他输入框
- isShowCheckboxListOther(option) {
- const {checkboxValues } = this.checkboxListValue
- if (!checkboxValues) {
- return false;
- }
- return option.otherCode && checkboxValues.includes(option.value);
- },
- // checkboxList的checkbox变化处理
- onCheckboxListChange(val) {
- this.currentHandleType = 'checkboxListValue';
- this.checkboxListValue.checkboxValues = val;
- this.onCommonHandleSaveRecord();
- },
-
- // tag输入框失去焦点
- onTagBlur(tagIndex) {
- this.currentTagIndex = tagIndex;
- const value = this.checkboxTagList[tagIndex].tagValue;
- this.emitCheckboxTagValue();
- this.onCommonHandleSaveRecord(value);
- },
- // 删除tag
- onDeleteTag(tagIndex) {
- this.currentTagIndex = tagIndex;
- // 从列表中删除指定索引的tag
- this.emitCheckboxTagValue();
- this.$emit("deleteTag", tagIndex);
- },
- // 发送checkboxTag的值
- emitCheckboxTagValue() {
- // 发送整个数组
- this.$emit('input', [...this.checkboxTagList]);
- this.$emit('change', [...this.checkboxTagList]);
- },
-
- // fqyq 主radio变化处理
- onFqyqRadioChange(val, radioType) {
- this.fqyqValue[radioType] = val;
- this.currentHandleType = radioType;
- this.onCommonHandleSaveRecord();
- },
-
- // fqyq 输入框失去焦点
- onFqyqInputBlur(e) {
- this.fqyqValue.inputValue = e.target.value;
- this.currentHandleType = 'inputValue';
- this.onCommonHandleSaveRecord(this.fqyqValue.inputValue);
- },
-
- // 统一处理失去焦点事件
- onBlur(e) {
- this.onCommonHandleSaveRecord(e.target.value);
- },
- // checkboxList的其他输入框失去焦点处理
- onCheckboxListOtherBlur(e, otherCode) {
- this.currentHandleType = "checkboxListOther";
- this.currentOtherCode = otherCode;
- this.checkboxListValue.otherValues[otherCode] = e.target.value;
- this.onCommonHandleSaveRecord(e.target.value);
- },
-
- // 检查checkboxTree的某个值是否被选中
- isCheckboxTreeChecked(value) {
- return this.checkboxTreeValue.checkedValues && this.checkboxTreeValue.checkedValues.includes(value);
- },
-
- // 检查checkboxTree的其他输入框是否有错误
- isCheckboxTreeOtherInputError(value) {
- if (!this.error) {
- return false;
- }
- return isValueEmpty(this.checkboxTreeValue.otherValues[value]);
- },
-
- // checkboxTree的复选框变化处理
- onCheckboxTreeChange(value, checked) {
- this.currentHandleType = 'checkboxTree';
- this.currentCheckboxTreeValue = value;
-
- // 初始化checkedValues数组
- if (!this.checkboxTreeValue.checkedValues) {
- this.checkboxTreeValue.checkedValues = [];
- }
-
- // 初始化otherValues对象
- if (!this.checkboxTreeValue.otherValues) {
- this.checkboxTreeValue.otherValues = {};
- }
-
- // 处理选中状态
- if (checked) {
- if (!this.checkboxTreeValue.checkedValues.includes(value)) {
- this.checkboxTreeValue.checkedValues.push(value);
- }
- } else {
- const index = this.checkboxTreeValue.checkedValues.indexOf(value);
- if (index > -1) {
- this.checkboxTreeValue.checkedValues.splice(index, 1);
- // 清除对应的otherValues
- delete this.checkboxTreeValue.otherValues[value];
- }
- }
-
- // 检查是否是第一次勾选
- const isFirstCheck = !this.checkboxTreeFirstCheck[value];
- if (isFirstCheck) {
- this.checkboxTreeFirstCheck[value] = true;
- // 第一次勾选不需要验签
- this.emitCheckboxTreeValue();
- this.updateCheckboxTreeOldValue();
- } else {
- // 非第一次勾选需要验签
- this.onCommonHandleSaveRecord();
- }
- },
-
- // checkboxTree的其他输入框失去焦点处理
- onCheckboxTreeOtherBlur(value, e) {
- this.currentHandleType = "checkboxTreeOther";
- this.currentCheckboxTreeValue = value;
- this.checkboxTreeValue.otherValues[value] = e.target.value;
- this.onCommonHandleSaveRecord(e.target.value);
- },
-
- // 发送checkboxTree的值
- emitCheckboxTreeValue() {
- this.$emit('input', JSON.parse(JSON.stringify(this.checkboxTreeValue)));
- this.$emit('change', JSON.parse(JSON.stringify(this.checkboxTreeValue)));
- },
-
- // 更新checkboxTree的旧值
- updateCheckboxTreeOldValue() {
- this.oldCheckboxTreeValue = JSON.parse(JSON.stringify(this.checkboxTreeValue));
- },
- // 点击question图标
- onClickQuestion() {
- const { templateFillType } = this;
- if (templateFillType == 'actFill' || templateFillType == 'qc') {
- if (templateFillType == 'qc') {
- const field = this.getFieldCheckObj()[this.fieldKey];
- if (field && field.checked) {
- this.$message({
- message: '该字段已勾选复核框,请先取消勾选后再进行提交疑问',
- type: 'error'
- });
- return;
- }
- }
- const records = this.getReplyRecords();
- let content = "";
- if (records.length > 0) {
- const o = records[0];
- if (!o.reply && templateFillType == 'qc') {//如果填报人员没有回复,qc点击的时候需要回填上次填报的信息
- content = o.content;
- } else if (templateFillType == 'actFill') {//如果qc没有复核,填报点击的时候需要回填上次填报的信息
- content = o.reply;
- }
- }
- this.replyContent = content;
- this.visible = true;
- }
- },
- getCheckboxListInfo(){
- const { otherValues,checkboxValues } = this.checkboxListValue;
- const { otherValues: oldOtherValues,checkboxValues: oldCheckboxValues } = this.oldCheckboxListValue;
- const o = {
- "checkboxListValue":{oldValue:oldCheckboxValues,newValue:checkboxValues,des:""},
- "checkboxListOther":{oldValue:oldOtherValues[this.currentOtherCode],newValue:otherValues[this.currentOtherCode],des:"样品信息:"},
- }
- return o[this.currentHandleType];
- },
- getFqyqInfo(){
- const { mainRadio,inputValue,subRadio } = this.fqyqValue;
- const { mainRadio: oldMainRadio,inputValue: oldInputValue,subRadio: oldSubRadio } = this.oldFqyqValue;
- const o ={
- "mainRadio":{oldValue:oldMainRadio,newValue:mainRadio,des:""},
- "inputValue":{oldValue:oldInputValue,newValue:inputValue,des:""},
- "subRadio":{oldValue:oldSubRadio,newValue:subRadio,des:"是否在规定时间完成:"}
- }
- return o[this.currentHandleType];
- },
- async onCommonHandleSaveRecord(val) {
- const isEmpty = isValueEmpty(this.inputValue);
- if (this.error && !isEmpty) {
- this.$emit('update:error', false);
- } else if (!this.error && isEmpty) {
- this.$emit('update:error', true);
- }
-
- // 创建验证控制器,让父组件可以在保存前进行验证
- const validationController = {
- isPrevented: false,
- errorMsg: '',
- prevent(msg) {
- this.isPrevented = true;
- if (msg) this.errorMsg = msg;
- }
- };
-
- // 触发beforeSaveRecord事件,让父组件进行验证
- this.$emit('beforeSaveRecord', {
- value: this.inputValue,
- oldValue: this.oldValue,
- fieldKey: this.fieldKey
- }, validationController);
-
- // 检查是否被阻止
- if (validationController.isPrevented) {
- // 验证不通过,显示错误信息
- if (validationController.errorMsg) {
- this.$message.error(validationController.errorMsg);
- }
- // 回退到旧值
- this.inputValue = this.oldValue;
- this.$emit('input', this.inputValue);
- return;
- }
-
- if (!this.isFieldsRecord) {//是否需要记录修改记录
- this.$emit("blur", this.inputValue);
- this.$emit('input', this.inputValue);
- this.$emit("change", this.inputValue);
- return;
- }
-
- // 值发生了变化,需要弹出密码输入框
- let isSame = true, isOldValueEmpty = true;
- const { currentHandleType } = this;
- // 如果是checkboxList类型,需要同时比较otherValues
- if (this.type === 'checkboxList') {
- const current = this.getCheckboxListInfo();
- isSame = this.isEqual(current.oldValue,current.newValue);
- isOldValueEmpty = isValueEmpty(current.oldValue);
- } else if (this.type === "checkboxTag") {
- // checkboxTag类型,只比较当前tagIndex的数据
- const currentTag = this.checkboxTagList[this.currentTagIndex];
- const oldTag = this.oldCheckboxTagList[this.currentTagIndex] || {};
- isSame = this.isEqual(oldTag.checked, currentTag.checked);
- isOldValueEmpty = isValueEmpty(oldTag.checked);
- } else if (this.type === "fqyq") {
- const current = this.getFqyqInfo();
- isSame = this.isEqual(current.oldValue,current.newValue);
- isOldValueEmpty = isValueEmpty(current.oldValue);
- } else if (this.type === "checkboxTree") {
- // checkboxTree类型,比较checkedValues
- isSame = this.isEqual(this.oldCheckboxTreeValue.checkedValues, this.checkboxTreeValue.checkedValues);
- isOldValueEmpty = isValueEmpty(this.oldCheckboxTreeValue.checkedValues);
- } else {
- isSame = this.isEqual(this.oldValue, this.inputValue)
- isOldValueEmpty = isValueEmpty(this.oldValue);
- }
- console.log(isSame,isOldValueEmpty,this.fqyqValue,this.oldFqyqValue,"isSame")
- if (isSame) {
- return;
- }
- if (!isOldValueEmpty && !(isSame) && this.templateFillType === "actFill") {
- // 通过EventBus触发电子签名弹窗
- EventBus.$emit('showEditSignDialog', { uuid: this.uuid });
- } else {//如果是第一次填写,不需要密码验证
- this.handleUpdateRecord()
- }
- },
-
- //如果用户取消,那么回退到上一次的值
- resetRecord() {
- // 用户点击取消,还原数据
- let oldValue = this.oldValue;
- if (this.type === 'checkboxList') {
- oldValue = {
- checkboxValues: this.oldCheckboxListValue.checkboxValues,
- otherValues: this.oldCheckboxListValue.otherValues
- };
- } else if (this.type === "checkboxTag") {
- // checkboxTag类型,只回退当前tagIndex的数据
- if (this.currentTagIndex >= 0 && this.currentTagIndex < this.oldCheckboxTagList.length) {
- const oldTag = this.oldCheckboxTagList[this.currentTagIndex];
- this.checkboxTagList[this.currentTagIndex] = { ...oldTag };
- oldValue = [...this.checkboxTagList];
- } else {
- // 如果没有指定tagIndex,回退整个数组
- this.checkboxTagList = JSON.parse(JSON.stringify(this.oldCheckboxTagList));
- oldValue = [...this.checkboxTagList];
- }
- } else if (this.type === "fqyq") {
- // 如果没有指定字段,回退整个对象
- this.fqyqValue = JSON.parse(JSON.stringify(this.oldFqyqValue));
- oldValue = { ...this.fqyqValue };
- } else if (this.type === "checkboxTree") {
- // checkboxTree类型,回退整个对象
- this.checkboxTreeValue = JSON.parse(JSON.stringify(this.oldCheckboxTreeValue));
- oldValue = JSON.parse(JSON.stringify(this.oldCheckboxTreeValue));
- }
- this.inputValue = this.oldValue;
- this.$emit('input', oldValue); // 触发 v-model 更新
- // this.$emit("blur", this.oldValue);
- this.$emit("change", oldValue, "cancel");
- if (this.item.type === "clickable") {
- this.$emit("resetRecord");
- }
- },
-
- //处理更新记录
- handleUpdateRecord(data, recordData) {
- const baseInfo = this.getCommonRecordInfo();
- if (!this.oldValue && !this.inputValue) {
- return
- }
- if (recordData) {
- this.oldValue = recordData.oldValue;
- this.inputValue = recordData.inputValue;
- }
- let recordOldVlaue = this.oldValue, recordValue = this.inputValue, isModify = !!this.oldValue;
- if (this.type === "checkboxTag") {
- // checkboxTag类型,只记录当前tagIndex的数据变化
- const oldTag = this.oldCheckboxTagList[this.currentTagIndex] || {};
- const currentTag = this.checkboxTagList[this.currentTagIndex] || {};
- recordOldVlaue = `${oldTag.tagValue || ''}:${oldTag.checked ? '勾选' : '未勾选'}`;
- recordValue = `${currentTag.tagValue || ''}:${currentTag.checked ? '勾选' : '未勾选'}`;
- isModify = oldTag.checked !== undefined;
- } else if (this.type === "fqyq") {
- const current = this.getFqyqInfo();
- recordOldVlaue = `${current.des+current.oldValue}`;
- recordValue = `${current.des+current.newValue}`;
- isModify = !!this.oldFqyqValue.mainRadio
- }else if(this.type === "checkboxList"){
- const current = this.getCheckboxListInfo();
- recordOldVlaue = `${current.des+(current.oldValue || '')}`;
- recordValue = `${current.des+(current.newValue || '')}`;
- isModify = !!current.oldValue;
- } else if (this.type === "checkboxTree") {
- // checkboxTree类型,记录当前操作的值变化
- const value = this.currentCheckboxTreeValue;
- const oldChecked = this.oldCheckboxTreeValue.checkedValues && this.oldCheckboxTreeValue.checkedValues.includes(value);
- const currentChecked = this.checkboxTreeValue.checkedValues && this.checkboxTreeValue.checkedValues.includes(value);
- recordOldVlaue = `${value}:${oldChecked ? '勾选' : '未勾选'}`;
- recordValue = `${value}:${currentChecked ? '勾选' : '未勾选'}`;
- isModify = oldChecked !== undefined;
- }
- const record = {
- ...baseInfo,
- oldValue: recordOldVlaue,
- value: recordValue,
- title: isModify ? "修改" : "提交",
- time: moment().format("YYYY-MM-DD HH:mm:ss"),
- }
- if (data) {
- record.reason = data.remark
- }
-
- const params = {
- type: "fieldChanged",
- newRecord: [record],
- resourceList: this.getZdxgjl(),
- }
-
- // 更新oldValue和oldOtherValues
- if (this.type === 'checkboxList') {
- this.oldCheckboxListValue = JSON.parse(JSON.stringify(this.checkboxListValue));
- } else if (this.type === "checkboxTag") {
- // checkboxTag类型,只更新当前tagIndex的数据
- if (this.currentTagIndex >= 0 && this.currentTagIndex < this.checkboxTagList.length) {
- this.oldCheckboxTagList[this.currentTagIndex] = { ...this.checkboxTagList[this.currentTagIndex] };
- } else {
- // 如果没有指定tagIndex,更新整个数组
- this.oldCheckboxTagList = JSON.parse(JSON.stringify(this.checkboxTagList));
- }
- } else if (this.type === "fqyq") {
- // 如果没有指定字段,更新整个对象
- this.oldFqyqValue = JSON.parse(JSON.stringify(this.fqyqValue));
- } else if (this.type === "checkboxTree") {
- // checkboxTree类型,更新整个对象
- this.oldCheckboxTreeValue = JSON.parse(JSON.stringify(this.checkboxTreeValue));
- }
- let value = this.inputValue;
- if (this.type === 'checkboxList') {
- value = {
- checkboxValues: this.checkboxListValue.checkboxValues,
- otherValues: this.checkboxListValue.otherValues
- };
- } else if (this.type === "checkboxTag") {
- value = [...this.checkboxTagList];
- } else if (this.type === "fqyq") {
- value = { ...this.fqyqValue };
- } else if (this.type === "checkboxTree") {
- value = JSON.parse(JSON.stringify(this.checkboxTreeValue));
- }
- if (this.type === "button") {
- this.$emit('clickButton', this.item, this.inputValue, data);
- if (this.templateFillType === "preFill") {
- return;
- }
- }
- //用户输入密码并点击确定,保存修改
- this.oldValue = value; // 更新旧值
- this.$emit("blur", value);
- this.$emit('input', value);
- this.$emit("change", value, data ? "save" : "");
- if (this.item.type === "clickable") {//clickable的丢给父级去处理
- return;
- }
-
- if (this.templateFillType === "actFill") {//只有实际填报的时候才记录修改记录
- this.updateZdxgjl(record);
- }
- this.$nextTick(() => {
- EventBus.$emit('onModifyRecord', params,)
- console.log(params, "onModifyRecord")
- if (this.regentType.includes(this.item.type)) {
- this.$emit("onRegentSubmit", this.selectRegentInfo, this.inputValue);
- }
- })
- },
-
- //判断两个值是否相等
- isEqual(oldValue, nowValue) {
- if (oldValue === null || nowValue === null) {
- return oldValue === nowValue;
- }
- if (typeof oldValue === 'object' && typeof nowValue === 'object') {
- return JSON.stringify(oldValue) === JSON.stringify(nowValue);
- }
- return oldValue === nowValue;
- },
-
- //获取公共记录信息
- getCommonRecordInfo() {
- const { nickName, name } = this.$store.getters;
- //locale:zh-CN 中文 en-US 英文
- const { label, parentLabel } = this.item;
- let fieldLabelCn = this.$i18n.t(label, "zh_CN"), fieldLabelEn = this.$i18n.t(label, "en_US");
- if (label === "template.common.other") {
- fieldLabelCn = this.$i18n.t(parentLabel, "zh_CN") + this.$i18n.t("template.common.otherInfo", "zh_CN");
- fieldLabelEn = this.$i18n.t(parentLabel, "en_US") + this.$i18n.t("template.common.otherInfo", "en_US");
- } else if (!label && parentLabel == "template.common.remark") {
- fieldLabelCn = this.$i18n.t(parentLabel, "zh_CN") + this.$i18n.t("template.common.unit", "zh_CN");
- fieldLabelEn = this.$i18n.t(parentLabel, "en_US") + this.$i18n.t("template.common.unit", "en_US");
- }
- const commonInfo = {
- userNameCn: nickName,
- userNameEn: name,
- key: this.fieldKey,
- fieldCn: `${this.$i18n.t(this.fieldItemLabel, "zh_CN")}` + (fieldLabelCn ? ("-" + fieldLabelCn) : ""),
- fieldEn: `${this.$i18n.t(this.fieldItemLabel, "en_US")}` + (fieldLabelEn ? ("-" + fieldLabelEn) : ""),
- }
- return commonInfo;
- },
-
- // 判断值是否为空
- isValueEmpty(value) {
- if (value === null || value === undefined || value === '') {
- return true;
- }
- if (typeof value === 'string' && value.trim() === '') {
- return true;
- }
- if (Array.isArray(value) && value.length === 0) {
- return true;
- }
- if (Object.keys(value).length === 0) {
- return true;
- }
- return false;
- },
- // 判断checkboxList中特定otherCode输入框是否有错误
- isOtherInputError(otherCode) {
- if (!this.error) {
- return false;
- }
- // 检查该otherCode对应的输入框是否为空
- return isValueEmpty(this.otherValues[otherCode]);
- },
- handleClickable(item, event) {
- if (this.templateFillType !== 'actFill') {
- return
- }
- this.$emit("clickable", item)
- },
- //判断是否禁用复选框
- getCheckboxDisabled() {
- //只有qc能操作checkbox,其他都只能看。
- return this.templateFillType !== 'qc'
- },
- //判断是否显示复选框图标
- getIsShowCheckboxIcon() {
- if (this.templateFillType === 'qc') {
- return true;
- }
- return this.getChecked();
- },
- //判断是否显示复制按钮
- getIsShowCopyIcon() {
- const { copyFrom } = this.item;
- return copyFrom && this.templateFillType === "actFill";
- },
- //判断是否显示操作按钮
- isShowHandle() {
- const { fillType } = this.item;
- //只有当模板状态不是预填时,才显示操作按钮
- return this.templateFillType !== "preFill" && fillType === "actFill" && this.type !== "button"
- },
- //判断是否禁用
- getDisabled() {
- const { item } = this;
- const { fillType } = item;
- if (item.hasOwnProperty("disabled")) {
- return item.disabled
- } else {
- if (fillType === "actFill") {//当模板状态是实际填写时,只有当fillType是actFill时才能填写
- return this.templateFillType !== "actFill"
- } else if (fillType === "preFill") {//当模板状态是预填写时,只有当fillType是preFill才能填写
- return this.templateFillType !== "preFill"
- } else {
- return true
- }
- }
- },
- getPlaceholder() {
- const { placeholder, label } = this.item;
- const { type } = this;
- if (this.getDisabled()) {
- return ""
- }
- if (this.regentType.includes(type) || type === "clickable" || type === "fqyq") {
- return this.$t("template.common.pleaseSelect")
- }
- let prex = "template.common.pleaseFillIn"
- if (type === "select" || type === "dateTime") {
- prex = "template.common.pleaseSelect"
- }
- return placeholder ? this.$t(placeholder) : (this.$t(prex) + this.$t(label))
-
- },
- async onCopy() {
- // 触发复制事件
- this.$emit("copy");
- // 等待复制操作完成后,调用保存记录方法
- this.$nextTick(async () => {
- await this.onCommonHandleSaveRecord(this.inputValue);
- });
- },
- //判断是否显示问题图标
- getIsShowQuestionIcon() {
- if (this.templateFillType === "qc") {//qc可以直接查看
- return true;
- }
- return this.getReplyRecords().length > 0;
-
- },
- //判断是否显示修改记录图标
- getIsShowRecordIcon() {
- return this.getModifyRecords().length > 0
- },
- //获取回复记录
- getReplyRecords() {
- const { fieldKey, getFhyjjl } = this;
- const records = getFhyjjl()?.filter(item => item.key === fieldKey) || [];
- return records;
- },
- //获取字段修改记录
- getModifyRecords() {
- const { fieldKey, getZdxgjl } = this;
- const records = getZdxgjl().filter(item => item.key === fieldKey);
- return records;
- },
- // 鼠标进入主容器
- async onMouseEnter(type, event) {
- this.currentRecordType = type;
- clearTimeout(this.modalTimer);
- let record = [];
- if (type === "fieldChanged") {
- record = this.getModifyRecords();
- } else if (type === "replyRecord") {
- record = this.getReplyRecords();
- }
- this.modificationRecords = record;
- // 先计算模态框位置,避免闪烁
- this.showModal = true;
- this.$nextTick(() => {
- if (this.$refs.modalRef) {
- const elementRect = event.target.getBoundingClientRect();
- const modalEl = this.$refs.modalRef;
-
- // 获取模态框的宽度和高度
- const modalWidth = modalEl.offsetWidth || 250; // 默认宽度
- const modalHeight = modalEl.offsetHeight || 300; // 默认高度
- const viewportWidth = window.innerWidth;
- const viewportHeight = window.innerHeight;
-
- // 计算模态框位置
- let leftPos, topPos;
-
- // 检查右侧空间是否足够
- if (elementRect.right + modalWidth + 5 <= viewportWidth) {
- // 右侧空间充足,显示在右侧
- leftPos = elementRect.right + 5 + 'px';
- } else if (elementRect.left - modalWidth - 5 >= 0) {
- // 左侧空间充足,显示在左侧
- leftPos = elementRect.left - modalWidth - 5 + 'px';
- } else {
- // 两侧空间都不足,选择空间更大的一边
- if (elementRect.left > viewportWidth - elementRect.right) {
- // 左侧空间更大,显示在左侧
- leftPos = Math.max(5, elementRect.left - modalWidth - 5) + 'px';
- } else {
- // 右侧空间更大,显示在右侧(可能会超出屏幕,但尽量靠近边缘)
- leftPos = Math.min(elementRect.right + 5, viewportWidth - 5) + 'px';
- }
- }
-
- // 计算顶部位置,确保不超出屏幕上下边界
- topPos = Math.max(5, Math.min(elementRect.top, viewportHeight - modalHeight - 5)) + 'px';
-
- // 设置模态框位置
- modalEl.style.left = leftPos;
- modalEl.style.top = topPos;
- }
- });
- },
-
- // 鼠标离开主容器
- onMouseLeave() {
- // this.currentRecordType = '';
- // this.modificationRecords = [];//清空数据源
- // 延迟隐藏模态框,让用户有机会移动到模态框上
- this.modalTimer = setTimeout(() => {
- if (!this.isHoveringModal) {
- this.showModal = false;
- }
- }, 100);
- },
-
- // 鼠标进入模态框
- onModalEnter() {
- this.isHoveringModal = true;
- clearTimeout(this.modalTimer);
- },
-
- // 鼠标离开模态框
- onModalLeave() {
- this.isHoveringModal = false;
- this.currentRecordType = "";
- this.modificationRecords = [];//清空数据源
- this.modalTimer = setTimeout(() => {
- this.showModal = false;
- }, 100);
- },
- },
- }
- </script>
-
- <style lang="scss">
- .flex {
- display: flex;
- align-items: center;
- }
-
- .flex1 {
- flex: 1;
- }
-
- .handle-row {
- margin-left: 5px;
- display: flex;
- align-items: center;
- cursor: pointer;
- }
-
- .w-100 {
- width: 100%;
- }
-
- .handle-icon {
- width: 18px;
- height: 18px;
-
- &:not(:last-child) {
- margin-right: 5px;
- }
- }
-
- .mr-5 {
- margin-right: 5px !important;
- }
-
- .orange {
- color: #f9c588;
- }
-
- .green {
- color: green;
- }
-
- .gray {
- color: #b2b2b2;
- }
-
- .orange-border {
-
- .el-input-group__prepend,
- input,
- textarea {
- border-color: #f9c588;
-
- &:focus {
- border-color: #f9c588;
- }
-
- &:hover {
- border-color: #f9c588;
- }
-
- &:disabled {
- border-color: #f9c588 !important;
- }
- }
-
- .el-checkbox__inner {
- border-color: #f9c588 !important;
- }
-
- }
-
- .el-button--primary {
- &.orange-border {
- background-color: #f79b31 !important;
- border-color: #f79b31 !important;
-
- &:hover {
- background-color: #f79b31 !important;
- }
-
- &:disabled {
- background-color: rgba(#f79b31, .8) !important;
- border-color: rgba(#f79b31, .8) !important;
- }
-
- &:active {
- background-color: rgba(#f79b31, .8) !important;
- border-color: rgba(#f79b31, .8) !important;
-
- }
- }
-
- &.blue-border {
- background-color: #4ea2ff !important;
- border-color: #4ea2ff !important;
-
- &:hover {
- background-color: #4ea2ff !important;
- }
-
- &:disabled {
- background-color: rgba(#4ea2ff, .8) !important;
- border-color: rgba(#4ea2ff, .8) !important;
- }
-
- &:active {
- background-color: rgba(#4ea2ff, .8) !important;
- border-color: rgba(#4ea2ff, .8) !important;
- }
- }
-
- }
-
- .green-border {
-
- .el-input-group__prepend,
- input,
- textarea {
- border-color: green;
-
- &:focus {
- border-color: green;
- }
-
- &:hover {
- border-color: green;
- }
-
- &:disabled {
- border-color: green !important;
- }
- }
-
- }
-
- .blue-border {
-
- .el-input-group__prepend,
- input,
- .el-checkbox__inner,
- textarea {
- border-color: #4ea2ff;
-
- &:focus {
- border-color: #4ea2ff;
- }
-
- &:hover {
- border-color: #4ea2ff;
- }
-
- &:disabled {
- border-color: #4ea2ff !important;
- }
- }
-
- }
-
- .error-border {
-
- .el-input-group__prepend,
- input,
- textarea,
- .el-select,
- .clickable,
- .el-date-editor {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
-
- &:focus {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
-
- &:hover {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
- }
-
- // 为 el-select 和 el-date-picker 添加错误边框样式
- .el-select .el-input__inner,
- .el-date-editor .el-input__inner .el-checkbox__inner {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
-
- // 处理 DecimalInput 组件的错误边框样式
- :deep(.el-input-number) {
- .el-input__inner {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
- }
-
- // 为点击式表单项添加错误边框样式
- .clickable {
- border-color: #ff5d5d;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
- }
-
- .orange-bg {
- background-color: #FFF1F1 !important; // 橙色背景,透明度适中
-
- input,
- textarea,
- .el-input__inner,
- .el-textarea__inner {
- background-color: #FFF1F1 !important;
- }
- }
-
- .modification-modal {
- position: fixed;
- z-index: 9999;
- background-color: rgba(0, 0, 0, 0.7);
- border-radius: 4px;
- padding: 10px;
- color: white;
- max-height: 300px;
- min-width: 250px;
- overflow: hidden;
- pointer-events: auto;
- opacity: 0;
- transform: scale(0.9);
- transition: opacity 0.2s ease, transform 0.2s ease;
- }
-
- .modification-modal.show {
- opacity: 1;
- transform: scale(1);
- }
-
- .modification-modal .modal-content {
- max-height: 280px;
- overflow-y: auto;
- padding-right: 5px;
- }
-
- .modification-modal .modal-content h4 {
- margin: 0 0 10px 0;
- font-size: 14px;
- border-bottom: 1px solid #ccc;
- padding-bottom: 5px;
- }
-
- .modification-modal .records-list {
- font-size: 12px;
- }
-
- .modification-modal .record-item p {
- margin: 5px 0;
- word-break: break-all;
- }
-
- .modification-modal .record-item hr {
- border: 0;
- border-top: 1px solid #555;
- margin: 8px 0;
- }
-
- .modification-modal .no-records {
- text-align: center;
- color: #aaa;
- font-style: italic;
- }
-
- .clickable {
- cursor: pointer;
- width: auto;
- // margin-left: 10px;
- min-height: 28px;
- line-height: 28px;
- word-break: break-all;
- border-radius: 4px;
- border: 1px solid #4ea2ff;
- display: flex;
- align-items: center;
- padding: 0 15px;
- font-size: 14px;
- font-weight: normal;
- color: #606266;
- flex: 1;
-
- &.disabled {
- cursor: not-allowed;
- color: #c0c4cc;
- background-color: #f5f7fa;
- }
-
- &.error-border {
- border-color: #ff5d5d !important;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
- }
-
- .dialog-footer {
- display: flex;
- justify-content: flex-end;
- }
-
- .atta-tips {
- color: #ff5d5d;
- font-size: 12px;
- margin-left: 5px;
- }
-
- .checkbox-list-container {
- padding: 12px;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- transition: all 0.3s;
-
- &.error-border {
- border-color: #ff5d5d !important;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
-
- .checkbox-item {
- margin-right: 16px;
- display: flex;
- align-items: center;
-
- &:not(:last-child) {
- margin-bottom: 10px;
- }
-
- // display: inline-block;
-
- .el-input {
- width: 200px;
- margin-left: 10px;
-
- &.error-border {
- .el-input__inner {
- border-color: #ff5d5d !important;
- box-shadow: 0 0 6px #ffc3c3 !important;
- }
- }
- }
- }
-
-
- }
-
- .orange-border {
- .checkbox-list-container {
- border-color: #f9c588;
-
- &:hover {
- border-color: #f79b31;
- }
-
- }
-
- .el-checkbox {
- &.is-checked {
- .el-checkbox__label {
- color: #606266;
- }
-
- .el-checkbox__inner {
- background-color: #f9c588;
- border-color: #f9c588;
- }
- }
- }
-
- .el-radio {
- &.is-checked {
- .el-radio__label {
- color: #606266;
- }
-
- .el-radio__inner {
- background-color: #f9c588;
- border-color: #f9c588;
- }
- }
- .el-radio__inner {
- border-color: #f9c588;
- }
- }
- }
-
- .orange-bg {
- .checkbox-list-container {
- background-color: #FFF1F1 !important;
- border-color: #f9c588;
- }
- }
-
- // checkboxTag样式
- .checkbox-tag-wrapper {
- display: flex;
- flex-wrap: wrap;
- gap: 10px;
- padding: 8px;
- }
-
- .checkbox-tag-container {
- border-radius: 4px;
-
- .checkbox-tag-item {
- display: flex;
- align-items: center;
- gap: 8px;
-
- .tag-content {
- cursor: pointer;
- position: relative;
-
- .tag-input {
- width: 100px;
- }
-
- .tag-display {
- cursor: pointer;
- user-select: none;
- }
- }
-
- .delete-icon {
- cursor: pointer;
- color: #909399;
- font-size: 12px;
- padding: 2px;
- border-radius: 50%;
- position: absolute;
- top: 6px;
- right: 5px;
- color: red;
- background-color: #f5f5f5;
- }
- }
- }
- .fqyq-input{
- width: 500px;
- margin-right:10px;
- }
- .mb-10{
- margin-bottom: 10px;
- }
- .fs-14{
- font-size: 14px;
- }
- .mr-10{
- margin-right: 10px;
- }
- .checkbox-tree-children{
- margin-left: 30px;
- padding:16px 0;
- gap: 16px;
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- }
-
- .checkbox-tree-item{
- box-sizing: border-box;
- }
- </style>
|