摘要: 删除 node_modules操作 1.安装npm包–rimraf npm install rimraf -g 2.在cmd指令下,进入所需删除的node_modules文件夹的位置,再输入指令 rimraf node_modules window.open(location.origin + lo 阅读全文
posted @ 2021-11-04 15:53 风雪中de冲破 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 在页面上 http-request: 覆盖默认的上传行为,可以自定义上传的实现 <el-upload class="avatar-uploader" action="" :show-file-list="false" :on-success="handleAvatarSuccess" :http-r 阅读全文
posted @ 2020-12-15 14:52 风雪中de冲破 阅读(875) 评论(0) 推荐(0) 编辑
摘要: pre标签的作用 <pre> 标签可定义预格式化的文本。被包围在 <pre> 标签中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。如果想要把某一段规定好的文本格式放在HTML中,那么就要利用pre元素的特性 pre标签的作用 pre加上样式就能完美的实现了<style> pre { whi 阅读全文
posted @ 2024-11-14 11:29 风雪中de冲破 阅读(13) 评论(0) 推荐(0) 编辑
摘要: // 获取当前周日期 const getCurrentWeekDates = (type) => { let currentDate = null if (type == 'before') { currentDate = new Date(new Date(getShowDateStartOld. 阅读全文
posted @ 2024-10-31 13:25 风雪中de冲破 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 双重循环 必须要三个等 for (let i = 0; i < creatorList.value.length; i++) { creatorList.value[i].disabled = false for (let j = 0; j < formState.otherMembers.leng 阅读全文
posted @ 2024-10-31 11:23 风雪中de冲破 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 效果图: 关键方法代码: const initChartDataTwo = (scollectT, dataL) => {//给一个测试的数据 scollectT = [ "2024-10-29", "2024-10-25", "2024-10-24", "2024-10-22", "2024-10 阅读全文
posted @ 2024-10-31 11:18 风雪中de冲破 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1.效果图 代码:game.vue <template> <view class="wrap"> <!-- <img class="imgBG" src="@/static/image/hxBG.png" alt="" /> --> <image class="imgBG" mode="aspect 阅读全文
posted @ 2024-09-12 10:06 风雪中de冲破 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1.效果图 <template> <view class="wrap"> <view class="timeGame"> <text class="time">时间 {{ gameTime }}</text> </view> <view class="listWrap"> <view :class= 阅读全文
posted @ 2024-09-04 16:46 风雪中de冲破 阅读(9) 评论(0) 推荐(0) 编辑
摘要: <template> <view class="wrap"> <view class="payComplete"> <image class="img" src="@/static/image/index/6.png" /> <text class="adress">支付完成后填写</text> < 阅读全文
posted @ 2024-08-30 15:16 风雪中de冲破 阅读(5) 评论(0) 推荐(0) 编辑
摘要: js 全部数据根据搜索的数据 进行比对 包含的数据显示 let ss = [ {name: "吴梦",id: 1,}, {name: "王倩",id: 2,}, {name: "陈飘",id: 3,}, {name: "刘莎",id: 4,},{name: "吴梦2",id: 5,}, ]let d 阅读全文
posted @ 2024-08-30 14:50 风雪中de冲破 阅读(13) 评论(0) 推荐(0) 编辑
摘要: <template> <view class="wrap"> 划消:{{ sdNum }} * {{ sdNum }} <view class="btn" style="padding: 32rpx; background: pink" @click="clickBtn">点击划消按钮</view> 阅读全文
posted @ 2024-08-30 14:12 风雪中de冲破 阅读(8) 评论(0) 推荐(0) 编辑
摘要: <text>{{ item.submitTime ? transformTimeTwo( new Date(item.submitTime.replace(/\-/g, '/')).getTime(), 'minutesdd' ).replace(/\//g, '-') : '' }} </text 阅读全文
posted @ 2024-08-29 17:15 风雪中de冲破 阅读(36) 评论(0) 推荐(0) 编辑