This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set SERVER_ROOT=C:\Users\sunzsh\Desktop\simple_app | |
set JAR_NAME=simple.war | |
set JVM_XMS=64m | |
set JVM_XMX=384m | |
set JVM_XMN=32m | |
set JVM_MS=128m | |
set JVM_MMS=256m | |
set SPRING_PROFILE= | |
set JAVA_OPT=%JAVA_OPT% -server -Xms%JVM_XMS% -Xmx%JVM_XMX% -Xmn%JVM_XMN% -XX:MetaspaceSize=%JVM_MS% -XX:MaxMetaspaceSize=%JVM_MMS% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
install(Vue) { | |
const delegates = { | |
'el-select': (component, element) => { | |
return [component.$refs.reference.$el] | |
}, | |
'el-pagination': (component, element) => { | |
const sizesComponent = component.$children.find((child) => child.$options._componentTag === 'sizes'); | |
const eles_ElSelectInSizes = delegates['el-select'](sizesComponent.$children[0], element); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"editor.renderFinalNewline": "dimmed", | |
"workbench.colorCustomizations": { | |
"editorLineNumber.foreground": "#222", | |
"editorLineNumber.activeForeground": "#666", | |
"editorLineNumber.dimmedForeground": "#111", | |
"editorIndentGuide.background": "#222", | |
"editorIndentGuide.activeBackground": "#666", | |
"editor.lineHighlightBackground": "#111", //修改光标所在行的背景色 | |
"editor.lineHighlightBorder": "#333", //修改光标所在行的边框色 | |
"editor.wordHighlightBorder": "#e4893995" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on run | |
tell application "Finder" to set aliasItemName to selection as alias | |
set posixPathName to POSIX path of aliasItemName | |
return posixPathName | |
end run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vue.directive('drag', (el) => { | |
const oDiv = el // 当前元素 | |
const minTop = oDiv.getAttribute('drag-min-top') | |
const ifMoveSizeArea = 20 | |
oDiv.onmousedown = e => { | |
let target = oDiv | |
while (window.getComputedStyle(target).position !== 'absolute' && target !== document.body) { | |
target = target.parentElement | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style> | |
body, html { | |
height: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
@keyframes shake { | |
10%, | |
90% { | |
transform: translate3d(-1px, 0, 0); | |
} | |
20%, | |
80% { | |
transform: translate3d(2px, 0, 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
function msgboxSlider(vue, options = { }) { | |
let sliderPropsFin = Object.assign({ value: 0, min: 0, max: 100, step: 1, showInput: true }, options.slider); | |
let currentValue = sliderPropsFin.value; | |
const content = vue.$createElement('el-slider', | |
{ | |
style: { width: '380px' }, | |
props: sliderPropsFin, | |
on: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.demo.util; | |
import java.util.concurrent.*; | |
public class Promise { | |
// 根据实际情况配置线程池 | |
static ExecutorService threadPool = new ThreadPoolExecutor(10, 40, 20, TimeUnit.SECONDS, new ArrayBlockingQueue<>(2000), Executors.defaultThreadFactory(), new ThreadPoolExecutor.AbortPolicy()); | |
public static void allAwait(Runnable ...runnables) throws InterruptedException { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { Table } from 'element-ui'; | |
export default { | |
extends: Table, | |
mounted() { | |
this.$nextTick(function () { | |
let thead = this.$el.querySelector('.el-table__header-wrapper thead'); | |
let theadNew = thead.cloneNode(true); | |
this.$el.querySelector('.el-table__body-wrapper table').appendChild(theadNew); | |
}) |
NewerOlder