摘要: 产生原因:文件响应头内容类型错误 解决方案:设置对应的响应头内容类型 const http = require('http'); const fs = require('fs'); const path = require('path'); http.createServer((req, res) 阅读全文
posted @ 2022-03-01 16:05 PromiseOne 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 解决方案:在rich-text标签上加scroll-view解决 <scroll-view scroll-y="true" style="height: 745rpx;"> <rich-text :nodes="htmlSnip"></rich-text> </scroll-view> 阅读全文
posted @ 2022-01-11 11:55 PromiseOne 阅读(1260) 评论(0) 推荐(1) 编辑
摘要: 给map组件加个view外框,设置如下样式即可 border-radius:10rpx; overflow:hidden; transform: translateY(0); 阅读全文
posted @ 2021-12-20 16:20 PromiseOne 阅读(361) 评论(0) 推荐(0) 编辑
摘要: <div class="overlay" v-if="mask" @click="closeMaskTap($event)"> <div class="mask-content" ref="maskContent"> content </div> </div> export default { da 阅读全文
posted @ 2021-10-29 16:52 PromiseOne 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 效果 <div class="hr-line-div"></div> .hr-line-div { margin: 0 auto; height: 2px; width: 1000px; background: radial-gradient(red 24%, white 100%); } 阅读全文
posted @ 2021-10-11 11:49 PromiseOne 阅读(435) 评论(0) 推荐(0) 编辑
摘要: let array1 = [ {'Num': 'A ', 'Name': 't1 '}, {'Num': 'B', 'Name': 't2'}, {'Num': 'C ', 'Name': 't3 ', age: '222'}, {'Num': 'D', 'Name': 't4 ', age: '3 阅读全文
posted @ 2021-10-08 16:16 PromiseOne 阅读(1693) 评论(0) 推荐(0) 编辑
摘要: flatten(arr) { return [].concat(...arr.map(item => { if (item.children) { let arr = [].concat(item, ...this.flatten(item.children)); delete item.child 阅读全文
posted @ 2021-10-08 15:12 PromiseOne 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 初始化所有数据 Object.assign(this.$data,this.$options.data()) 使用上面方法时,有时候this的指向会出现问题,我们可以修改this的指向 Object.assign(this.$data,this.$options.data.call(this)) 初 阅读全文
posted @ 2021-09-17 18:15 PromiseOne 阅读(981) 评论(0) 推荐(0) 编辑
摘要: <el-table ref="table" :data="tableData" style="width: 100%" border @selection-change="handleSelectionChange" @select-all="selectAll" > <el-table-colum 阅读全文
posted @ 2021-08-20 14:22 PromiseOne 阅读(815) 评论(0) 推荐(0) 编辑
摘要: <div class="content"> <div class="line"></div> <div class="txt">文字内容</div> <div class="line"></div> </div> .content { display: flex; align-items: cent 阅读全文
posted @ 2021-07-29 16:57 PromiseOne 阅读(104) 评论(0) 推荐(0) 编辑