摘要: 希望帮助新手理解。 首先,文档已经有了模板,其次就是有些新手会不理解怎么用。 代码模板中需要修改的地方我注释一下。然后再写一个我自己使用的贴出来。 layui.use('flow', function(){ var $ = layui.jquery; var flow = layui.flow; f 阅读全文
posted @ 2022-10-13 15:55 糖里里 阅读(1958) 评论(0) 推荐(0) 编辑
摘要: html部分 <!--删除提示框--> <div class="delediv" style="display: none"> <div class="deleheader"> <label style="margin: 5px;">提示信息</label> <div style="float: r 阅读全文
posted @ 2022-07-04 16:20 糖里里 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 后台通过pagehelper插件做的分页返回分页的固定格式 分页js 1 //设置分页 2 function setPage(data){ 3 $("#pageNum").val(data.pageNum)//当前页面 4 $("#total").text("总共"+data.total+"条记录" 阅读全文
posted @ 2022-04-16 14:43 糖里里 阅读(174) 评论(0) 推荐(0) 编辑
摘要: pom文件中先引入lib文件夹下的jar <dependency> ... <systemPath>${project.basedir}/libs/jar包名</systemPath> </dependency> <build> <plugins> <plugin> ..... <configura 阅读全文
posted @ 2020-07-21 09:46 糖里里 阅读(309) 评论(0) 推荐(0) 编辑
摘要: parent.$("#tableId").bootstrapTable('refresh'); 阅读全文
posted @ 2020-07-06 16:37 糖里里 阅读(957) 评论(0) 推荐(0) 编辑
摘要: $("#tableId").bootstarpTable('refresh'); 再第几页修改值,执行后数据刷新并且展示在当前页 阅读全文
posted @ 2020-06-04 21:26 糖里里 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 引入jar包 activation.jar axis.jar commons-discovery-0.2.jar commons-loggin-1.0.4.jar jaxrpc.jar mail.jar wsdl4j-1.5.1.jar 代码: // 提供的接口以及参数 //public Strin 阅读全文
posted @ 2020-06-01 15:26 糖里里 阅读(169) 评论(0) 推荐(0) 编辑
摘要: ES分页查询,想偷懒,数据超过一万多一些可以设置一下max_result_window Map<String,String> params = Collections.singleMap("pretty","true"); String json = "{" +"\"index\":{" +"\"m 阅读全文
posted @ 2020-05-09 16:58 糖里里 阅读(1283) 评论(0) 推荐(0) 编辑
摘要: 1 ServletRequestAttributes att=(ServletRequestAttributes)RequestContextHolder.getRequestAttributes(); HttpServletRequest request = att.getRequest(); r 阅读全文
posted @ 2020-05-08 15:43 糖里里 阅读(1402) 评论(0) 推荐(0) 编辑
摘要: mui.init() mui.ready(function() { var map = new BMap.Map("container"); // 创建地图实例 var point = new BMap.Point(116.404, ... 阅读全文
posted @ 2019-09-24 12:41 糖里里 阅读(178) 评论(0) 推荐(0) 编辑