摘要:
vue实现3d词云组件 <!-- * @Description: 词云组件 页面 * @Date: 2024/3/10 23:39 --> <template> <div :style="{ display: 'flex', justifyContent: 'center', border: '1p 阅读全文
posted @ 2024-08-05 10:53
毛三仙
阅读(165)
评论(0)
推荐(0)
摘要:
vue实现esc关闭div弹窗的自定义指令 弹窗是 div 实现的(非el-dialog),效果:按下esc,关闭弹窗 directive/divEscClose/divEscClose.js export default { bind: function (el, binding, vnode) 阅读全文
posted @ 2024-08-05 10:53
毛三仙
阅读(39)
评论(0)
推荐(0)
摘要:
scrollIntoView导致页面上移 解决 this.$nextTick(() => { let selectEventDom = document.querySelector(".checkClass"); selectEventDom.scrollIntoView({ behavior: ' 阅读全文
posted @ 2024-08-05 10:53
毛三仙
阅读(21)
评论(0)
推荐(0)
摘要:
vue实现弹窗的动态导入(:is="dialogName") 组件的动态挂载 弹窗aaa.vue <template> <el-dialog width="700px " v-dialog-out destroy-on-close v-if="dialogVisible" :title="title 阅读全文
posted @ 2024-08-05 10:53
毛三仙
阅读(40)
评论(0)
推荐(0)
摘要:
vue实现项目部署成功之后提示用户刷新页面 1. 项目根目录新建 version.js require("fs").writeFileSync("./public/version.txt", new Date().getTime().toString()) 2. 改写package.json中打包命 阅读全文
posted @ 2024-08-05 10:35
毛三仙
阅读(295)
评论(0)
推荐(1)
摘要:
js获取未来n天的时间.md 2024.02.02(今天)如果传入5则获取未来5天的时间数组 [ {date: "2024-02-02,"isToday: true,week: "星期五"}, {date: "2024-02-03,"isToday: false,week: "星期六"}, {dat 阅读全文
posted @ 2024-08-05 10:34
毛三仙
阅读(21)
评论(0)
推荐(0)
摘要:
js动态构建属性名并访问其对象属性(动态属性访问) 在开发中有时会遇到这种情况:你写了很多的函数,写完发现他们的操作逻辑都是相同的,但是原始数据不同,如: /* 获取 区域,道路 拥堵指数对应的色标 */ makeCongestionColor(num) { let outColor = '#fff 阅读全文
posted @ 2024-08-05 10:34
毛三仙
阅读(53)
评论(0)
推荐(0)
摘要:
HBuilder 新建的项目实现全局格式化 npm install prettier --save-dev package.json中配置如下命令 "scripts": { "format": "prettier --write "pages//*.js" "common//.js" "pages/ 阅读全文
posted @ 2024-08-05 10:34
毛三仙
阅读(39)
评论(0)
推荐(0)
摘要:
el-slider实现一个能拖动的时间范围选择器 <template> <div style="width: 200px"> <el-slider v-model="workTime" :step="5" :max="1435" :marks="marks" :format-tooltip="for 阅读全文
posted @ 2024-08-05 10:34
毛三仙
阅读(202)
评论(0)
推荐(0)
摘要:
el-date-picker周选择器获取选择的日期范围 <el-date-picker v-model="formData.date" type="week" format="yyyy 第 WW 周" placeholder="选择周" @change="weekChange" > </el-dat 阅读全文
posted @ 2024-08-05 10:34
毛三仙
阅读(496)
评论(0)
推荐(0)

浙公网安备 33010602011771号