摘要:
vue 验证 <Form :model="formModel" label-position="center" :label-width="90" ref="modelForm" :rules="rules"> rules: { inspectCycleValue: [ { validator: v 阅读全文
摘要:
js 数组转字符串js 字符串转数组arr.join(",");String.split(","); 对象的所有keys Object.keys(val)对象的所有values Object.values(val) 阅读全文
摘要:
正则 -180 到180 小数点后无限位/^0$|^-?0\.\d*[1-9]$|^-?[1-9](\.\d*[1-9])?$|^-?[1-9]\d(\.\d*[1-9])?$|^-?1[0-7]\d(\.\d*[1-9])?$|^-?180$/正则 -180 到180 小数点后有限位/^0$|^- 阅读全文
摘要:
document.getElementsByName("spans")[index].style.color = "blue"; 阅读全文
摘要:
title 设置name="peo" title="" v-on:mouseenter="peoAndCarHover(item.signStatus,'peo',index)" 无index时 title mouseHover(tit) { var titlename = document.get 阅读全文
摘要:
vue Table@on-selection-change="test" 已选中项数据 test(selection){} <Table :data="tableData" :columns="tableColunms" class="innerTable" @on-selection-change 阅读全文
摘要:
属性js setAttribute document.getElementsByName("test")[0].setAttribute("src", "../img/jia.png"); jquery attr $("#id").attr("src", "../img/jia.png"); 阅读全文
摘要:
vue select 多选 验证 <FormItem :prop="'formList.'+index+'.name'" label="姓名" :rules="{ required: true, type: 'array', min: 1, message: '输入框不能为空',trigger: ' 阅读全文
摘要:
验证时间范围 type="daterange" <DatePicker class="formItem" :size="size" v-model="item.transferTerm" disabled type="daterange" placement="bottom" :options="d 阅读全文
摘要:
var txt = '{"name":"ysx","url":"ysx.com","age":"42"}';字符串转对象直接量 var obj = JSON.parse(txt); 同于 eval("("+txt+")"); javascript内置的eval()函数 对象转字符串 JSON.str 阅读全文
摘要:
function CompareDate(t1,t2) { var date = new Date(); var a = t1.split(":"); var b = t2.split(":"); return date.setHours(a[0],a[1]) > date.setHours(b[0 阅读全文
摘要:
父层position:relative; 子层position:absolute;的话, 就是依照父层的边界进行定位的, 不然position:absolute 会逐层向上寻找设置了position:relative的元素边界, 直到body元素 阅读全文
摘要:
background: linear-gradient(to bottom, #ffe5bc, #fff7eb, #ffe5bc); 阅读全文
摘要:
(1)//数组对象方法排序: function sortByKey(array,key){ return array.sort(function(a,b){ var x=a[key]; var y=b[key]; return ((x<y)?-1:((x>y)?1:0)); });}(2)conso 阅读全文
摘要:
openlayers loaders方式加载 let layerVector = new ol.layer.Vector({ source : new ol.source.Vector({ loader: function(extent, resolution, projection) { cons 阅读全文
摘要:
idea 代理上网 浏览器能够上网,idea无法下载jar 浏览器无法上网则配置浏览器代理 start // 浏览器代理完毕 idea 配置 file - settings - > setting 配置http proxy // setting.xml添加 <proxies> <!-- proxy 阅读全文
摘要:
thunder://QUFodHRwOi8veHoyLjgxMDg0MC5jb20vY25fd2luZG93c18xMF9jb25zdW1lcl9lZGl0aW9uc192ZXJzaW9uXzE4MDNfdXBkYXRlZF9tYXJjaF8yMDE4X3g2NF9kdmRfMTIwNjM3NjYu 阅读全文
摘要:
vue接口 写死的 RoleOfUserOrgRef: function ({ commit }, param) { return new Promise((resolve) => { $axios.post(`${process.env.API.stsURL}/iscAppOrgUserRelat 阅读全文
摘要:
// startvue新版脚手架 //卸载旧版本npm uninstall vue-cli -g cnpm install -g @vue/cli或yarn global add @vue/cli //新版本 vue --versioncnpm install webpack -g e:cd E:\ 阅读全文
摘要:
// 拖拽 插件 cnpm install vuedraggableimport draggable from 'vuedraggable' <draggable v-model="tags" :move="getdata" @update="datadragEnd"> <transition-gr 阅读全文
摘要:
安装 安装openlayers安装指定包安装openlayersVUE中的地图import ol from "openlayers";import "openlayers/dist/ol.css"; cnpm install openlayers --save 安装jquery cnpm insta 阅读全文
摘要:
vue 安装图片查看器插件安装cnpm install v-viewer引用 import 'viewerjs/dist/viewer.css' import Viewer from 'v-viewer' import Vue from 'vue' Vue.use(Viewer)用法 render函 阅读全文
摘要:
vue引入外部jsimport { TrackLine } from "../../../../../static/js/trajectory.js";import { initMap } from "../../../../../static/js/initMap.js"; 写法参照js 文件夹内 阅读全文
摘要:
Vue自定义指令 <div id="app"> <input type="text" v-focus> </div> 全局注册 Vue.directive{'focus',{ //指令选项 //指令调用,元素插入父节点时调用v-focus inserted: function(el){ //聚焦元素 阅读全文
摘要:
.py base CGI (Common Gateway Interface) 通用网关接口,它是一段程序,运行在服务器上如:HTTP服务器,提供同客户端HTML页面的接口 测试 import doctest import unittest 性能差异度量 from timeit import Tim 阅读全文
摘要:
http://weilin.me/ol3-primer/ch03/03-01.html#http://weilin.me/ol3-primer/ //地址http://openlayers.org/ //OpenLayers官网 vue安装自定义坐标系npm install proj4 import 阅读全文
摘要:
Node.js 连接 MySQL var mysql = require('mysql'); var connection = mysql.createConnection({ host : 'localhost', user : 'root', password : '123456', port: 阅读全文
摘要:
create (:患者)-[rl:likes]-> (dept:Dept ) ///////////////关系 (STARTNODE)MATCH (video1:YoutubeVideo1)-[movie:ACTION_MOVIES]->(video2:YoutubeVideo2) RETURN 阅读全文
摘要:
条件[ysx=JQ] 所有含有 id 属性的 div 元素 $("div[id]") 所有标题加上背景色 $(":header").css("background", "#EEE");比2小 行 $("tr:lt(2)")第二行 $("tr:eq(1)") table表格的1、3、5...行 2、4 阅读全文
摘要:
圆<circle cx="x" cy="y" r="r" style="stroke:black;fill:none">线 x1 y1 一个点 x2 y2 第二个点<line x1="75" y1="95" x2="135" y2="85" style="stroke:black;"><line x 阅读全文