Loading

02 2020 档案

摘要:时间日期转换工具类:SimpleDateFormat 比较时间工具类:Calendar 直接上代码: @Test public void test() throws ParseException { SimpleDateFormat df = new SimpleDateFormat("HH:mm: 阅读全文
posted @ 2020-02-21 21:07 小飞猪咯咯 阅读(178) 评论(0) 推荐(0)
摘要:参考: https://blog.csdn.net/maxiaokundage/article/details/40146981 https://blog.csdn.net/hardwin/article/details/7914610 https://blog.csdn.net/qq_424028 阅读全文
posted @ 2020-02-21 20:33 小飞猪咯咯 阅读(2891) 评论(0) 推荐(0)
摘要:转载: 版权声明:本文为CSDN博主「gzyzwx」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/gzyzwx/article/details/76039213 1、写两个div盒子,父子关系 <div c 阅读全文
posted @ 2020-02-17 21:51 小飞猪咯咯 阅读(1220) 评论(0) 推荐(0)
摘要:参考: https://www.jianshu.com/p/304c665478b8 https://biigpongsatorn.github.io/#/vue-element-loading 1、安装 npm install vue-element-loading --save 2、使用vuex 阅读全文
posted @ 2020-02-15 10:42 小飞猪咯咯 阅读(8048) 评论(0) 推荐(0)
摘要:参考:https://github.com/mgbq/nx-admin 复制以下html内容到项目的index.html中即可: <style> html, body, #app { height: 100%; margin: 0px; padding: 0px; } .chromeframe { 阅读全文
posted @ 2020-02-15 10:30 小飞猪咯咯 阅读(1271) 评论(0) 推荐(1)
摘要:参考:https://segmentfault.com/a/1190000012728854 1、index.html中引入semantic-ui的js <script src="https://cdn.jsdelivr.net/npm/semantic-ui-vue@0.10.1/dist/com 阅读全文
posted @ 2020-02-15 10:17 小飞猪咯咯 阅读(1002) 评论(0) 推荐(0)
摘要:vue代码(使用element-ui): 思路:依次遍历fileList数组,将其中的每个图片文件提取出,再加入到formdata中,因为是多文件上传,后端以文件数组的形式接受, 因此每次合并到formdata的key值都为同一值。 uploadImg() { let imgfile = new F 阅读全文
posted @ 2020-02-06 10:04 小飞猪咯咯 阅读(6924) 评论(0) 推荐(2)