vue 根据动态生成的form表单的整体的数据回显,赋值及校验和提交

主要负责处理表单数据的展示、编辑和提交,以及与后端接口的交互。(处理选择地址、处理单选框选中、设置表单验证、提交表单、校验文件是否上传完成、处理上传文件等)

  • 公共调用方法mixins文件
import HCommonPop from "@/components/commonPop/index";
import HCommonFormItem from "@/components/commonFormItem/index";
import { getSelectList } from "@/api/initProject";export default {data() {return {oldFormList: [],detailInfo: "",axiosInfo: {}};},components: {HCommonPop,HCommonFormItem},methods: {handleSelectAddress(val, label, row, level) {this.formList = this.handleFindDataSetVal(this.formList, row.field, val);},handleCheckedRadio(val, row) {this.formList = this.handleFindDataSetVal(this.formList, row.field, val);},handleSetFormValidate(treeList, fieldVal, val, keyList = []) {if (!treeList || !treeList.length) {return;}treeList.forEach((item) => {const formValidate = item.formValidate;for (let key in formValidate) {if (keyList.length > 0 ? keyList.includes(key) : key === fieldVal) {formValidate[key][0].required = val;}}this.handleSetFormValidate(item.children, fieldVal, val, keyList);});return treeList;},handleSetSubmitData(treeList, dataList) {if (!treeList || !treeList.length) {return [];}treeList.forEach((item) => {if (item.purchasingInformation && JSON.stringify(item.purchasingInformation) !== "{}" && (item.display === undefined || item.display === true)) {const updateObj = {};item.purchasingInformation.formLabel.forEach((label) => {const field = label.field;const formValue = item.purchasingInformation.form[field];if (label.type === "check") {updateObj[field] = Array.isArray(formValue) ? formValue.join(",") : formValue;} else if (label.type === "examine") {delete item.purchasingInformation.form[field];} else if (label.type === "upload") {updateObj[field] = typeof formValue === "object" ? JSON.stringify(formValue) : formValue;} else if (label.type === "textarea" && label.dataType === "multiple") {const textareaData = JSON.parse(JSON.stringify(formValue));const textareaFilterData = textareaData.filter((el) => el.value !== "");if (textareaFilterData.length > 0) {textareaFilterData.forEach((el) => {if (!el.disabled) {el.disabled = true;el.userName = this.userInfo.nickName;el.date = new Date().format("yyyy-MM-dd hh:mm:ss");el.value = `${el.date} ${el.userName}: ${el.value}`;}});}updateObj[field] = textareaFilterData.length > 0 ? JSON.stringify(textareaFilterData) : "";} else if (label.display) {updateObj[field] = formValue;}});dataList.push(updateObj);}if (item.children) {this.handleSetSubmitData(item.children, dataList);}});return dataList;},// 寻找某个属性值handleFindDataInForm(treeList, field, myInfo, paramVal = "value") {if (!treeList || !treeList.length) {return myInfo;}for (const node of treeList) {const { purchasingInformation, children } = node;if (purchasingInformation &&purchasingInformation.form.hasOwnProperty(field)) {const { formLabel } = purchasingInformation;const matchingField = formLabel.find(label => label.field === field);if (matchingField) {myInfo[paramVal] =paramVal === "options"? matchingField.options: purchasingInformation.form[field];return myInfo;}}this.handleFindDataInForm(children, field, myInfo, paramVal);}return myInfo;},handleChangeFormKeyVal() {},// 为某个属性赋值handleFindDataSetVal(treeList, field, val) {if (!treeList || !treeList.length) {return;}treeList.forEach((item) => {const purchasingInformation = item.purchasingInformation;if (purchasingInformation &&(item.display === undefined || item.display === true) &&purchasingInformation.form[field] !== undefined) {const formLabel = purchasingInformation.formLabel;const targetLabel = formLabel.find((label) => label.field === field);if (targetLabel) {purchasingInformation.form[field] = val;}return;}this.handleFindDataSetVal(item.children, field, val);});return treeList;},submit() {this.$commonMessage.confrimMessage({ message: "是否保存?", type: "success" },() => {let myForm = {imgData: [],list: []};let imgStatus = this.handleCheckImgAndTable(this.formList,myForm,"img");if (imgStatus.imgData.length > 0) {this.$commonMessage.message({type: "warning",message: "文件上传中,请稍后!"});return;}this.handleSetAxiosData();});},//校验文件是否上传完成handleCheckImgAndTable(treeList, myForm, operatorType) {if (!treeList || !treeList.length) {return;}treeList.forEach((item) => {const purchasingInformation = item.purchasingInformation;if (purchasingInformation && JSON.stringify(purchasingInformation) !== "{}") {purchasingInformation.formLabel.forEach((label) => {if (operatorType === "img" && label.type === "upload") {const uploadImgList = label.uploadImgList;if (uploadImgList.some((el) => !el.isUpload)) {myForm.imgData.push(1);} else {const chooseImgListOrigin = label.chooseImgListOrigin;const imgList = chooseImgListOrigin.map((item) => item.new || item);purchasingInformation.form[label.field] = imgList.length > 0 ? JSON.stringify(imgList) : "";}}});}if (item.children) {this.handleCheckImgAndTable(item.children, myForm, operatorType);}});if (operatorType === "img") {myForm.list = treeList;}return myForm;},handleCheckUpload(treeList, fieldInfo, fileList) {if (!treeList || !treeList.length) {return;}treeList.forEach((item) => {if (item.$children && item.$children.length > 0 && !item.$refs.rulesForm) {this.handleCheckUpload(item.$children, fieldInfo, fileList);} else {if (fileList.length > 0) {const formRules = item.$refs.rulesForm?item.$refs.rulesForm.rules:{};formRules&&formRules[fieldInfo.field] && item.$refs.rulesForm.clearValidate(fieldInfo.field);}}});},handleSelectChange() {},//上传文件的处理(删除及添加)handleImgInfo(val, file, info) {this.formList = this.handleSetImgVal(this.formList, val, file, info);},//上传文件的处理(删除及添加)handleImgLoad(val, formInfo) {this.formList = this.handleSetImgVal(this.formList, val, "add", formInfo);},//上传文件的处理(删除及添加)handleSetImgVal(treeList, val, file, formInfo) {if (!treeList || !treeList.length) {return;}const node = treeList.find((item) =>item.purchasingInformation &&item.purchasingInformation.form[formInfo.field] !== undefined);if (node) {for (let j = 0; j < node.purchasingInformation.formLabel.length; j++) {if (node.purchasingInformation.formLabel[j].field == formInfo.field) {const chooseImgListOrigin =node.purchasingInformation.formLabel[j].chooseImgListOrigin;if (file == "delete") {const index = chooseImgListOrigin.findIndex((ele) => ele.id === val.id || ele.uid === val.uid);chooseImgListOrigin.splice(index, 1);} else if (file == "add") {this.$set(node.purchasingInformation.formLabel[j],"uploadImgList",val);} else {chooseImgListOrigin.push({new: val,old: file,});this.handleCheckUpload(this.$refs.myFromItem.$children, formInfo, chooseImgListOrigin);}break;}}} else {treeList.forEach((item) => {this.handleSetImgVal(item.children, val, file, formInfo);});}return treeList;},// 获取所有表单填写的formhandleGetFormData(formList) {let dataList = [];let submitData = this.handleSetSubmitData(JSON.parse(JSON.stringify(this[formList])),dataList);let submitObj = {};submitData.forEach(el => {submitObj = {...submitObj,...el};});return submitObj;},handleCheckTreeFormValidate(treeList, myValidate) {if (!treeList || !treeList.length) {return;}treeList.forEach((item) => {if (item && item.$children && item.$children.length > 0 && item.$refs && !item.$refs.rulesForm) {this.handleCheckTreeFormValidate(item.$children, myValidate);} else if (item && item.$refs && item.$refs.rulesForm) {myValidate.push(new Promise((resolve, reject) => {item.$refs.rulesForm.validate((valid, validObj) => {if (valid) {resolve();} else {console.log(valid, validObj, "valid, validObj");reject();}});}));}});return myValidate;},handleSetAxiosData(submitType, type) {let submitObj = this.handleGetFormData("formList");let validate = [];let validateList = [];if (this.detailInfo.type == "edit" &&this.detailInfo.page == "warehouse") {this.handleSubmitData(submitObj, type);return;}if (this.$refs.myFromItem.$children &&this.$refs.myFromItem.$children.length > 0) {validateList = this.handleCheckTreeFormValidate(this.$refs.myFromItem.$children,validate);}console.log(validateList, "validateList");Promise.all(validateList).then(() => {let ruleFlag = false;if (this.$route.name == "AddRules") {let ruleFlagMsg = this.handleValidateUp();if (ruleFlagMsg) {this.$commonMessage.message({type: "warning",message: `${ruleFlagMsg}`});ruleFlag = true;}}if (!ruleFlag && type != "examine") {this.handleSubmitData(submitObj, type);}if (type == "examine") {this.handleOperatorExamine(submitType, submitObj);}}).catch(() => {this.$commonMessage.message({type: "warning",message: `请完善信息并检查填写信息是否符合要求!`});});},// 数据回显handleUpdateForm(treeList, list, info) {if (!treeList || treeList.length === 0) {return;}for (const item of treeList) {const {purchasingInformation, display} = item;if (purchasingInformation && Object.keys(purchasingInformation).length !== 0 && (display === undefined || display === true)) {for (const formLabel of purchasingInformation.formLabel) {const {field, type, dataType, disabled} = formLabel;let key = field;let infoVal = "";if (type === "upload") {infoVal = info &&info[key] ? JSON.parse(info[key]) : this.axiosInfo[key] ? JSON.parse( this.axiosInfo[key]):'';item.purchasingInformation.form[key] = infoVal;if(infoVal) {formLabel.chooseImgListOrigin = JSON.parse(JSON.stringify(infoVal));formLabel.fileList = JSON.parse(JSON.stringify(infoVal));}if (disabled) {formLabel.initData = infoVal ? JSON.stringify(infoVal) : "";}} else if (type === "textarea" && dataType === "multiple") {let inputValue = "";if (this.axiosInfo[key] && this.commonFunc.judgeIsArray(this.axiosInfo[key])) {const textareaValues = JSON.parse(this.axiosInfo[key]);const textareaValue = [{disabled: true,date: "",userName: "",value: ""}];for (let v = 0; v < textareaValues.length; v++) {textareaValue[0].value += textareaValues[v].value + (textareaValues.length - 1 === v ? "" : "\n");}inputValue = textareaValue;} else {inputValue = this.axiosInfo[key]? [{date: "",userName: "",disabled: true,value: this.axiosInfo[key]}]: [{date: "",userName: "",disabled: false,value: ""}];}formLabel.deleteWord = inputValue;item.purchasingInformation.form[key] = inputValue;} else {item.purchasingInformation.form[key] = this.axiosInfo[key] !== undefined && this.axiosInfo[key] !== null && this.axiosInfo[key] !== ""? this.axiosInfo[key]: item.purchasingInformation.form[key] !== undefined && item.purchasingInformation.form[key] !== "" && item.purchasingInformation.form[key] !== null? item.purchasingInformation.form[key]: "";}}}if (item.children) {this.handleUpdateForm(item.children, list, info);}}return treeList;},// 判断是否需要调用接口显示下拉信息handleSetValForFormSelect(treeList, fieldVal, index) {if (!treeList || !treeList.length) {return;}for (let i = 0; i < treeList.length; i++) {if (treeList[i].purchasingInformation &&JSON.stringify(treeList[i].purchasingInformation) != "{}") {for (let k = 0;k < treeList[i].purchasingInformation.formLabel.length;k++) {if (treeList[i].purchasingInformation.formLabel[k].selectUrl) {this.handleGetSelectList(treeList[i].purchasingInformation.formLabel[k].selectUrl,treeList[i].purchasingInformation.formLabel[k],fieldVal,index);}if (treeList[i].purchasingInformation.formLabel[k].type == "examine") {this.handleGetFlowTask(treeList[i].purchasingInformation.formLabel[k],fieldVal,index);}}}if (treeList[i].children) {this.handleSetValForFormSelect(treeList[i].children, fieldVal, index);}}},// 获取form中select的下拉选async handleGetSelectList(url, obj, fieldVal, index, params) {let result = await getSelectList(url, params);this[fieldVal] = this.handleSetValForSelect(this[fieldVal],result,obj,"normal");if (this.$route.name == "AddRules") {if (JSON.stringify(this.axiosInfo) != "{}") {this.handleSelectChange(this.axiosInfo.standardCode, "standardCode");this.handleSelectChange(this.axiosInfo.checkType, "checkType");}}},// 审核人下拉async handleGetFlowTask(obj, fieldVal, index) {if (this.isMineExamine) {await this.handleGetExamineInfo(obj, fieldVal, index);} else {}},// form中下拉赋值handleSetValForSelect(treeList, data, obj, index) {if (!treeList || !treeList.length) {return treeList;}for (let i = 0; i < treeList.length; i++) {const purchasingInfo = treeList[i].purchasingInformation;if (purchasingInfo && purchasingInfo.form[obj.field] !== undefined) {const formLabel = purchasingInfo.formLabel.find((label) => label.field === obj.field);if (formLabel) {const target = index !== "normal"? formLabel.tableColumns[index]: formLabel;this.$set(target, "options", data);}}this.handleSetValForSelect(treeList[i].children, data, obj, index);}return treeList;},handleSetFormDisabled(treeList,type,fieldListWidthFit = [],fieldVal = "type",param = "selectUrl",paramVal = "/core/select/crm-dealer-type") {if (!treeList || !treeList.length) {return;}for (let i = 0; i < treeList.length; i++) {const purchasingInformation = treeList[i].purchasingInformation;for (let j = 0; j < purchasingInformation.formLabel.length; j++) {if (type == "special") {if (fieldVal == purchasingInformation.formLabel[j].field) {this.$set(purchasingInformation.formLabel[j], param, paramVal);}} else {if (type != "disabled") {this.$set(purchasingInformation.formLabel[j], "disabled", true);}if (fieldListWidthFit.includes(purchasingInformation.formLabel[j].field)) {if (type == "disabled") {this.$set(purchasingInformation.formLabel[j], "disabled", true);} else {this.$set(purchasingInformation.formLabel[j], "widthFit", true);}}if (fieldVal == purchasingInformation.formLabel[j].field) {this.$set(purchasingInformation.formLabel[j], "param", "");}}}this.handleSetFormDisabled(treeList[i].children);}return treeList;},handleGetDataToForm() {// 数据回显赋值this.formList = this.handleUpdateForm(this.formList);},handleBackMessage() {this.$commonMessage.confrimMessage({ message: "有部分修改尚未保存,确定要离开该页面吗?", type: "success" },() => {this.handleBack();});},back() {console.log("back");let formList = JSON.stringify(this.handleGetFormData("formList"));if (this.oldFormList == formList || this.detailInfo.type == "detail") {this.handleBack();return;}this.handleBackMessage();},handleBack() {this.$router.back();}},mounted() {// 下拉选赋值this.handleSetValForFormSelect(this.formList, "formList");this.$nextTick(() => {this.oldFormList = JSON.stringify(this.handleGetFormData("formList"));});},destroyed() {},created() {if (!this.isDialog) {this.$store.commit("setBoxBgVisible", false);this.detailInfo = this.$route.query.detailInfo? window.atob(this.$route.query.detailInfo)? JSON.parse(decodeURIComponent(window.atob(this.$route.query.detailInfo))): {}: "";this.title = this.detailInfo.title;}}
};
  • 在vue文件中获取到详情数据回显

<script>export default {methods: {getDetail() {// 接口请求 response返回的数据this.axiosInfo = responsethis.handleGetDataToForm();},async handleSubmitData(submitObj) {let data = {...submitObj,};接口(data).then(res=>{this.handleBack();this.$commonMessage.message({type: "success",message: `保存成功!`});})}}}
</script>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/190751.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

面试就是这么简单,offer拿到手软(二)—— 常见65道非技术面试问题

面试系列&#xff1a; 面试就是这么简单&#xff0c;offer拿到手软&#xff08;一&#xff09;—— 常见非技术问题回答思路 面试就是这么简单&#xff0c;offer拿到手软&#xff08;二&#xff09;—— 常见65道非技术面试问题 文章目录 一、前言二、常见65道非技术面试问题…

九、FreeRTOS之FreeRTOS列表和列表项

本节需要掌握以下内容&#xff1a; 1&#xff0c;列表和列表项的简介&#xff08;熟悉&#xff09; 2&#xff0c;列表相关API函数介绍&#xff08;掌握&#xff09; 3&#xff0c;列表项的插入和删除实验&#xff08;掌握&#xff09; 4&#xff0c;课堂总结&#xff08;掌…

微前端qiankun示例 Umi3.5

主应用配置&#xff08;基座&#xff09; 安装包 npm i umijs/plugin-qiankun -D 配置 qiankun 开启 {"private": true,"scripts": {"start": "umi dev","build": "umi build","postinstall": "…

L1-012:计算指数

⭐题目描述⭐ 真的没骗你&#xff0c;这道才是简单题 —— 对任意给定的不超过 10 的正整数 n&#xff0c;要求你输出 2n。不难吧&#xff1f; 输入格式&#xff1a; 输入在一行中给出一个不超过 10 的正整数 n。 输出格式&#xff1a; 在一行中按照格式 2^n 计算结果 输出 2n…

Nacos多数据源插件

Nacos从2.2.0版本开始,可通过SPI机制注入多数据源实现插件,并在引入对应数据源实现后,便可在Nacos启动时通过读取application.properties配置文件中spring.datasource.platform配置项选择加载对应多数据源插件.本文档详细介绍一个多数据源插件如何实现以及如何使其生效。 注意:…

Doccker常用的命令

第一部分&#xff1a;基本Docker命令 docker --version //- 查看Docker版本 docker info //- 查看Docker系统信息 docker help //- 获取Docker命令帮助 docker pull //- 拉取Docker镜像 docker push //- 推送Docker镜像 docker run //- 运行Docker容器 docker ps //- 查看运行中…

c++ day 4

代码整理&#xff0c; 将学过的三种运算符重载&#xff0c;每个至少实现一个运算符的重载:分别是-&#xff0c;-&#xff0c;<。 #include <iostream>using namespace std; class Stu {friend const Stu operator-(const Stu &L,const Stu &R);friend bool o…

xxl-job分布式定时任务

1.启动java admin项目注册到nacos 2.启动定时任务微服务注册到定时任务中心 3.在定时任务微服务写bean 4.在http://localhost:8080/xxl-job-admin/joblog?jobId2 任务管理添加任务的bean名字和 cron表达式 //想要得到参数,使用,逗号分隔java来处理,或者使用jackson json转…

当XTS服务遇到切流...

事件回顾 介绍问题前&#xff0c;先介绍两个概念。灰度发布和切流。 灰度发布 灰度发布也叫金丝雀发布。起源是矿井工人发现&#xff0c;金丝雀对瓦斯气体很敏感&#xff0c;矿工会在下井之前&#xff0c;先放一只金丝雀到井中&#xff0c;如果金丝雀不叫了&#xff0c;就代表…

如何获取唐诗三百首中的名句列表接口

唐诗三百首&#xff0c;是中国文学中最为经典的诗歌选集之一&#xff0c;其中涵盖了大量美丽、深刻的诗句&#xff0c;被广泛传诵。有不少文化爱好者希望能够获取这些名句列表&#xff0c;以便深入理解唐诗的内涵和精华。那么&#xff0c;如何获取唐诗三百首中的名句列表呢&…

python使用sox对指定路径下的音频进行重采样

SoX&#xff08;Sound eXchange&#xff09;是一个开源的音频处理工具&#xff0c;它可以用来处理和转换音频文件。SoX支持多种音频格式&#xff0c;包括WAV、MP3、OGG等&#xff0c;并提供了丰富的音频处理功能&#xff0c;如音频格式转换、音频剪切、音频合并、音频增益调整、…

uniapp运行到安卓基座app/img标签不显示

img是html中的标签&#xff0c;他也是一个单标签 image属于服务器控件&#xff0c;是个双标签 问题&#xff1a;uniapp运行到app安卓基座后图片无法显示 原因&#xff1a;自己使用了img标签&#xff0c;而且输入路径无提示&#xff0c;img标签导致图片不显示 解决&#xff…

【华为OD题库-055】金字塔/微商-java

题目 微商模式比较典型&#xff0c;下级每赚100元就要上交15元&#xff0c;给出每个级别的收入&#xff0c;求出金字塔尖上的人收入。 输入描述 第一行输入N&#xff0c;表示有N个代理商上下级关系 接下来输入N行&#xff0c;每行三个数:代理商代号 上级代理商代号 代理商赚的钱…

深入探索网络协议:揭开互联网运作的奥秘(建议收藏)

随着如今数字化时代的到来&#xff0c;互联网已经成为我们日常生活中不可或缺的一部分。然而&#xff0c;我们是否曾好奇过互联网是如何运作的&#xff1f;它是如何将我们与世界连接起来的&#xff1f;答案就在网络协议中&#xff0c;这是互联网背后的语言。 网络协议的作用和功…

重生奇迹MU再生原石

通过坎特鲁提炼之塔的NPC艾尔菲丝提炼成功就可以可获得再生宝石。 重生奇迹mu里的再生原石的用法&#xff1a; 1、打怪获得再生原石去提炼之塔&#xff08;进入坎特鲁遗址的141188位置的传送台&#xff09;。 2、找到&#xff08;艾儿菲丝&#xff09;把原石提炼成再生宝石。…

【vSphere 8 自签名 VMCA 证书】企业 CA 签名证书替换 vSphere VMCA CA 证书Ⅲ—— 颁发自签名与替换 VMCA 证书

目录 5. 使用 Microsoft 证书颁发机构颁发自签名 CA 证书链5.1 登录MADCS5.2 申请证书5.3 选择证书类型5.4 提交CR5.5 下载 Base 64 编码的证书5.6 将证书链传入VC 6. 使用 企业CA签发的 VMCA 证书 替换 vSphere 默认 VMCA 证书6.1 确认证书文件6.2 替换默认 vSphere 证书6.3 验…

Gateway网关--java

网关是建立于请求到服务之前的,可以用网关限制访问量,添加过滤等 创建网关模块,引入相关pome依赖 配置yml 具体相关的作用可以参考 Spring Cloud Gateway 这样就可以了 基础的网关配置,我们的实现效果 我们可以通过10010端口访问,通过转发到nacos,再找到相应的模块,实现…

CAPL通过ethernetPacket发送以太网报文

文章目录 ethernetPacketCANoe帮助文档车载以太网协议函数CAPL通过ethernetPacket发送以太网报文例子ethernetPacket CANoe中,ethernetPacket类似于CAN的message. CANoe帮助文档 CANoe的帮助文档是很好的学习资料,后面会结合CANoe帮助文档来介绍车载以太网的相关内容。 车…

【深度学习】性能监控

性能监控 判断系统&#xff0c;然后再监控程序运行期间机器的性能 import psutil import matplotlib.pyplot as plt import time import matplotlib import subprocess import platform import os try:import GPUtilimport pynvml except ImportError as e:print(f"导入…

2023年12月3日支付宝蚂蚁庄园小课堂今日答案是什么?

问题&#xff1a;雪天行车&#xff0c;路面会有不少前车行驶的轨迹&#xff0c;最好&#xff1f; 答案&#xff1a;顺着前车轨迹行驶 解析&#xff1a;雪天路面湿滑&#xff0c;而且可能有冰雪等堆积物遮盖路面&#xff0c;所以&#xff0c;最好顺着前车轨迹减速慢行&#xf…