当前位置: 首页 > news >正文

长春网页设计培训appstore关键词优化

长春网页设计培训,appstore关键词优化,网站免费建站方法,海原电商网站建设功能需求: 列表进行批量查询,需要对输入的值做提交校验,分三种情况: 若部分字符串有误,部分字符串需要变更字体颜色做提示,再次点击确认则对部分正确数据执行批量查询 若全部数据有误则变更字体颜色做提示&…

功能需求:

列表进行批量查询,需要对输入的值做提交校验,分三种情况:
若部分字符串有误,部分字符串需要变更字体颜色做提示,再次点击确认则对部分正确数据执行批量查询
若全部数据有误则变更字体颜色做提示,再次点击确认查询为空
若全部数据正确则直接执行批量查询

需要变更字体颜色做提示的情况分三种:
一种为重复数据
一种为未通过校验数据
一种为既没有通过校验又重复的数据

知识点:

contenteditable:contenteditable为true可编辑元素内容

实现:

<el-button type="primary" :size="$formSize" @click="handleBatchQuery">批量查询</el-button><!--批量查询-->
<el-dialog title="批量查询" :visible.sync="batchQuery" width="600px"><div v-if="batchQuery" id="editor" class="editor" ref="editor" contenteditable="true" @click="showInput=true"><span v-if="!showInput" class="uninput">手动输入多个ICCID或设备id,以换行符分隔,如:<br/>94816c8ded8f<br/>94816c8ded8f</span></div><div slot="footer" class="dialog-footer"><el-button @click="cancelQuery">取消</el-button><el-button type="primary" @click="submitQuery">确定</el-button></div>
</el-dialog>
import request from "@/utils/request";
export default {data(){return{searchForm:{}batchQuery:false,showInput:false,queryInput:'',oldQueryInput:[],resultList:[],once:false,}},methods:{//批量查询handleBatchQuery(){this.showInput=falsethis.batchQuery=truethis.queryInput=undefinedthis.searchForm.batchStr=undefined //查询条件this.oldQueryInput=[]this.once=false},//取消批量查询cancelQuery(){this.showInput=falsethis.batchQuery=falsethis.queryInput=undefinedthis.searchForm.batchStr=undefinedthis.oldQueryInput=[]this.once=falsethis.$refs.editor.innerHTML=''},//提交批量查询submitQuery(){//无填写内容有提示语时确认if(this.$refs.editor.innerHTML.indexOf('手动输入多个ICCID或设备id')!=-1){this.handleQuery()this.batchQuery=falsereturn}this.queryInput=this.$refs.editor.innerText.split(/[(\r\n)\r\n]+/).filter(item=>item)//填写内容超过100条时确认if(this.queryInput.length>100){this.$message.warning('批量查询数据数量不能超过100条')this.batchQuery=truethis.once=falsereturn}//无填写内容无提示语时确认if(this.queryInput.length===0){this.handleQuery()this.batchQuery=falsereturn}let batchList=this.queryInputif(!this.once){this.oldQueryInput=this.queryInput}else{this.oldQueryInput=Array.from(new Set(this.oldQueryInput.filter(item=>!this.resultList.includes(item))))}let batchStr=this.oldQueryInput.join(',');//联调校验接口request({url: `接口路径`,method: 'post',data: {batchStr:batchStr},}).then((res) => {if (res.code === "200") {this.resultList=res.data || []this.once=trueif(this.resultList.length===0){this.batchQuery=falsethis.searchForm.batchStr=this.oldQueryInput.join(',');this.handleQuery()this.$refs.editor.innerHTML=''this.showInput=false}else{this.batchQuery=truelet repeat=[]for (let i = 0; i < batchList.length; i++) {if (batchList.indexOf(batchList[i]) !== i) {repeat.push(batchList[i]);}}batchList=batchList.map(item=>{if(repeat.includes(item)&&!this.resultList.includes(item)){return item=`<div style="color:red">${item+',数据重复'}</div>`}else if(this.resultList.includes(item)&&!repeat.includes(item)){return item=`<div style="color:red">${item+',无结果'}</div>`}else if(repeat.includes(item)&&this.resultList.includes(item)){return item=item=`<div style="color:red">${item+',无结果且数据重复'}</div>`}else{return item=`<div>${item}</div>`;}})this.$refs.editor.innerHTML=batchList.join('\n')}}})},}
}
.editor{width: 100%;height: 150px;overflow: auto;border: 1px solid #dcdfe6;
}
.uninput{color: #dcdfe6;color: #c0c4cc;line-height: 20px;
}

效果:
在这里插入图片描述
在这里插入图片描述

当文字颜色变更提示后,再次点击确认后只会查询正确的(包含数据重复的)数据

http://www.yayakq.cn/news/886125/

相关文章:

  • 网站建设关键性开发工具手机网站表单页面制作
  • 网站运行维护有了源代码如何做网站
  • 网站首页尺寸网站开发周志
  • python3 网站开发实例宁波市住房和城乡建设培训中心网站
  • 磁力链seo网站优化公司
  • 宝安哪有网站建设好用的免费crm
  • 黄金网站app免费视频下载浦东注册公司流程和费用
  • 桂阳网站建设企业网站托管套餐
  • 广州市建设企业网站哪家好深圳公司做网站
  • 石家庄商城网站制作h5网站建站
  • 网站开发税率税种wordpress 影楼主题
  • 网站建设和seo讲师要求wordpress签到领积分
  • wordpress rss教程网站优化软件下载
  • 无锡网站建设推广服务郑州建网站的公司
  • 一个完整的网站 技术WordPress嵌入文章
  • 网站 多语购物网站简介
  • 网站研发流程如何做网站淘客推广
  • 苏州做网站公司有哪些天河建设网站设计
  • 包装设计网站资源优质的杭州网站优化
  • 计算机网站开发要考什么证慈溪做无痛同济 amp 网站
  • 中国的网站建设数据分析php开发网站怎么做
  • 汕头网站设计怎么做政务服务网站建设标准
  • 网站开发后端工资多少中职学校网站建设方案
  • 网站模板的使用网站推广的一般方式
  • 俄语网站设计建设银行哈尔滨分行网站
  • 给网站做seo诊断大连旅顺景点
  • 手机做服务器建网站sogou网站提交
  • 教育类网站模板网站开发 需要用到什么软件有哪些
  • 手机网站建设一般要多少钱资讯门户类网站
  • 网站的漂浮广告怎么做百度免费咨询