2023年9月20日
摘要: 一、默认插槽 1.父组件中没有填坑内容时 在子组件中用slot占个位置 <template> <div>子组件: <slot>父组件中没有填坑内容时的默认展示</slot> </div> </template> 父组件:Children中没有填坑内容 <template> <div> <Childr 阅读全文
posted @ 2023-09-20 10:44 zy89898976 阅读(19) 评论(0) 推荐(0) 编辑
  2023年9月12日
摘要: 调用接口未接通时,可以用Promise.resolve()或者Promise.reject()模拟成功和失败的返回 eg:正常写法 export function getData() { return request({ method:'get', url:'xxx' }) } 模拟成功 expor 阅读全文
posted @ 2023-09-12 11:38 zy89898976 阅读(51) 评论(0) 推荐(0) 编辑
  2023年9月6日
摘要: 目的:写一个悬浮框,让这个悬浮框跟随鼠标移动 问题:当设置了left为鼠标位置clientX后,页面中实际的悬浮框left并不等于clientX,甚至随着鼠标往右移的时候,悬浮框与鼠标之间的距离越来越远。 首先,我们需要知道CSS中position的定义。 1.static: 默认值,静态定位,表示 阅读全文
posted @ 2023-09-06 14:03 zy89898976 阅读(105) 评论(0) 推荐(0) 编辑
  2023年8月14日
摘要: 1.map()函数 (1)map()适用于映射新的数组 let arr1 = [1, 4, 9, 16]; let NewArr = arr1.map((x) => x * 2); console.log(NewArr); // [2, 8, 18, 32]; 但是,当用if条件返回时,会出现und 阅读全文
posted @ 2023-08-14 10:43 zy89898976 阅读(89) 评论(0) 推荐(0) 编辑
  2023年8月10日
摘要: 第一步:安装echarts,再引入echarts 执行npm install echarts 在main.js中引入后,在对应使用图标的vue文件中也引入echarts //main.js import echarts from 'echarts' Vue.prototype.$echarts = 阅读全文
posted @ 2023-08-10 14:47 zy89898976 阅读(980) 评论(0) 推荐(0) 编辑
  2023年7月25日
摘要: 第一种:用expand属性 <easy-custom-table rowKey="id" :expand="expand" //添加expand属性,属性值为一个对象 :tableData="tableData" :columns="columns" :maxHeight="tableHeight" 阅读全文
posted @ 2023-07-25 11:11 zy89898976 阅读(48) 评论(0) 推荐(0) 编辑
  2023年7月24日
摘要: export function xxx(data) { return request({ method:'post', url:'xxx', data:data //data是添加到请求体bady(请求参数为body)中的,用于post请求 }) } export function xxx(para 阅读全文
posted @ 2023-07-24 09:50 zy89898976 阅读(290) 评论(0) 推荐(0) 编辑
  2023年7月19日
摘要: 正常情况下,表格中想要展开某一行只能通过点击最前面的小箭头,如果想要实现点击某一行后直接展开,那么首先,就要先了解这几个属性: row-key的值只能是表格中某一列的key,而expand-row-keys数组里保存的则是所有展开行的row-key值,假如设置row-key=“id”,那么expan 阅读全文
posted @ 2023-07-19 16:32 zy89898976 阅读(1573) 评论(0) 推荐(0) 编辑
  2023年6月26日
摘要: 如果想要获取到arr数组对象中key为name的属性,需要用到引号 let arr = [ { name: '1', prop: '123' }, { name: '2', prop: '111' } ] arr.forEach(item => { console.log('123', item[' 阅读全文
posted @ 2023-06-26 10:09 zy89898976 阅读(159) 评论(0) 推荐(0) 编辑
  2023年6月21日
摘要: let text = 'key' let obj = { [text]: 'value' } console.log(obj) // key: value 阅读全文
posted @ 2023-06-21 08:38 zy89898976 阅读(342) 评论(0) 推荐(0) 编辑