08 2020 档案

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