摘要:
draw_chart(id) { let myCharts = this.$echarts.getInstanceByDom(document.getElementById(id)) if (myCharts == null) { myCharts = this.$echarts.init(docu 阅读全文
摘要:
computed: { // 根据ip或盒子名称进行搜索 getSearchInfo() { let search = this.search if (search) { this.currpage = 1 this.currentPage = 1 return this.tableData.fil 阅读全文
摘要:
yAxis:{ ... max: val => { if (!y_max) return if (val.max > y_max) return val.max + 100 else return y_max + 100 }, min: val => { if (!y_min) return if 阅读全文
摘要:
1、el-table添加span-method <el-table :data="table_data" id="out-table" :span-method="objectSpanMethod" style="width: 100%"> ... </el-table> 2、合并的方法 // 合并 阅读全文
摘要:
legend: { type: 'scroll', pageIconColor: 'white', //激活的分页按钮颜色 pageIconInactiveColor: 'white', //没激活的分页按钮颜色 pageTextStyle: { color: 'white', }, textSty 阅读全文
摘要:
1、安装:npm install html2canvas jspdf --save 2、创建:html2canvas.js 文件,内容如下: import html2Canvas from 'html2canvas' import JsPDF from 'jspdf' /** * @param {S 阅读全文
摘要:
公共: @blur="send_data.num = $event.target.value ? Number($event.target.value) : null" 不能输入小数点:oninput="value=value.replace(/[^\d]/g,'')" 可输入小数点:oninput 阅读全文
摘要:
前提:getTableMaxHeight.js /** * @param {Number} difference_height 需要减去的值 * @return {Number} table的最大高度值 */ function getTableMaxHeight(difference_height) 阅读全文
摘要:
<template> <div class="x-handle" @mousedown="mouseDown"></div> </template> <script> export default { name: 'HandleEvent', data() { return { lastX: '', 阅读全文
摘要:
layer.open({ type: 1, anim: 5, shade: 0, title: `标题`, resize: true, // 是否支持拉伸 maxmin: true, // 最大化最小化 scrollbar: false, area: ['850px', '550px'], // 宽 阅读全文