Johnny-Five 数字微波传感器接入指南:基于 Sensor.Digital 的移动侦测实战
2026/9/23 10:25:20
<template><div><el-table ref="myTable":data="tableData"style="width:100%"><el-table-column prop="data"lable="日期"width="180"><template slot-scope="scope"><span v-html="renderHighlight(scope.row,'data')"></span></template></el-table-column><el-table-column prop="name"lable="姓名"width="180"><template slot-scope="scope"><span v-html="renderHighlight(scope.row,'name')"></span></template></el-table-column><el-table-column prop="address"lable="地址"width="180"><template slot-scope="scope"><span v-html="renderHighlight(scope.row,'address')"></span></template></el-table-column></el-table><el-row:gutter="20"><el-col:span="6"><el-select v-model="searchKey"placeholder="请选择"><el-option v-for="item in options":key="item.value":label="item.label":value="item.value"></el-option></el-select></el-col><el-col:span="10"><el-input v-model="searchVal"placeholder="请输入检索内容"/></el-col></el-row><el-button @click="sureBtn">确定</el-button></div></template><script>exportdefault{data(){return{tableData:[{data:'2016-05-22',name:'张三',address:'上海市普陀区金沙江路1528弄'},{data:'2016-05-21',name:'李四',address:'上海市普陀区金沙江路1527弄'},{data:'2016-05-20',name:'王五',address:'上海市普陀区金沙江路1526弄'},{data:'2016-05-19',name:'赵六',address:'上海市普陀区金沙江路1525弄'},{data:'2016-05-18',name:'小明',address:'上海市普陀区金沙江路1524弄'},{data:'2016-05-17',name:'小李',address:'上海市普陀区金沙江路1523弄'},{data:'2016-05-16',name:'小赵',address:'上海市普陀区金沙江路1522弄'},],searchKey:'',searchVal:'',realSearchKey:'',realSearchVal:'',}},methods:{sureBtn(){this.realSearchKey=this.searchKeythis.realSearchVal=this.searchVal},renderHighlight(row,params){if(!this.realSearchKey||!this.realSearchVal||this.realSearchKey!==params){returnrow[params]}if(row[params].includes(this.realSearchVal)){return`<span style="color:red;font-weight:bold">${row[params]}</span>`}returnrow[params]}}}</script><style scoped></style>