简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
/* 修改头部背景和字体颜色 */.el-table th{background: #344067;color: #fff;font-weight: 500;}/* 修改表头字体颜色 */.el-table thead {color: #8EB7FA;}/* 修改头部单元格边框颜色 */.el-table th.is-leaf {border: 1px solid #114696}...
1、对象排序let arrData={"张三":15,"李四":30,"万系":2,"是三":3};function ObjectOrder(data){let keysSorted = Object.keys(data).sort(function(a,b){return data[b]-data[a]})//排序健名let newD={};for(let i=0;i<...
1、安装插件//时间格式化插件npm i silly-datetime --save2、Main 文件引用import SDTime from "silly-datetime"; //时间格式化处理插件Vue.prototype.$SDTime = SDTime; //全局使用3、页面中使用this.$SDTime.format(new Date(), 'YYYY-MM-D...
npm install vue-print-nb --save1、安装npm install vue-print-nb --save2、在 main.js文件中引入import Print from 'vue-print-nb'Vue.use(Print);//注册3、打印整个页面&amp;lt;button v-print&amp;gt;打印整个页面&amp;lt;/bu
1、安装插件npm install echarts --save2、引入组件import echarts from &quot;echarts&quot; //引入组件import '../../node_modules/echarts/map/js/world.js'//引入地图文件3、效果图环境VUE — 脚手架全部代码&amp;lt;template&amp;
1、设置定时器mounted() {this.timer = setInterval(function(){//执行内容}, 60000);},2、清除定时器beforeDestroy() {clearInterval(this.timer);}
1、设置定时器mounted() {this.timer = setInterval(function(){//执行内容}, 60000);},2、清除定时器beforeDestroy() {clearInterval(this.timer);}