摘要: 一、递归计算每层数据,上层数据是下层数据之和 1、returnList对应的是要返回到前端的组织树; vehicleList对应的是所有的车辆信息,需要将车辆信息挂在组织上,并结算每层组织上车辆在线数据以及总数 // 将车辆信息挂在组织树上,并且返回对应的车辆信息private List<SubRe 阅读全文
posted @ 2024-05-22 17:05 flyComeOn 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 一、flv.js 1、 flv.js 来在 HTML5 视频元素上播放 FLV 视频流。需要先安装flv.js npm install --save flv.js 2、显示视频的位置 <video id="videoElement" controls class="video" muted /> 3 阅读全文
posted @ 2024-05-22 16:57 flyComeOn 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 一、H5视频播放器开发包地址 1、https://open.hikvision.com/download/5c67f1e2f05948198c909700?type=20 2、内容 3、主要用demo里面的文件 4、demo可以用来测试获取的视频流是不是可以播放,如果用vue开发过,应该有安装的no 阅读全文
posted @ 2024-05-22 16:35 flyComeOn 阅读(2673) 评论(0) 推荐(0) 编辑
摘要: 一、后端配置支持分页控件 1、 在pom.xml添加上依赖 <!-- Mybatis-Plus --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <v 阅读全文
posted @ 2024-03-26 13:50 flyComeOn 阅读(607) 评论(0) 推荐(0) 编辑
摘要: 一、安装插件 1、npm install vue-print-nb --save 二、引入Vue项目 在main.js中添加-- 全局挂载 import Print from 'vue-print-nb' Vue.use(Print) 三、前端代码 一、操作项中的打印按钮 <span title=" 阅读全文
posted @ 2024-03-20 16:46 flyComeOn 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 一、前端图片 <el-form-item label="案件文件"> <el-image fit="contain" v-for="(item,index) of fileList" :key="index" :src="item.url" :preview-src-list="getImgList 阅读全文
posted @ 2024-03-19 11:07 flyComeOn 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 一、前端列表多选 <el-table ref="multipleTable" :data="tableData" stripe style="width: 99%;margin-bottom: 10px;" :height="$publicjs.tableHeight" @selection-cha 阅读全文
posted @ 2024-03-19 11:02 flyComeOn 阅读(1021) 评论(0) 推荐(0) 编辑
摘要: 一、前端 <el-row> <el-form-item label="上传文件" props="fileList"> <el-upload ref="upload" action="#" list-type="picture-card" multiple accept="image/jpeg, im 阅读全文
posted @ 2024-03-19 10:56 flyComeOn 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 一、根据条件查询结果数据 // 查询每个分子公司的数据 private List<OrgDeptCountData> getCompanyList( Map<String,Object> map){ // 获得公司记录 List<BusiGunAcessRecordRealEx> scgyList 阅读全文
posted @ 2024-01-31 11:28 flyComeOn 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 一、类型转换之间的工具类 package com.hengan.citicPlatGunNew.utils; import org.apache.commons.compress.utils.Lists; import org.springframework.beans.BeanUtils; imp 阅读全文
posted @ 2024-01-31 10:48 flyComeOn 阅读(10) 评论(0) 推荐(0) 编辑