08 2020 档案
摘要:需要实现的效果 用到了俩HTML标签fieldset和legend标签 <fieldset>标签会在相关表单元素周围绘制边框 <legend>标签为<fieldset>元素定义标题 <fieldset class="box"> <legend>标题</legend> </fieldset> //cs
阅读全文
摘要:在api下创建一个新的文件如test.js,里面放所有的请求 const baseURL = 'https://xxx.com/' import axios from 'axios' import qs from 'qs'; export function tabdatas(ty=1) { retu
阅读全文
摘要:搜索框: <input type="text" v-model="input_cont" placeholder="请输入搜索关键字" /> 其次,要显示的数据使用v-html绑定方法名传递两个参数:(需要标红的数据,搜索框的内容) <div> <span v-html="redKeyword(it
阅读全文