摘要: <template> <!-- 这是新版的相对应的颜色列表的UI --> <div class="bllockListShow"> <div class="pieList" v-for="(item,index) in dataArr" :key="index" @click="clickUptow 阅读全文
posted @ 2024-01-29 10:34 xuelin 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 组件代码: <template> <!-- 饼图 --> <div :id="histogramId" v-bind:style="{height:height,width:width}"></div> </template> <script src="https://unpkg.com/echar 阅读全文
posted @ 2024-01-29 10:32 xuelin 阅读(24) 评论(0) 推荐(0) 编辑
摘要: router.beforeEach((to, from, next) => { NProgress.start() if (getToken()) { // 三级菜单组件无法缓存问题 if (to.matched && to.matched.length > 2) { to.matched.spli 阅读全文
posted @ 2024-01-03 15:26 xuelin 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、安装生成二维码的插件 vue-qr yarn add vue-qr // or npm install vue-qr --save 2、安装用于将html代码生成图片的插件 html2canvas yarn add html2canvas // or npm install html2canva 阅读全文
posted @ 2023-11-16 17:46 xuelin 阅读(127) 评论(0) 推荐(0) 编辑
摘要: if (lastUrl.name) { //我们后端很奇怪有时候是个对象属性,有时候是个string window.open(url + `?attname=${lastUrl.name}`); } else { window.open(url); } 阅读全文
posted @ 2023-01-13 10:01 xuelin 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //已push git reset --hard 0a8e4c2be668ebe38170279b74e17bd5575a211d 阅读全文
posted @ 2022-12-13 11:39 xuelin 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 地址:https://dafrok.github.io/vue-baidu-map/#/zh/overlay/info-window 阅读全文
posted @ 2022-11-11 14:53 xuelin 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_46372463/article/details/125357226 这个作者写的操作成功了 阅读全文
posted @ 2022-11-10 13:53 xuelin 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1:其实就是var声明的变量,在声明变量的前面也可以使用,但是let 就不行! 2:什么时局部作用域?就是函数内部{ }里面。 阅读全文
posted @ 2022-11-09 21:25 xuelin 阅读(19) 评论(0) 推荐(0) 编辑
摘要: ####后端也返回了第四等级,但是不想让他展示,可以这样解决只展示前三等级 // 获取room树 getRoomTreeList() { getRoomTree().then((res) => { // 只获取到单元楼节点 function handleTreeData(data, limit = 阅读全文
posted @ 2022-11-04 10:32 xuelin 阅读(29) 评论(0) 推荐(0) 编辑