淘宝客户自己做网站怎么做wordpress小程序怎么不用认证审核

news/2025/9/26 2:06:51/文章来源:
淘宝客户自己做网站怎么做,wordpress小程序怎么不用认证审核,重庆网站seo按天计费,网站建设论文选题背景需求#xff1a;一个机构下拉菜单#xff0c;一个人员下拉菜单#xff0c;默认带入当前登录用户的机构和人员。机构下拉菜单为两个接口#xff0c;模糊查询为一个接口不包含懒加载#xff0c;默认非模糊查询情况下为一个接口#xff0c;点击节点懒加载。机构下拉菜单数据…需求一个机构下拉菜单一个人员下拉菜单默认带入当前登录用户的机构和人员。机构下拉菜单为两个接口模糊查询为一个接口不包含懒加载默认非模糊查询情况下为一个接口点击节点懒加载。机构下拉菜单数据变动更新人员下拉菜单数据。日期默认为当天 templatediv classapp-containerdiv idapp classmb82 grid-content pd20divel-row :gutter20el-col idtittle检查信息/el-col/el-rowel-divider /el-divider/divdiv classcenterel-form :modelruleForm :rulesrules refruleForm label-width100px classdemo-ruleFormel-form-item label检查时间 propcheckTimeel-date-pickerclasswidth100v-modelruleForm.checkTimetypedatevalue-formatyyyy-MM-dd HH:mm:ssplaceholder选择日期/el-date-picker/el-form-itemel-form-item label检查机构 propselectOrgel-selectclassel-input-search width100v-modelruleForm.selectOrgrefrefSelectOrg:multipletrueremove-tagremovetagOrgclearclearallOrgclearablechange $forceUpdate();el-optionvaluestyleheight:auto;background-color: #fff;el-input:validate-eventfalsev-modelfilterTextOrgrefrefSelectOrgSearchplaceholder请输入click.stop.nativeclearableclearclearallOrgSearchstylemargin-bottom:8px;/el-inputel-tree:show-checkboxtruestylepadding:20px 10px;:dataorgList:propsdefaultPropsOrgnode-keyorgIdcheck-strictlyhighlight-current:expand-on-click-nodetruerefrefTreeOrg:default-expanded-keysexpandedKeysOrgData:default-checked-keyscheckedKeysOrgDatacheck-changehandleNodeCheckOrgnode-clickhandleNodeClick/el-tree/el-option/el-select/el-form-itemel-form-item label检查人员 propselectUserel-selectclassel-input-search width100v-modelruleForm.selectUserrefrefSelectOrg:multipletrueremove-tagremovetagUserclearclearallUserclearablechange $forceUpdate();el-optionvaluestyleheight:auto;background-color: #fff;el-input:validate-eventfalsev-modelfilterTextUserrefrefSelectUserSearchplaceholder请输入click.stop.nativeclearableclearclearallUserSearchstylemargin-bottom:8px;/el-inputel-tree:show-checkboxtruestylepadding:20px 10px;:datauserList:propsdefaultPropsUsernode-keyuserIdcheck-strictlyhighlight-current:expand-on-click-nodetruerefrefTreeUser:default-expanded-keysexpandedKeysUserData:default-checked-keyscheckedKeysUserDatacheck-changehandleNodeCheckUser/el-tree/el-option/el-select/el-form-itemel-form-item label检查结果 propcheckResultel-input typetextarea v-modelruleForm.checkResult/el-input/el-form-item/el-form/div/divdiv classfooterBtn bgel-divider/el-dividerel-row classpd20el-col :span23 styletext-align: right;el-button sizesmall clickgoback返回/el-buttonel-button typeprimary sizesmall clicksubmitBtn(ruleForm)提交/el-button/el-col/el-row/div/div /templatescript import axios from axios; import {warnView,getInfo,childNode,childNodeFuzzyQuery,getUserListByOrg,saveCheck} from ../../../../api/warning export default {data() {return {// 检察机构startfilterTextOrg:,orgList:[],defaultPropsOrg: {children: childNodeList,label: orgName,value:orgId,isLeaf: leaf},expandedKeysOrgData:[792394093041156096],checkedKeysOrgData:[],nodeCheckedOrgData:[],// 检察机构end// 检察人员startfilterTextUser:,userList:[],defaultPropsUser: {children: userList,label: realName,value:userId,isLeaf: leaf},expandedKeysUserData:[],checkedKeysUserData:[],nodeCheckedUserData:[],// 检察人员endruleForm: {checkTime: ,selectOrg: [],selectUser: [],checkResult: ,},rules: {checkTime: [{ required: true, message: 检查时间不能为空, trigger: change },],selectOrg: [{ type: array, required: true, message: 检查机构不能为空, trigger: change },],selectUser: [{ type: array, required: true, message: 检查人员不能为空, trigger: change },],checkResult: [{ required: true, message: 检查结果不能为空, trigger: blur },],},orgId:,orgName:,}},watch: {// 检察机构start// 监听输入值filterTextOrg(val) {if(val){this.childNodeFuzzyQueryChange(val)}else{this.childNodeChangeAll(this.orgId)}},ruleForm.selectOrg: {handler: function (newVal, oldVal) {let that thisif(newVal){// this.$refs.refTreeOrg.filter(newVal);}else{console.log(newVal1111111,newVal)}},deep: true},// 检察机构end// 检察人员startfilterTextUser(val) {this.getUserListByOrgChange(val)},// 检察人员end},created() {getInfo().then((res) {this.userId res.data.userId;this.realName res.data.realName;this.orgId res.data.orgId;this.orgName res.data.orgName;this.nodeCheckedOrgData [{orgId:this.orgId,orgName:this.orgName,}]this.ruleForm.selectOrg.push(this.orgName)this.checkedKeysOrgData.push(this.orgId)this.childNodeChangeAll(792394093041156096)this.nodeCheckedUserData [{userId:this.userId,realName:this.realName,}]this.ruleForm.selectUser.push(this.realName)this.checkedKeysUserData.push(this.userId)this.getUserListByOrgChange();})},mounted() {this.ruleForm.superviseId this.$route.query.superviseId; // 监管idDate().getTime(); // 检查编号this.ruleForm.checkTime this.dateTypeFormat(YYYY-mm-dd HH:MM:SS, new Date())},methods: {// 去重unique(arr){return Array.from(new Set(arr))},// 返回上一页goback() {this.$router.go(-1);},// 格式化日期dateTypeFormat(fmt, date) {let retconst opt {Y: date.getFullYear().toString(), // 年m: (date.getMonth() 1).toString(), // 月d: date.getDate().toString(), // 日H: date.getHours().toString(), // 时M: date.getMinutes().toString(), // 分S: date.getSeconds().toString() // 秒// 有其他格式化字符需求可以继续添加必须转化成字符串}for (const k in opt) {ret new RegExp(( k )).exec(fmt)if (ret) {fmt fmt.replace(ret[1], (ret[1].length 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, 0)))}}return fmt}, // 检察机构start// 获取模糊查询机构树childNodeFuzzyQueryChange(val){let data {orgId:,value:val}childNodeFuzzyQuery(data).then((res) {this.orgList res.data || [];})},// 获取机构树非模糊查询childNodeChangeAll(id){let orgId id || childNode(orgId).then((res) {res.data.node.childNodeList res.data.childOrgListthis.orgList []this.orgList.push(res.data.node);})},// 删除机构单个下拉菜单标签removetagOrg(val){this.nodeCheckedOrgData.forEach((item, index, arr) {if(item.orgName val) {arr.splice(index, 1)this.checkedKeysOrgData this.checkedKeysOrgData.filter(i i ! item.orgId)}})this.checkedKeysOrgData this.unique(this.checkedKeysOrgData)this.$nextTick(() {this.$refs.refTreeOrg.setCheckedKeys(this.checkedKeysOrgData,true)})// 数据变动更改人员树this.nodeCheckedUserData[];this.ruleForm.selectUser[];this.checkedKeysUserData[];this.getUserListByOrgChange()},// 清空机构下拉菜单clearallOrg(){},// 清空机构模糊查询clearallOrgSearch(){},// 点击机构树复选框handleNodeCheckOrg(data,checked){if(checked true) {this.ruleForm.selectOrg.push(data.orgName)this.checkedKeysOrgData.push(data.orgId)this.nodeCheckedOrgData.push(data)if(this.ruleForm.selectOrg)this.ruleForm.selectOrg this.unique(this.ruleForm.selectOrg)this.checkedKeysOrgData this.unique(this.checkedKeysOrgData)const map new Map();this.nodeCheckedOrgData.filter(i !map.has(i.orgId) map.set(i.orgId, i));this.$refs.refTreeOrg.setChecked(data.orgId, true)}else{this.nodeCheckedOrgData.forEach((item, index, arr) {if(item.orgId data.orgId) {arr.splice(index, 1)this.checkedKeysOrgData this.checkedKeysOrgData.filter(i i ! item.orgId)}})if(this.ruleForm.selectOrg.includes(data.orgName)) {this.ruleForm.selectOrg.forEach((item, index, arr) {if(item data.orgName) {arr.splice(index, 1)}})this.$refs.refTreeOrg.setChecked(data.orgId, false)}}// 数据变动更改人员树this.nodeCheckedUserData[];this.ruleForm.selectUser[];this.checkedKeysUserData[];this.getUserListByOrgChange()},// 点击机构树节点handleNodeClick(data,node){console.log(data)console.log(node)let that thislet orgId ;if (node.level 1) {orgId node.data.orgId;}childNode(orgId).then((res) {if(res.code 20000){let parentData [];let data;if (node.level 0) {parentData[0] res.data.nodedata parentData;}if (node.level 1) {data res.data.childOrgList;}//TODO 追加数据 append datathis.$refs.refTreeOrg.updateKeyChildren(orgId,res.data.childOrgList);setTimeout((){if(res.data.childOrgList){ node.expanded true}},300)} else {this.$message({message: res.message,type: error});}})}, // 检查机构end // 检察人员start// 获取模糊查询人员树getUserListByOrgChange(val){this.checkedKeysOrgData this.unique(this.checkedKeysOrgData)let data {orgIds:this.checkedKeysOrgData,searchValue:val || }getUserListByOrg(data).then((res) {this.userList res.data || [];})},// 删除人员单个下拉菜单标签removetagUser(val){this.nodeCheckedUserData.forEach((item, index, arr) {if(item.realName val) {arr.splice(index, 1)this.checkedKeysUserData this.checkedKeysUserData.filter(i i ! item.userId)}})this.checkedKeysUserData this.unique(this.checkedKeysUserData)this.$nextTick(() {this.$refs.refTreeUser.setCheckedKeys(this.checkedKeysUserData,true)})},// 清空人员下拉菜单clearallUser(){},// 清空人员模糊查询clearallUserSearch(){},// 点击人员树复选框handleNodeCheckUser(data,checked){if(checked true) {this.ruleForm.selectUser.push(data.realName)this.checkedKeysUserData.push(data.userId)this.nodeCheckedUserData.push(data)if(this.ruleForm.selectUser)this.ruleForm.selectUser this.unique(this.ruleForm.selectUser)this.checkedKeysUserData this.unique(this.checkedKeysUserData)const map new Map();this.nodeCheckedUserData.filter(i !map.has(i.userId) map.set(i.userId, i));this.$refs.refTreeUser.setChecked(data.userId, true)}else{this.nodeCheckedUserData.forEach((item, index, arr) {if(item.userId data.userId) {arr.splice(index, 1)this.checkedKeysUserData this.checkedKeysUserData.filter(i i ! item.userId)}})if(this.ruleForm.selectUser.includes(data.realName)) {this.ruleForm.selectUser.forEach((item, index, arr) {if(item data.realName) {arr.splice(index, 1)}})this.$refs.refTreeUser.setChecked(data.userId, false)}}},// 检查人员end// 表单提交弹窗submitBtn(formName){this.$refs[formName].validate((valid) {if (valid) {this.$confirm(确定提交吗?, 提示, {confirmButtonText: 确定,cancelButtonText: 取消,type: warning}).then(() {this.submitChange();}).catch(() {this.$message({type: info,message: 已取消});});} else {return false;}});},// 提交表单submitChange(){const map new Map();this.nodeCheckedOrgData this.nodeCheckedOrgData.filter(i !map.has(i.orgId) map.set(i.orgId, i));this.nodeCheckedUserData this.nodeCheckedUserData.filter(i !map.has(i.userId) map.set(i.userId, i));this.ruleForm.orgList this.nodeCheckedOrgData;this.ruleForm.userList this.nodeCheckedUserData;let data {superviseId:this.ruleForm.superviseId,orgList:this.ruleForm.orgList,userList:this.ruleForm.userList,checkResult:this.ruleForm.checkResult,checkTime:this.ruleForm.checkTime,}console.log(data,data)saveCheck(data).then((res) {if(res.code 20000){this.$message({message: 提交成功,type: success});this.$router.go(-1);}else{this.$message({message: res.message,type: error});}})},} } /scriptstyle scoped langless .app-container {margin: 10px; } #app {/* padding: 15px; */background-color: #fff;font-size: 14px; }.title{text-align: center;color: #0066FF;font-weight:800;font-size: 16px;}.chart-container{position: relative;width: 100%;height: calc(100vh - 84px);}.description{font-size: 12px;padding-left: 20px;color: #555;}.mt10{margin-top: 10px;}.mg15-0{margin: 15px 0;}.mt30{margin-top: 30px;}.mt26{margin-top: 26px;}.state-box{width: 10px;height: 10px;margin-right: 5px;margin-bottom: 1px;display: inline-block;}.state-box-max {width: 19px;height: 16px;text-align: center;line-height: 16px;color: #fff;margin-right: 10px;margin-top: 1px;display: inline-block;}.violet{background: #9933FF;}.yellow{background: #e6a23c;}.blue{background: #0066FF;}.footerBtn{position: fixed;bottom: 0;right: 0;z-index: 9;width: calc(100%);-webkit-transition: width 0.28s;transition: width 0.28s;}.el-divider--horizontal{margin: 0px 15px;}.bg{background: #fff;}.el-col{margin:0 24px;}.pdt10{padding-top: 10px;}.mb15{margin-bottom: 15px;}.mb82{margin-bottom: 82px;}.mb60{margin-bottom: 60px;}.mb10{margin-bottom: 10px;margin-top: 10px;}.diaglogClas{margin-bottom: 15px;}.grid-content {/* padding-top: 15px; */border-radius: 4px;min-height: 36px;background: #fff;}.bg-purple {/* background: #dddfe6; */width: 100%;height: 55px;line-height: 55px;font-size: 12px;/* font-weight:800; */text-align: center;border: 1px solid #d3dce6;}.expClas{float: right;position: initial;margin-top: 30px;}.footCenter{text-align: center;} /deep/.el-autocomplete-suggestion{display: inline-table; } .width100{width: 100%;} .center{width: 700px;margin: 0 auto;padding-top: 20px;padding-bottom: 20px; } .footerBtn{position: fixed;bottom: 0;right: 0;z-index: 9;width: calc(100%);-webkit-transition: width 0.28s;transition: width 0.28s; } .bg{background: #fff;} .pd20{padding: 15px;padding-right: 0;} /style

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

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

相关文章

江西网站设计团队wordpress 不显示主题

在日常Mysql和Oracle数据库使用时,经常使用到查看表、索引等信息,记录下来,方便备查。 MySQL 主要是使用 information_schema 信息表; Oracle 主要是使用 各种视图,如user_ind_columns。 一、查看所有表 MySQL查看表…

百度网站联盟电商网站建设方案模板下载

namedtuple(具名元组) namedtuple是tuple的升级,目的是解决元组内部的数据进行命名的问题,为了说明namedtuple的优点,我们先看一下tuple的例子,如下代码,声明了课程的元祖,但是元组中两项内容没有说明,如果其他人看到代码不知道意思是什么 course = ("Python教程…

Natural Language Processing

NLP before LLM Context-free Grammar A context-free grammar (CFG) contains a set of production rules, which are rules saying how each nonterminal can be replaced by a string of terminals and non-termina…

东莞做企业宣传网站wordpress调用post的发布时间

1.基本使用 2.参数和返回值 函数里只有一行代码 log没有返回值,所以是undefined 结果为 Hello Demo undefined 箭头函数: 在函数作为另外一个函数参数的时候,适合用箭头函数 3.箭头函数的this 返回值都是window 返回值,一…

美橙互联建站网页制作基础教程第二章

Configuration 作用 Configuration 注解的核心作用是把一个类标记为 Spring 应用上下文里的配置类。配置类就像一个 Java 版的 XML 配置文件,能够在其中定义 Bean 定义和 Bean 之间的依赖关系。当 Spring 容器启动时,会扫描这些配置类,解析其…

网站上传不了北海网站建设服务商

一、OCPP协议介绍 OCPP的全称是 Open Charge Point Protocol 即开放充电点协议, 它是免费开放的协议,该协议由位于荷兰的组织 OCA(开放充电联盟)进行制定。Open Charge Point Protocol (OCPP) 开放充电点协议用于充电站(CS)和任何…

中国太空网站做网站还是网页设计

1.理解用户级线程 我们前面用到的所有跟线程有关的接口全部都不是系统直接提供的接口,而是原生线程库pthread提供的接口。我们前面谈到了由于用户只认线程,而linux操作系统是通过用轻量级进程模拟线程,并不是真正的线程,所以linu…

南京华典建设有限公司网站专门做旅游的网站有哪些

Broker内存映射机制与高效磁盘 RocketMQ在存储涉及中通过内存映射、顺序写文件等方式实现了高吞吐。 RocketMQ的基本数据结构: CommitLog:RocketMQ对存储消息的物理文件的抽象实现,也就是对物理CommitLog文件的具体实现。MappedFile:CommitLog文件在内存中的映射文…

邢台网站制作哪里做什么是互联网公司

jar命令格式:jar {c t x u f }[ v m e 0 M i ][-C 目录]文件名其中{ctxu}这四个参数必须选选其一。[v f m e 0 M i ]是可选参数,文件名也是必须的。所有的参数说明:-c 创建一个jar包-t 显示jar中的内容列表-x 解压jar包-u 添加文件到jar包中-…

Python 在自动化与运维中的价值与实践

一、引言 ⚡ 在信息化时代,自动化与运维已经成为企业 IT 基础设施的核心组成部分。从服务器管理到应用部署,从日志分析到故障排查,自动化能够显著提升效率,降低人工操作的失误率。Python 作为脚本语言起家,凭借其…

行政机关单位网站建设要求房地产市场低迷

目录 Redis - 概述 使用场景 如何安装 Window 下安装 Linux 下安装 docker直接进行安装 下载Redis镜像 Redis启动检查常用命令 Redis - 概述 redis是一款高性能的开源NOSQL系列的非关系型数据库,Redis是用C语言开发的一个开源的高键值对(key value)数据库,官方提供测试…

Postgresql17增量备份demo

#include <iostream> #include <string> #include <vector> #include <filesystem> #include <chrono> #include <iomanip> #include <sstream> #include <cstdlib> …

Nodejs install

C compiler installsudo apt-get update sudo apt-get install build-essentialdownload source codetar xf node-v22.19.0.tar.xz cd node-v22.19.0 sudo ./configure sudo make sudo make installnode --version

泉州网站关键词排名做网站什么主题好做

---恢复内容开始--- 操作标签 样式操作 样式类 addClass();//添加指定的CSS类名。 removeClass();//移除指定的类名. hasClass();//判断样式不存在 toggleClass();//切换css类名&#xff0c;如果有就移除&#xff0c;如果没有就添加 示例&#xff1a;开关灯和模态框 CSS css(&q…

连云港做网站制作首选公司seo网站优化推广怎么样

问题&#xff1a; 因为要测试一些东西&#xff0c;所以必须有中文数据来做支撑&#xff0c;之前用的架构是x86&#xff0c;现在一个服务器的架构为arrch64&#xff0c;下列编码都挨个都进行声明&#xff0c;但是无法解决问题&#xff0c;总是报错 # -*- coding: gbk -*- # -*…

河南省建设安全监督站的网站做章网站

学习目的 Boost 的学习目的&#xff1a; 因为从知乎和CSND上根据了解内容来看&#xff0c;Boost作为一个历史悠久的开源库&#xff0c;已经脱离了一个单纯的库的概念了&#xff0c;他因庞大的涉及面应当被称之为库集。 并且&#xff0c;因为boost库优秀的试用反馈和开发人员的…

工信部申诉备案网站电脑显示无法运行wordpress

DiffBIR 发表于2023年的ICCV&#xff0c;是一种基于生成扩散先验的盲图像恢复模型。它通过两个阶段的处理来去除图像的退化&#xff0c;并细化图像的细节。DiffBIR 的优势在于提供高质量的图像恢复结果&#xff0c;并且具有灵活的参数设置&#xff0c;可以在保真度和质量之间进…

网站集约化建设探讨广告制作与设计专业

文章目录 1. Unsafe Filedownload1.1 Unsafe Filedownload1.1.1 源代码分析1.1.2 漏洞防御 1.2 不安全的文件下载防御措施 1. Unsafe Filedownload 不安全的文件下载概述&#xff1a; 文件下载功能在很多web系统上都会出现&#xff0c;一般我们当点击下载链接&#xff0c;便会…

尚品本色木门网站是哪个公司做的ui培训班多少钱

1、报文首部 HTTP协议的请求和响应必定包含HTTP首部&#xff0c;它包括了客户端和服务端分别处理请求和响应提供所需要的信息。报文主体字儿是所需要的用户和资源的信息都在这边。  HTTP请求报文组成 方法&#xff0c;URL&#xff0c;HTTP版本&#xff0c;HTTP首部字段 HTTP响…

ipad怎么制作网站艺术品商城网站开发

目录 1. loading 提示框 1. 1 wx.showLoading()显示loading提示框 1.2 wx.hideLoading()关闭 loading 提示框 2. showModal 模态对话框 3. showToast 消息提示框 小程序提供了一些用于界面交互的 API&#xff0c;例如&#xff1a;loading 提示框、消息提示框、模态对…