竖向步骤条--vant官网的例子 <van-steps direction="vertical"> <van-step v-for="item in list" :key="item.id"> <h3>姓名:{{item.name}}</h3> <p>城市:{{item.city}}</p> <p> ...
分类:
其他好文 时间:
2021-01-04 11:29:25
阅读次数:
0
a、基本选择器:#id,class,element,*; b、层次选择器:parent > child,prev + next ,prev ~ siblings c、基本过滤器选择器::first,:last ,:not ,:even ,:odd ,:eq ,:gt ,:lt d、表单选择器: :i ...
分类:
Web程序 时间:
2021-01-04 11:10:04
阅读次数:
0
现在我们解决一下属性名和字段名不一致的问题 实体类的属性如下: 1 public class User { 2 private int id; 3 private String name; 4 private String password; 5 } 接口: 1 public interface U ...
分类:
数据库 时间:
2021-01-04 11:00:31
阅读次数:
0
elasticsearch工具类 环境 jdk1.7 playframework 1.3.0 1 2 3 4 5 6 package utils; public class Order { public String id; //id public String trade_no; //业务单号 } ...
分类:
其他好文 时间:
2021-01-04 10:44:41
阅读次数:
0
一、wx.navigateTo(OBJECT) wx.redirectTo({ url: 'test?id=1' }) 二、wx.redirectTo(OBJECT) wx.redirectTo({ url: 'test?id=1' }) 三、wx.switchTab(OBJECT) wx.swit ...
分类:
微信 时间:
2021-01-04 10:37:37
阅读次数:
0
一、 前端(<a th:href="@{'/record_details/'+${record.id}}" target="_blank"></a>: <a th:href="@{'/record_details/'+${record.id}}" target="_blank"> <i><img t ...
分类:
编程语言 时间:
2021-01-04 10:36:42
阅读次数:
0
ELB单维度查询条件:{"namespace":"SYS.ELB","dimensions":[{"lbaas_instance_id":["373b1e50-a1a5-4ca2-94a1-d8fde3787e50"]}],"resourceId":"373b1e50-a1a5-4ca2-94a1- ...
分类:
其他好文 时间:
2021-01-04 10:34:38
阅读次数:
0
<select id="findIndexConfigList" parameterType="Map" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from tb_newbee_mall_index_c ...
分类:
其他好文 时间:
2021-01-04 10:33:47
阅读次数:
0
两个页面之间的跳转如果需要传参(例如需要传递当前的id),js里写 window.location.href="xxxxx?id=xx 就可以了;但是vue不一样 需要操作的是路由,需要用到 VueRouter使用之前首先要了解 $router和$route $router是一个VueRouter的 ...
分类:
其他好文 时间:
2021-01-04 10:33:13
阅读次数:
0
<body> <div id="app"> <!-- 2.监听子组件发射的事件 然后再父组件处理事件 --> <cpn @itemclick="cpnClick"></cpn> </div> <template id="cpn"> <div> <button v-for="item in categ ...
分类:
其他好文 时间:
2021-01-02 11:26:02
阅读次数:
0