随笔分类 -  js

1 2 3 4 5 ··· 10 下一页
摘要:<template> <div> <el-upload ref="upload" :action="action" :limit="5" :file-list="fileList" :on-exceed="handleExceed" :on-remove="handleRemove" :on-suc 阅读全文
posted @ 2022-12-15 14:44 abcByme 阅读(573) 评论(0) 推荐(0) 编辑
摘要:<template> <div> <p>关联房源</p> <div style="margin-left: 100px"> <div> <div class="t-head"> <div> <span>表具编号:{{ infoObj.meterNo }}</span> <span>表具类型:{{ M 阅读全文
posted @ 2022-12-09 11:11 abcByme 阅读(12) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="mapContainer"> <!-- <div id="tMap" /> --> <div id="tMap" ref="tMap" /> </div> </template> <script> import { TDIMap, BaiduMap } 阅读全文
posted @ 2022-12-02 09:55 abcByme 阅读(96) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="mapContainer"> <!-- <div id="tMap" /> --> <div id="tMap" ref="tMap" /> </div> </template> <script> import { TDIMap, BaiduMap } 阅读全文
posted @ 2022-12-02 09:54 abcByme 阅读(147) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="mapContainer"> <!-- <div id="tMap" /> --> <div id="tMap" ref="tMap" /> </div> </template> <script> import { TDIMap, BaiduMap } 阅读全文
posted @ 2022-12-02 09:54 abcByme 阅读(188) 评论(0) 推荐(0) 编辑
摘要:const validatelicensePlate = (rule, value, callback) => { if (!value) { callback(new Error("请输入车牌号码")); } else { let dvalue = value.toLocaleUpperCase( 阅读全文
posted @ 2022-12-02 09:49 abcByme 阅读(62) 评论(0) 推荐(0) 编辑
摘要:d变成dd let d = { currentMonth: { "2022-11-01": 11, "2022-11-02": 43, "2022-11-03": 53, "2022-10-05": 23, }, lastMonth: { "2022-10-01": 4, "2022-10-04": 阅读全文
posted @ 2022-11-28 17:04 abcByme 阅读(93) 评论(0) 推荐(0) 编辑
摘要:来自:https://www.jb51.net/article/245381.htm 侵删 // index.js // 获取应用实例 const app = getApp() Page({ data: { urlcode: "", srcUrl: "https://www.wyy-supor.co 阅读全文
posted @ 2022-11-22 14:41 abcByme 阅读(144) 评论(0) 推荐(0) 编辑
摘要:<template> <view class="content"> <u-navbar :title="title" :is-back="false" back-icon-color="#000" :background="background" :border-bottom="false" tit 阅读全文
posted @ 2022-11-22 09:33 abcByme 阅读(57) 评论(0) 推荐(0) 编辑
摘要:<template> <div> 房间列表: <el-input placeholder="输入关键字进行过滤" v-model="filterText" size="mini" style="width: 180px" clearable > </el-input> <!-- <el-tree r 阅读全文
posted @ 2022-11-16 11:09 abcByme 阅读(43) 评论(0) 推荐(0) 编辑
摘要:<el-cascader :props="props" :options="options" size="small" style="width: 200px" v-model="RoomAbout" clearable @change="getcascader" ></el-cascader> R 阅读全文
posted @ 2022-11-16 11:07 abcByme 阅读(125) 评论(1) 推荐(0) 编辑
摘要:<template> <div class="batchAddCustomer-container"> <p class="tit-p">水电管理</p> <div class="downtext">下载模板</div> <div class="text"> 注意事项: <div> <p>1、表具内 阅读全文
posted @ 2022-11-14 15:31 abcByme 阅读(336) 评论(0) 推荐(0) 编辑
摘要:<template> <div> <!-- 表具报停 --> <Drawer :title="type == 2 ? '表具二维码' : '表具报停'" :closable="false" v-model="DrawerShow" width="50%" > <div> <div class="t- 阅读全文
posted @ 2022-11-11 17:04 abcByme 阅读(19) 评论(0) 推荐(0) 编辑
摘要:<template> <ModuleBox2 title="数据趋势图" bgType="2" :cityShow="true" moduleType="sjqs" :styleObj="styleObj" > <div class="echarts-box"> <lineMore2 :isSmoo 阅读全文
posted @ 2022-10-28 17:43 abcByme 阅读(9) 评论(2) 推荐(0) 编辑
摘要:var allArray = JSON.parse(JSON.stringify(copy_data)) //原数组 allArray.forEach((value , index) => { that.$set(value, 'goodProductNum', ' 12') //给数组里面的每个行 阅读全文
posted @ 2022-10-28 14:44 abcByme 阅读(48) 评论(0) 推荐(0) 编辑
摘要:// 获取当前日期的前7天 getDays(){ let oneDay = 24 * 60 * 60 * 1000 let endTime = new Date(Date.now() - oneDay) endTime = this.formatterDate(endTime,"yyyy-MM-dd 阅读全文
posted @ 2022-10-25 09:57 abcByme 阅读(1915) 评论(0) 推荐(0) 编辑
摘要:<template> <div :style="{ width: width, height: height, backgroundImage: imgsbg }" class="base-popout" v-show="isShow" > <div class="device-info-box-h 阅读全文
posted @ 2022-10-19 15:43 abcByme 阅读(13) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="newsbox"> <div class="h146" @click="listClick($event)"> <vueSeamlessScroll :data="dataList" :class-option="classOption" class=" 阅读全文
posted @ 2022-10-19 15:42 abcByme 阅读(58) 评论(0) 推荐(0) 编辑
摘要:<template> <div :style="{ width: boxWidth, height: boxHeight, backgroundImage: imgsbg }" :class="[bgType == '1' ? 'module-box' : 'module-box-2']" clas 阅读全文
posted @ 2022-10-19 15:13 abcByme 阅读(15) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 10 下一页