摘要:
说明:这里使用的代码是 vue3 + TypeScript,下面是全部代码: <template> <div> <el-dialog :title="title" v-model="open" width="500px" :close-on-click-modal="false" // 鼠标点击弹窗 阅读全文
摘要:
环境:vue3 + springboot + mybatis + mysql 场景:后端返回的时间与前端接收到的时间,小时不一致, 时间格式是古巴标准时间:"CST" 解决:在 Bean 中时间字段上增加注解: @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", 阅读全文
摘要:
text-overflow: -o-ellipsis-lastline; overflow: hidden; //溢出内容隐藏 text-overflow: ellipsis; //文本溢出部分用省略号表示 display: -webkit-box; //特别显示模式 -webkit-line-cl 阅读全文