li { width:200px; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow: hidden; }div { width:200px; white-space:nowrap; tex Read More
SELECT GROUP_CONCAT(name) FROM sys_dict WHERE type = 1; Read More
public static void main(String[] args){ SpringApplication.run(Application.class, args); // String dateString = "2020-07-08"; SimpleDateFormat sdf=new Read More
1.让菜单生成不经过动态路由 修改 src/router/index.js import Vue from 'vue' import Router from 'vue-router' import { constantRouterMap, asyncRouterMap } from '@/confi Read More
<template> <div class="home" id="home"> <Row :gutter="14"> <Col span="6"> <div class="row-div1"> <Flex direction="row" style="width: 100%;height: 100% Read More
<Row :gutter="20"> <Col style="float: left;width: 20%;"> <div style="border: 1px solid;"> 1111 </div> </Col> <Col style="float: left;width: 20%;"> <di Read More
renderTime(date) { var dateee = new Date(date).toJSON(); return new Date(+new Date(dateee) + 8 * 3600 * 1000).toISOString().replace(/T/g, ' ').replace Read More
Date now=new Date(); //yyyy年MM月dd日 HH时mm分ss秒 HH为24小时 hh为12小时 //yy/MM/dd HH:mm //yyyy-MM-dd HH:mm:ss == now.toLocaleString(); 格式可以自由组合,不受年月日 : 时分限制等限制 Read More