07 2020 档案
摘要:一、collection 标签:用于定义关联的list集合类型的封装规则 例子: public class CategoryVO { private Integer id; private String name; private String type; private Integer fathe
阅读全文
摘要:要监控到所有的service,就需要用到spring的aop插件 一、pom.xml引入aop插件 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifa
阅读全文
摘要:WUX https://wux-weapp.github.io/wux-weapp-docs/#/ lin-UI https://doc.mini.talelin.com/
阅读全文
摘要:这是swiper专门为了vue开发出的插件,参数基本一样 https://www.swiper.com.cn/ vue中使用 npm install vue-awesome-swiper 组件中引入 import { Swiper, SwiperSlide } from 'vue-awesome-s
阅读全文
摘要:// 将普通数组转换为tree数组 export function transData (a, idStr, pidStr, chindrenStr) { const r = [] const hash = {} const id = idStr const pid = pidStr const c
阅读全文
摘要:vue-cli 4.2 index.html <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device
阅读全文
摘要:一、修改打包配置(Vue.config.js) module.exports = { // 公共路径(必须有的) publicPath: "./", // 输出文件目录 outputDir: "dist", // 静态资源存放的文件夹(相对于ouputDir) assetsDir: "assets"
阅读全文