摘要:
capitalAmount(amount: any) { // 汉字的数字 const cnNums = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"]; // 基本单位 const 阅读全文
摘要:
"use strict"; // tslint:disable-next-line: only-arrow-functions const setWatermark: (str: any) => any = function(str: any) { const id: string = "1.234 阅读全文
摘要:
if(this.days == undefined){ this.$nextTick(function(){ this.days = 1; }); } if(this.days == undefined){ this.$nextTick(function(){ this.days = 1; }); 阅读全文
摘要:
Vue.directive('dialogDrag', { inserted:function(el) { const dragDom = el.querySelector('.jsPropupLayerHead'); dragDom.style.cursor = 'move'; dragDom.o 阅读全文
摘要:
<template> <div class=""> <div class="calendarTraffic" name="CalendarTraffic"> <!-- 年份/月份 流量查询--> <div class="monthHeader"> <!--绑定click事件,点击按钮;重新刷新当前日 阅读全文
摘要:
main.js 引入echarts // 引入echarts import Echarts from 'echarts' Vue.prototype.$echarts = Echarts <template> <div> <!-- 为ECharts准备一个具备大小(宽高) --> <div id=" 阅读全文
摘要:
//定义keyup次数和方法执行次数 var _num = 1; var _flag = 1; $('#input').on('keyup', function (e) { var _key = $.trim($(this).val()); var _this = $(this); if (e.ke 阅读全文
摘要:
//按需加载 $('a[data-toggle = "tab"]').on('shown.bs.tab', function (e) { //debugger; if ('searchTab-tab' == $(e.target).attr("id")) { return; } $(this).fi 阅读全文
摘要:
参数 width: 'auto', //可滚动区域宽度 height: '100%', //可滚动区域高度 size: '10px', //组件宽度 color: '#000', //滚动条颜色 position: 'right', //组件位置:left/right distance: '0px' 阅读全文
摘要:
jQuery提供了强大的选择器让我们获取对象。在这边,我人为地将jQuery选择器分为两大部分:选择对象和筛选条件。选择对象表示要获取什么对象,筛选条件是对获取的对象进行筛选,最终留下符合某些特征的对象 1.选择对象 1).基本 ·#id 根据给定的ID匹配一个元素。例如:$("#id")·elem 阅读全文