上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页
摘要: 结果图 原型 1 <template> 2 <!-- 左右柱状图 --> 3 <div ref="rankEcharts" :style="{ height: height, width: width }" /> 4 </template> 5 <script> 6 import echarts f 阅读全文
posted @ 2021-08-25 16:32 翘中之楚 阅读(378) 评论(2) 推荐(1) 编辑
摘要: 效果图 前端 1 <template> 2 <!-- 总体情况 - 总览echarts --> 3 4 <div v-loading="loading" class="list-table" style="height: 350px;"> 5 <el-tabs v-model="counterpar 阅读全文
posted @ 2021-08-21 16:55 翘中之楚 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 原型 1 <template> 2 <div :class="className" :style="{height:height,width:width}" /> 3 </template> 4 <script> 5 import echarts from 'echarts' 6 import re 阅读全文
posted @ 2021-08-20 15:55 翘中之楚 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Collections对List集合中的数据进行排序 有时候需要对集合中的元素按照一定的规则进行排序,这就需要用到Java中提供的对集合进行操作的工具类Collections,其中的sort方法 1 package com.kaishengit; 2 3 import java.util.Array 阅读全文
posted @ 2021-08-18 16:07 翘中之楚 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-08-18 15:19 翘中之楚 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.ArrayList; 2 import java.util.List; 3 4 public class I { 5 6 public static void main(String[] args) { 7 8 List<Integer> list1 = new 阅读全文
posted @ 2021-08-13 10:06 翘中之楚 阅读(2152) 评论(0) 推荐(0) 编辑
摘要: 1.打开idea设置 ,下载 jrebel 2搜索下载jrebel 3.重启之后,在右下角有个弹窗,这时候选择enable,然后右边的侧边栏工具会弹出一个界面,总共应该有4步,第一步是展开的,点击蓝色的链接文字:click-action,表示去激活。然后就会弹出下面这个图的界面 进入https:// 阅读全文
posted @ 2021-08-09 16:15 翘中之楚 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 原型 1 <template> 2 <!-- 上下柱状图 --> 3 <div ref="overallSituation" :style="{ height: height, width: width }" /> 4 </template> 5 <script> 6 import echarts 阅读全文
posted @ 2021-08-09 16:04 翘中之楚 阅读(450) 评论(0) 推荐(0) 编辑
摘要: maven的pom <dependency> <groupId>org.apache.poi</groupId> <artifactId>ooxml-schemas</artifactId> <version>1.1</version> </dependency> <!-- https://mvnr 阅读全文
posted @ 2021-08-05 16:26 翘中之楚 阅读(468) 评论(0) 推荐(0) 编辑
摘要: mysql中常用的三种插入数据的语句: insert into表示插入数据,数据库会检查主键(PrimaryKey),如果出现重复会报错; replace into表示插入替换数据,需求表中有PrimaryKey,或者unique索引的话,如果数据库已经存在数据,则用新数据替换,如果没有数据效果则和 阅读全文
posted @ 2021-07-02 16:17 翘中之楚 阅读(1352) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 21 下一页