This file contains hidden or 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
1. 8304 8889 6. 9633 4932 | |
2. 3813 8721 7. 8170 3705 | |
3. 8562 0521 8. 0830 8913 | |
4. 7951 1365 9. 4047 0396 | |
5. 5320 0956 10. 1714 6657 |
This file contains hidden or 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"> | |
<title>Title</title> | |
<script> | |
// 事件对象 | |
let eventObj = {}; | |
let pubsub = { | |
sub: (key, fn) => { |
This file contains hidden or 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
/************************************** | |
* Header Counters in TOC | |
**************************************/ | |
/* No link underlines in TOC */ | |
.md-toc-inner { | |
text-decoration: none; | |
} | |
.md-toc-content { |
This file contains hidden or 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
yarn config set registry "https://registry.npm.taobao.org" | |
yarn config set sass_binary_site "https://npm.taobao.org/mirrors/node-sass/" | |
yarn config set phantomjs_cdnurl "http://cnpmjs.org/downloads" | |
yarn config set electron_mirror "https://npm.taobao.org/mirrors/electron/" | |
yarn config set sqlite3_binary_host_mirror "https://foxgis.oss-cn-shanghai.aliyuncs.com/" | |
yarn config set profiler_binary_host_mirror "https://npm.taobao.org/mirrors/node-inspector/" | |
yarn config set chromedriver_cdnurl "https://cdn.npm.taobao.org/dist/chromedriver" | |
yarn config set puppeteer_download_host "https://npm.taobao.org/mirrors" |
This file contains hidden or 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
local chunk, eof = ngx.arg[1], ngx.arg[2] | |
local buffered = ngx.ctx.buffered | |
if not buffered then | |
buffered = {} | |
ngx.ctx.buffered = buffered | |
end | |
if chunk ~= "" then | |
buffered[#buffered + 1] = chunk | |
ngx.arg[1] = nil | |
end |
This file contains hidden or 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
@connect() | |
class Center extends PureComponent { | |
state = { | |
treeData: [ | |
{ title: 'Expand to load', key: '0' }, | |
{ title: 'Expand to load', key: '1' }, | |
{ title: 'Tree Node', key: '2', isLeaf: true }, | |
], | |
}; |
This file contains hidden or 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 { MenuTheme } from 'antd/es/menu'; | |
export type ContentWidth = 'Fluid' | 'Fixed'; | |
export interface DefaultSettings { | |
/** | |
* theme for nav menu | |
*/ | |
navTheme: MenuTheme; | |
/** |
This file contains hidden or 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="zh-cn"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>兼容IE6/IE7/IE8/火狐---下拉菜单select样式兼容</title> | |
<style type="text/css"> | |
body {background-color:#6C6;} | |
.sel-wrap{width:88px;height:29px;*background:#fff;background:#fff;*border:1px solid #b2b2b2;*padding:4px;*height:20px;} | |
.sel-inner{*border:0;*position:relative;*height:18px;*overflow:hidden;} | |
.so-sel{border:1px solid #b2b2b2;padding:4px 3px;font-size:12px;height:30px;width:89px;*width:88px;*margin:-1px;outline:none;} |