摘要:
this.$router.push({ path: '/home', query: { params: JSON.stringify({ name: 'lokka', age: 18 }) } }); let params = JSON.parse(this.$route.query.params) 阅读全文
摘要:
思路及做法: 鼠标移动到父盒子的时候, 里面所有的子盒子的样式都发生变化的, 只需要直接在hover后面加上空格, 并且加上子盒子的类名 ,里面再写其他样式 .父盒子的类名:hover .子盒子的类名 { //这里写鼠标移入到父盒子里面,子盒子要发生的样式变化 } 温馨提示,遇到父盒子里面的子盒子过 阅读全文
摘要:
handel(ide) { let that = this; console.log(that.goodCaseList); let detailData = that.goodCaseList.find((v) => { return v.id == ide; }); 阅读全文
摘要:
1、params 方式传递和接收参数 //传参 this.$router.push({ name: 'checkDetailInfo', params:{ fkdNum:fkdNum, jyayStr:jyayStr, defaultStr:defaultStr, detailViewBtn:det 阅读全文