Commit 5c9d70ce by 孙龙

订单详情

parent a177364d
Showing with 4054 additions and 1 deletions
......@@ -227,6 +227,7 @@ JS
}
public function page(Content $content){
return view('admin.pages.order-page');
// return view('admin.pages.order-page');
return $content->body(new OrderDetailPage());
}
}
.lay-box{background-color:#fff;margin:20px;padding:20px;box-shadow:2px 2px 10px #ccc;border-radius:3px}.alink{color:#1224CC !important}.alink:hover{color:#1E9FFF !important;cursor:pointer}.clearfix:after{content:"020";display:block;height:0;clear:both;visibility:hidden}.clearfix{zoom:1}.clear{clear:both}.clear::after{content:"";clear:both;zoom:1}.fl{float:left}.boxsiz{-webkit-box-sizing:border-box;box-sizing:border-box}.row{display:flex;flex-direction:row}.column{display:flex;flex-direction:column}.bothSide{justify-content:space-between}.avarage{justify-content:space-around}.rowCenter{justify-content:center}.verCenter{align-items:center}.x-tab{font-size:12px;padding-bottom:10px;border-bottom:1px solid #f3f3f3}.x-tab .fl{border-left:1px solid #f3f3f3}.x-tab .tab-itemx{padding:4px 10px;border-radius:3px;cursor:pointer;margin-right:10px}.x-tab .tab-itemx:hover{color:#25a863}.x-tab .tab-itemx.act{color:#fff;background:#009688}.logs li{margin-bottom:5px}.logs li p{color:grey;font-size:12px}body{font-size:12px}.layui-table-view .layui-form-checkbox,.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:0px}.layui-input,.layui-select,.layui-textarea{height:30px;line-height:30px}.layui-input:focus,.layui-textarea:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.08),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.08),0 0 8px rgba(102,175,233,0.6)}.layui-form-item .layui-inline{vertical-align:top}xm-select{height:30px !important;line-height:30px !important;min-height:30px !important}.layui-layer-title{background-color:#ffffff !important}.layui-form-select dl{padding:0 !important}.layui-form-select dl dd{cursor:pointer;text-align:left}.lay-box .layui-form-label{padding:5px 15px}.lay-box .layui-form-item .layui-input-inline{width:170px}.layui-inline[lay-event='LAYTABLE_EXPORT'],.layui-inline[lay-event='LAYTABLE_PRINT']{display:none}.contips{text-align:center;color:#FF5722;padding-bottom:10px}.layui-table tbody tr:hover{background:#f6f2f2}.layui-table tbody tr.layui-table-click{background:#ddf2e9}blockquote{padding:5px !important}xm-select .xm-label .xm-label-block{height:22px !important;line-height:22px !important}.logs li{margin-bottom:5px}.logs li p{color:grey;font-size:12px}.layui-table th{font-weight:bold}.layui-table-tool{position:relative;background-color:#ffffff;padding:10px 0}.layui-table-tool:before{position:absolute;width:100%;height:100%;border-left:1px solid #ffffff;border-top:1px solid #ffffff;left:-1px;top:-1px;content:'';z-index:-1}.layui-table-tool:after{position:absolute;width:100%;height:100%;border-right:1px solid #ffffff;top:0;right:-1px;content:'';z-index:-1}.pur-search{background-color:#23C6C8;transition:all .2s ease-in-out}.pur-search:hover{background-color:#21B9BB !important;opacity:1}.luopabbtn{background-color:#1C84C6;transition:all .2s ease-in-out}.luopabbtn:hover{background-color:#1A7BB9 !important;opacity:1}.btn-color{background-color:#009688}.btn-color:hover{opacity:1 !important;background-color:#33ABA0}.lay-box .layui-table-box-auto-height{max-height:357px;overflow-y:auto}.lay-box select{border:1px solid #D2D2D2}.layui-aight-right{text-align:right}.model-form{padding:20px}.layui-textarea{resize:none}xm-select *{font-size:12px !important}.xm-select-status{border-color:#66afe9;outline:0px !important;box-shadow:rgba(0,0,0,0.08) 0 1px 1px inset,rgba(102,175,233,0.6) 0 0 8px !important}.lay-box blockquote.layui-elem-quote.logs-title{border-left:none !important;text-align:center !important}.layui-table-tool-self{right:0px}body::-webkit-scrollbar-track-piece,.layui-table-main::-webkit-scrollbar-track-piece{background-color:#f8f8f8}body::-webkit-scrollbar,.layui-table-main::-webkit-scrollbar{width:9px;height:9px}body::-webkit-scrollbar-thumb,.layui-table-main::-webkit-scrollbar-thumb{background-color:#ccc;background-clip:padding-box;min-height:28px;transition:all .5s}body::-webkit-scrollbar-thumb:hover,.layui-table-main::-webkit-scrollbar-thumb:hover{background-color:#999}.layui-layer-page .logs{max-height:100px;overflow-y:auto}.layui-table-patch{position:relative;left:-1px}body{display:none}input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}input{-moz-appearance:textfield}
\ No newline at end of file
.lay-box {
background-color: #fff;
margin: 20px;
padding: 20px;
box-shadow: 2px 2px 10px #ccc;
border-radius: 3px;
}
.alink {
color: #1224CC !important;
&:hover {
color: #1E9FFF !important;
cursor: pointer;
}
}
.clearfix:after {
content: "020";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
zoom: 1;
}
.clear {
clear: both;
&::after {
content: "";
clear: both;
zoom: 1;
}
}
.fl {
float: left;
}
.boxsiz {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.row {
display: flex;
flex-direction: row;
}
.column {
display: flex;
flex-direction: column;
}
.bothSide {
justify-content: space-between;
}
.avarage {
justify-content: space-around;
}
.rowCenter {
justify-content: center;
}
.verCenter {
align-items: center;
}
.x-tab {
font-size: 12px;
padding-bottom: 10px;
border-bottom: 1px solid #f3f3f3;
.fl {
border-left: 1px solid #f3f3f3;
}
.tab-itemx {
padding: 4px 10px;
border-radius: 3px;
cursor: pointer;
margin-right: 10px;
&:hover {
color: #25a863;
}
&.act {
color: #fff;
background: #009688;
}
}
}
.logs li {
margin-bottom: 5px;
}
.logs li p {
color: grey;
font-size: 12px;
}
body {
font-size: 12px;
}
.layui-table-view .layui-form-checkbox,
.layui-table-cell .layui-form-checkbox[lay-skin=primary] {
top: 0px;
}
.layui-input,
.layui-select,
.layui-textarea {
height: 30px;
line-height: 30px;
}
.layui-input:focus,
.layui-textarea:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}
.layui-form-item .layui-inline {vertical-align: top;}
xm-select {
height: 30px !important;
line-height: 30px !important;
min-height: 30px !important;
}
.layui-layer-title {
background-color: #ffffff !important;
}
.layui-form-select dl {
padding: 0 !important;
}
.layui-form-select dl dd {
cursor: pointer;
text-align: left;
}
.lay-box .layui-form-label {
padding: 5px 15px;
}
.lay-box .layui-form-item .layui-input-inline {
width: 170px;
}
.layui-inline[lay-event='LAYTABLE_EXPORT'],
.layui-inline[lay-event='LAYTABLE_PRINT'] {
display: none;
}
.contips {
text-align: center;
color: #FF5722;
padding-bottom: 10px;
}
.layui-table tbody tr:hover {
background: #f6f2f2;
}
.layui-table tbody tr.layui-table-click {
background: #ddf2e9;
}
blockquote {
padding: 5px !important;
}
xm-select .xm-label .xm-label-block {
height: 22px !important;
line-height: 22px !important;
}
.logs li {
margin-bottom: 5px;
}
.logs li p {
color: grey;
font-size: 12px;
}
.layui-table th {
font-weight: bold;
}
.layui-table-tool {
position: relative;
background-color: #ffffff;
padding: 10px 0;
&:before {
position: absolute;
width: 100%;
height: 100%;
border-left: 1px solid #ffffff;
border-top: 1px solid #ffffff;
left: -1px;
top: -1px;
content: '';
z-index: -1;
}
&:after {
position: absolute;
width: 100%;
height: 100%;
border-right: 1px solid #ffffff;
top: 0;
right: -1px;
content: '';
z-index: -1;
}
}
.pur-search {
background-color: #23C6C8;
transition: all 0.2s ease-in-out;
&:hover {
background-color: #21B9BB !important;
opacity: 1;
}
}
.luopabbtn {
background-color: #1C84C6;
transition: all 0.2s ease-in-out;
&:hover {
background-color: #1A7BB9 !important;
opacity: 1;
}
}
.btn-color {
background-color: #009688;
&:hover {
opacity: 1 !important;
background-color: #33ABA0;
}
}
.lay-box .layui-table-box-auto-height {
max-height: 357px;
overflow-y: auto;
}
.lay-box select {
border: 1px solid #D2D2D2;
}
.layui-aight-right {
text-align: right;
}
.model-form {
padding: 20px;
}
.layui-textarea {
resize: none;
}
xm-select * {
font-size: 12px !important;
}
.xm-select-status {
border-color: rgb(102, 175, 233);
outline: 0px !important;
box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px !important;
}
.lay-box blockquote.layui-elem-quote.logs-title {
border-left: none !important;
text-align: center !important;
}
.layui-table-tool-self {
right: 0px;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
background: transparent
}
::-webkit-scrollbar-track {
background: transparent
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #c1c1c1
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8a8a8
}
//限制弹窗日志
.layui-layer-page .logs {
max-height: 100px;
overflow-y: auto;
}
.layui-table-patch {
position: relative;
left: -1px;
}
.layui-layer-dialog, .layui-layer-page {top: 100px !important;}
.layui-layer-btn .layui-layer-btn0 {
background-color: #33ABA0 !important;
border-color: #33ABA0 !important;
}
\ No newline at end of file
.lay-box {
background-color: #fff;
margin: 20px;
padding: 20px;
box-shadow: 2px 2px 10px #ccc;
border-radius: 3px;
}
.alink {
color: #1224CC !important;
}
.alink:hover {
color: #1E9FFF !important;
cursor: pointer;
}
.clearfix:after {
content: "020";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
zoom: 1;
}
.clear {
clear: both;
}
.clear::after {
content: "";
clear: both;
zoom: 1;
}
.fl {
float: left;
}
.boxsiz {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.row {
display: flex;
flex-direction: row;
}
.column {
display: flex;
flex-direction: column;
}
.bothSide {
justify-content: space-between;
}
.avarage {
justify-content: space-around;
}
.rowCenter {
justify-content: center;
}
.verCenter {
align-items: center;
}
.x-tab {
font-size: 12px;
padding-bottom: 10px;
border-bottom: 1px solid #f3f3f3;
}
.x-tab .fl {
border-left: 1px solid #f3f3f3;
}
.x-tab .tab-itemx {
padding: 4px 10px;
border-radius: 3px;
cursor: pointer;
margin-right: 10px;
}
.x-tab .tab-itemx:hover {
color: #25a863;
}
.x-tab .tab-itemx.act {
color: #fff;
background: #009688;
}
.logs li {
margin-bottom: 5px;
}
.logs li p {
color: grey;
font-size: 12px;
}
body {
font-size: 12px;
}
.layui-table-view .layui-form-checkbox,
.layui-table-cell .layui-form-checkbox[lay-skin=primary] {
top: 0px;
}
.layui-input,
.layui-select,
.layui-textarea {
height: 30px;
line-height: 30px;
}
.layui-input:focus,
.layui-textarea:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(102, 175, 233, 0.6);
}
.layui-form-item .layui-inline {
vertical-align: top;
}
xm-select {
height: 30px !important;
line-height: 30px !important;
min-height: 30px !important;
}
.layui-layer-title {
background-color: #ffffff !important;
}
.layui-form-select dl {
padding: 0 !important;
}
.layui-form-select dl dd {
cursor: pointer;
text-align: left;
}
.lay-box .layui-form-label {
padding: 5px 15px;
}
.lay-box .layui-form-item .layui-input-inline {
width: 170px;
}
.layui-inline[lay-event='LAYTABLE_EXPORT'],
.layui-inline[lay-event='LAYTABLE_PRINT'] {
display: none;
}
.contips {
text-align: center;
color: #FF5722;
padding-bottom: 10px;
}
.layui-table tbody tr:hover {
background: #f6f2f2;
}
.layui-table tbody tr.layui-table-click {
background: #ddf2e9;
}
blockquote {
padding: 5px !important;
}
xm-select .xm-label .xm-label-block {
height: 22px !important;
line-height: 22px !important;
}
.logs li {
margin-bottom: 5px;
}
.logs li p {
color: grey;
font-size: 12px;
}
.layui-table th {
font-weight: bold;
}
.layui-table-tool {
position: relative;
background-color: #ffffff;
padding: 10px 0;
}
.layui-table-tool:before {
position: absolute;
width: 100%;
height: 100%;
border-left: 1px solid #ffffff;
border-top: 1px solid #ffffff;
left: -1px;
top: -1px;
content: '';
z-index: -1;
}
.layui-table-tool:after {
position: absolute;
width: 100%;
height: 100%;
border-right: 1px solid #ffffff;
top: 0;
right: -1px;
content: '';
z-index: -1;
}
.pur-search {
background-color: #23C6C8;
transition: all 0.2s ease-in-out;
}
.pur-search:hover {
background-color: #21B9BB !important;
opacity: 1;
}
.luopabbtn {
background-color: #1C84C6;
transition: all 0.2s ease-in-out;
}
.luopabbtn:hover {
background-color: #1A7BB9 !important;
opacity: 1;
}
.btn-color {
background-color: #009688;
}
.btn-color:hover {
opacity: 1 !important;
background-color: #33ABA0;
}
.lay-box .layui-table-box-auto-height {
max-height: 357px;
overflow-y: auto;
}
.lay-box select {
border: 1px solid #D2D2D2;
}
.layui-aight-right {
text-align: right;
}
.model-form {
padding: 20px;
}
.layui-textarea {
resize: none;
}
xm-select * {
font-size: 12px !important;
}
.xm-select-status {
border-color: #66afe9;
outline: 0px !important;
box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px !important;
}
.lay-box blockquote.layui-elem-quote.logs-title {
border-left: none !important;
text-align: center !important;
}
.layui-table-tool-self {
right: 0px;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
background: transparent;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #c1c1c1;
}
::-webkit-scrollbar-thumb:hover {
background-color: #a8a8a8;
}
.layui-layer-page .logs {
max-height: 100px;
overflow-y: auto;
}
.layui-table-patch {
position: relative;
left: -1px;
}
.layui-layer-dialog,
.layui-layer-page {
top: 100px !important;
}
.layui-layer-btn .layui-layer-btn0 {
background-color: #33ABA0 !important;
border-color: #33ABA0 !important;
}
/*# sourceMappingURL=common.min.css.map */
\ No newline at end of file
{"version":3,"sources":["common.less"],"names":[],"mappings":"AAAA;EACI,sBAAA;EACA,YAAA;EACA,aAAA;EACA,6BAAA;EACA,kBAAA;;AAGJ;EACI,cAAA;;AAEA,MAAC;EACG,cAAA;EACA,eAAA;;AAIR,SAAS;EACL,SAAS,KAAT;EACA,cAAA;EACA,SAAA;EACA,WAAA;EACA,kBAAA;;AAGJ;EACI,OAAA;;AAGJ;EACI,WAAA;;AAEA,MAAC;EACG,SAAS,EAAT;EACA,WAAA;EACA,OAAA;;AAIR;EACI,WAAA;;AAGJ;EACI,8BAAA;EACA,sBAAA;;AAGJ;EACI,aAAA;EACA,mBAAA;;AAGJ;EACI,aAAA;EACA,sBAAA;;AAGJ;EACI,8BAAA;;AAGJ;EACI,6BAAA;;AAGJ;EACI,uBAAA;;AAGJ;EACI,mBAAA;;AAGJ;EACI,eAAA;EACA,oBAAA;EACA,gCAAA;;AAHJ,MAKI;EACI,8BAAA;;AANR,MASI;EACI,iBAAA;EACA,kBAAA;EACA,eAAA;EACA,kBAAA;;AAEA,MANJ,WAMK;EACG,cAAA;;AAGJ,MAVJ,WAUK;EACG,WAAA;EACA,mBAAA;;AAKZ,KAAM;EACF,kBAAA;;AAGJ,KAAM,GAAG;EACL,WAAA;EACA,eAAA;;AAGJ;EACI,eAAA;;AAGJ,iBAAkB;AAClB,iBAAkB,qBAAoB;EAClC,QAAA;;AAGJ;AACA;AACA;EACI,YAAA;EACA,iBAAA;;AAGJ,YAAY;AACZ,eAAe;EACX,qBAAA;EACA,UAAA;EACA,yFAAA;EACA,iFAAA;;AAGJ,gBAAiB;EAAe,mBAAA;;AAEhC;EACI,uBAAA;EACA,4BAAA;EACA,2BAAA;;AAGJ;EACI,yBAAA;;AAGJ,kBAAmB;EACf,qBAAA;;AAGJ,kBAAmB,GAAG;EAClB,eAAA;EACA,gBAAA;;AAGJ,QAAS;EACL,iBAAA;;AAGJ,QAAS,iBAAiB;EACtB,YAAA;;AAGJ,aAAa;AACb,aAAa;EACT,aAAA;;AAGJ;EACI,kBAAA;EACA,cAAA;EACA,oBAAA;;AAGJ,YAAa,MAAM,GAAE;EACjB,mBAAA;;AAGJ,YAAa,MAAM,GAAE;EACjB,mBAAA;;AAGJ;EACI,uBAAA;;AAGJ,SAAU,UAAU;EAChB,uBAAA;EACA,4BAAA;;AAGJ,KAAM;EACF,kBAAA;;AAGJ,KAAM,GAAG;EACL,WAAA;EACA,eAAA;;AAGJ,YAAa;EACT,iBAAA;;AAGJ;EACI,kBAAA;EACA,yBAAA;EACA,eAAA;;AAEA,iBAAC;EACG,kBAAA;EACA,WAAA;EACA,YAAA;EACA,8BAAA;EACA,6BAAA;EACA,UAAA;EACA,SAAA;EACA,SAAS,EAAT;EACA,WAAA;;AAGJ,iBAAC;EACG,kBAAA;EACA,WAAA;EACA,YAAA;EACA,+BAAA;EACA,MAAA;EACA,WAAA;EACA,SAAS,EAAT;EACA,WAAA;;AAIR;EACI,yBAAA;EACA,gCAAA;;AAEA,WAAC;EACG,yBAAA;EACA,UAAA;;AAIR;EACI,yBAAA;EACA,gCAAA;;AAEA,UAAC;EACG,yBAAA;EACA,UAAA;;AAIR;EACI,yBAAA;;AAEA,UAAC;EACG,qBAAA;EACA,yBAAA;;AAIR,QAAS;EACL,iBAAA;EACA,gBAAA;;AAGJ,QAAS;EACL,yBAAA;;AAGJ;EACI,iBAAA;;AAGJ;EACI,aAAA;;AAGJ;EACI,YAAA;;AAGJ,SAAU;EACN,0BAAA;;AAGJ;EACI,qBAAA;EACA,uBAAA;EACA,uFAAA;;AAGJ,QAAS,WAAU,iBAAiB;EAChC,4BAAA;EACA,6BAAA;;AAGJ;EACI,UAAA;;AAGJ;EACI,WAAA;EACA,YAAA;EACA,uBAAA;;AAGJ;EACI,uBAAA;;AAGJ;EACI,kBAAA;EACA,yBAAA;;AAGJ,yBAAyB;EACrB,yBAAA;;AAIJ,iBAAkB;EACd,iBAAA;EACA,gBAAA;;AAGJ;EACI,kBAAA;EACA,UAAA;;AAGJ;AAAqB;EAAmB,qBAAA;;AAExC,gBAAiB;EACb,yBAAA;EACA,qBAAA","file":"common.min.css"}
\ No newline at end of file
/* Logo 字体 */
@font-face {
font-family: "iconfont logo";
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}
.logo {
font-family: "iconfont logo";
font-size: 160px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* tabs */
.nav-tabs {
position: relative;
}
.nav-tabs .nav-more {
position: absolute;
right: 0;
bottom: 0;
height: 42px;
line-height: 42px;
color: #666;
}
#tabs {
border-bottom: 1px solid #eee;
}
#tabs li {
cursor: pointer;
width: 100px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
position: relative;
z-index: 1;
margin-bottom: -1px;
color: #666;
}
#tabs .active {
border-bottom-color: #f00;
color: #222;
}
.tab-container .content {
display: none;
}
/* 页面布局 */
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main .logo {
color: #333;
text-align: left;
margin-bottom: 30px;
line-height: 1;
height: 110px;
margin-top: -50px;
overflow: hidden;
*zoom: 1;
}
.main .logo a {
font-size: 160px;
color: #333;
}
.helps {
margin-top: 40px;
}
.helps pre {
padding: 20px;
margin: 10px 0;
border: solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists {
width: 100% !important;
overflow: hidden;
*zoom: 1;
}
.icon_lists li {
width: 100px;
margin-bottom: 10px;
margin-right: 20px;
text-align: center;
list-style: none !important;
cursor: default;
}
.icon_lists li .code-name {
line-height: 1.2;
}
.icon_lists .icon {
display: block;
height: 100px;
line-height: 100px;
font-size: 42px;
margin: 10px auto;
color: #333;
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
-moz-transition: font-size 0.25s linear, width 0.25s linear;
transition: font-size 0.25s linear, width 0.25s linear;
}
.icon_lists .icon:hover {
font-size: 100px;
}
.icon_lists .svg-icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
.icon_lists li .name,
.icon_lists li .code-name {
color: #666;
}
/* markdown 样式 */
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p {
margin: 1em 0;
}
.markdown>p,
.markdown>blockquote,
.markdown>.highlight,
.markdown>ol,
.markdown>ul {
width: 80%;
}
.markdown ul>li {
list-style: circle;
}
.markdown>ul li,
.markdown blockquote ul>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown>ul li p,
.markdown>ol li p {
margin: 0.6em 0;
}
.markdown ol>li {
list-style: decimal;
}
.markdown>ol li,
.markdown blockquote ol>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown>table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown>table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown>table th,
.markdown>table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown>table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown>br,
.markdown>p>br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
/* 代码高亮 */
/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre)>code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
@font-face {
font-family: "iconfont"; /* Project id 3146917 */
src: url('iconfont.woff2?t=1647943736346') format('woff2'),
url('iconfont.woff?t=1647943736346') format('woff'),
url('iconfont.ttf?t=1647943736346') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-gysxt:before {
content: "\e67a";
}
.icon-xbjxt:before {
content: "\e67b";
}
.icon-tskfx:before {
content: "\e672";
}
.icon-zcfsx:before {
content: "\e673";
}
.icon-fsyjx:before {
content: "\e674";
}
.icon-scfjx:before {
content: "\e675";
}
.icon-jssdx:before {
content: "\e676";
}
.icon-xcx:before {
content: "\e677";
}
.icon-fsx:before {
content: "\e678";
}
.icon-xzx:before {
content: "\e679";
}
.icon-cnav7:before {
content: "\e668";
}
.icon-cnav6:before {
content: "\e669";
}
.icon-cnav9:before {
content: "\e66a";
}
.icon-cnav10:before {
content: "\e66b";
}
.icon-cnav1:before {
content: "\e66c";
}
.icon-cnav8:before {
content: "\e66d";
}
.icon-cnav4:before {
content: "\e66e";
}
.icon-cnav3:before {
content: "\e66f";
}
.icon-cnav5:before {
content: "\e670";
}
.icon-cnav2:before {
content: "\e671";
}
.icon-uploadx:before {
content: "\e661";
}
.icon-downx:before {
content: "\e657";
}
.icon-editx:before {
content: "\e658";
}
.icon-nav3:before {
content: "\e659";
}
.icon-nav2:before {
content: "\e65a";
}
.icon-errx:before {
content: "\e65b";
}
.icon-nav6:before {
content: "\e65c";
}
.icon-nav8:before {
content: "\e65d";
}
.icon-nav5:before {
content: "\e65e";
}
.icon-nav7:before {
content: "\e65f";
}
.icon-nav4:before {
content: "\e660";
}
.icon-qrtkx:before {
content: "\e662";
}
.icon-subx:before {
content: "\e663";
}
.icon-nav1:before {
content: "\e664";
}
.icon-detailx:before {
content: "\e665";
}
.icon-delx:before {
content: "\e666";
}
.icon-coppx:before {
content: "\e667";
}
{
"id": "3146917",
"name": "销采系统",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "销售采购后台系统",
"glyphs": [
{
"icon_id": "28417594",
"name": "gysxt",
"font_class": "gysxt",
"unicode": "e67a",
"unicode_decimal": 59002
},
{
"icon_id": "28417595",
"name": "xbjxt",
"font_class": "xbjxt",
"unicode": "e67b",
"unicode_decimal": 59003
},
{
"icon_id": "27754844",
"name": "tskfx",
"font_class": "tskfx",
"unicode": "e672",
"unicode_decimal": 58994
},
{
"icon_id": "27754845",
"name": "zcfsx",
"font_class": "zcfsx",
"unicode": "e673",
"unicode_decimal": 58995
},
{
"icon_id": "27754846",
"name": "fsyjx",
"font_class": "fsyjx",
"unicode": "e674",
"unicode_decimal": 58996
},
{
"icon_id": "27754847",
"name": "scfjx",
"font_class": "scfjx",
"unicode": "e675",
"unicode_decimal": 58997
},
{
"icon_id": "27754848",
"name": "jssdx",
"font_class": "jssdx",
"unicode": "e676",
"unicode_decimal": 58998
},
{
"icon_id": "27754849",
"name": "xcx",
"font_class": "xcx",
"unicode": "e677",
"unicode_decimal": 58999
},
{
"icon_id": "27754850",
"name": "fsx",
"font_class": "fsx",
"unicode": "e678",
"unicode_decimal": 59000
},
{
"icon_id": "27754851",
"name": "xzx",
"font_class": "xzx",
"unicode": "e679",
"unicode_decimal": 59001
},
{
"icon_id": "27596643",
"name": "cnav7",
"font_class": "cnav7",
"unicode": "e668",
"unicode_decimal": 58984
},
{
"icon_id": "27596644",
"name": "cnav6",
"font_class": "cnav6",
"unicode": "e669",
"unicode_decimal": 58985
},
{
"icon_id": "27596645",
"name": "cnav9",
"font_class": "cnav9",
"unicode": "e66a",
"unicode_decimal": 58986
},
{
"icon_id": "27596646",
"name": "cnav10",
"font_class": "cnav10",
"unicode": "e66b",
"unicode_decimal": 58987
},
{
"icon_id": "27596647",
"name": "cnav1",
"font_class": "cnav1",
"unicode": "e66c",
"unicode_decimal": 58988
},
{
"icon_id": "27596648",
"name": "cnav8",
"font_class": "cnav8",
"unicode": "e66d",
"unicode_decimal": 58989
},
{
"icon_id": "27596649",
"name": "cnav4",
"font_class": "cnav4",
"unicode": "e66e",
"unicode_decimal": 58990
},
{
"icon_id": "27596650",
"name": "cnav3",
"font_class": "cnav3",
"unicode": "e66f",
"unicode_decimal": 58991
},
{
"icon_id": "27596651",
"name": "cnav5",
"font_class": "cnav5",
"unicode": "e670",
"unicode_decimal": 58992
},
{
"icon_id": "27596652",
"name": "cnav2",
"font_class": "cnav2",
"unicode": "e671",
"unicode_decimal": 58993
},
{
"icon_id": "27266488",
"name": "uploadx",
"font_class": "uploadx",
"unicode": "e661",
"unicode_decimal": 58977
},
{
"icon_id": "27264646",
"name": "downx",
"font_class": "downx",
"unicode": "e657",
"unicode_decimal": 58967
},
{
"icon_id": "27264647",
"name": "editx",
"font_class": "editx",
"unicode": "e658",
"unicode_decimal": 58968
},
{
"icon_id": "27264648",
"name": "nav3",
"font_class": "nav3",
"unicode": "e659",
"unicode_decimal": 58969
},
{
"icon_id": "27264649",
"name": "nav2",
"font_class": "nav2",
"unicode": "e65a",
"unicode_decimal": 58970
},
{
"icon_id": "27264650",
"name": "errx",
"font_class": "errx",
"unicode": "e65b",
"unicode_decimal": 58971
},
{
"icon_id": "27264651",
"name": "nav6",
"font_class": "nav6",
"unicode": "e65c",
"unicode_decimal": 58972
},
{
"icon_id": "27264652",
"name": "nav8",
"font_class": "nav8",
"unicode": "e65d",
"unicode_decimal": 58973
},
{
"icon_id": "27264653",
"name": "nav5",
"font_class": "nav5",
"unicode": "e65e",
"unicode_decimal": 58974
},
{
"icon_id": "27264654",
"name": "nav7",
"font_class": "nav7",
"unicode": "e65f",
"unicode_decimal": 58975
},
{
"icon_id": "27264655",
"name": "nav4",
"font_class": "nav4",
"unicode": "e660",
"unicode_decimal": 58976
},
{
"icon_id": "27264657",
"name": "qrtkx",
"font_class": "qrtkx",
"unicode": "e662",
"unicode_decimal": 58978
},
{
"icon_id": "27264658",
"name": "subx",
"font_class": "subx",
"unicode": "e663",
"unicode_decimal": 58979
},
{
"icon_id": "27264659",
"name": "nav1",
"font_class": "nav1",
"unicode": "e664",
"unicode_decimal": 58980
},
{
"icon_id": "27264660",
"name": "detailx",
"font_class": "detailx",
"unicode": "e665",
"unicode_decimal": 58981
},
{
"icon_id": "27264661",
"name": "delx",
"font_class": "delx",
"unicode": "e666",
"unicode_decimal": 58982
},
{
"icon_id": "27264662",
"name": "coppx",
"font_class": "coppx",
"unicode": "e667",
"unicode_decimal": 58983
}
]
}
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
layui.config({
version: true,
closeFooter: true,
tabAutoRefresh: false,
base: getProjectUrl() + 'assets/module/'
}).extend({
steps: 'steps/steps',
notice: 'notice/notice',
cascader: 'cascader/cascader',
dropdown: 'dropdown/dropdown',
fileChoose: 'fileChoose/fileChoose',
Split: 'Split/Split',
Cropper: 'Cropper/Cropper',
tagsInput: 'tagsInput/tagsInput',
citypicker: 'city-picker/city-picker',
introJs: 'introJs/introJs',
zTree: 'zTree/zTree',
soulTable: 'soulTable/soulTable',
tableChild: 'soulTable/tableChild',
tableMerge: 'soulTable/tableMerge',
tableFilter: 'soulTable/tableFilter',
excel: 'soulTable/excel'
}).use(['layer', 'admin', 'table', 'index', 'soulTable'], function () {
var index = layui.index;
var soulTable = layui.soulTable;
soulTable.config({
drag: true,
fixFixedScroll: true,
filter: {
items: ['column', 'data', 'condition', 'editCondition', 'excel', 'clearCache'],
cache: true
}
});
//关闭当前页面 跳到指定页面
window.closeCurrentPageJumpOne = function (titlex, urlx, time) {
//不传 时间 为0
var time = time ? time : 0;
setTimeout(function () {
index.openTab({
title: titlex,
url: urlx
});
}, time)
setTimeout(function () {
index.closeTab(window.location.pathname + window.location.search);
}, (time + 500))
}
});
/**
* 获取当前项目的根路径,通过获取layui.js全路径截取assets之前的地址
* */
function getProjectUrl() {
var layuiDir = layui.cache.dir;
if (!layuiDir) {
var js = document.scripts, last = js.length - 1, src;
for (var i = last; i > 0; i--) {
if (js[i].readyState === 'interactive') {
src = js[i].src;
break;
}
}
var jsPath = src || js[last].src;
layuiDir = jsPath.substring(0, jsPath.lastIndexOf('/') + 1);
}
return layuiDir.substring(0, layuiDir.indexOf('assets'));
}
/**
* 获取参数
* @param variable
* @returns {string}
*/
function getQueryVariable(variable) {
let query = window.location.search.substring(1);
let vars = query.split("&");
for (let i = 0; i < vars.length; i++) {
let pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
return '';
}
/**
* 判断数组内元素是否全相同
* @param array
* @returns {boolean}
*/
function isAllEqual(array) {
if (array.length > 0) {
return !array.some(function (value, index) {
return value !== array[0];
});
} else {
return true;
}
}
/**
*
* @param url
* @param type
* @param param
* @param callback
* @param isload
* @constructor
*/
function Request(url, type, param, callback, isload) {
if (isload == undefined) {
var index = layer.load(1);
}
//设置携带cookie
$.ajaxSetup({
xhrFields: {
withCredentials: true
}
});
var params = $.extend({}, param);
$.ajax({
type: type,
url: url,
data: params,
xhrFields: {withCredentials: true},
timeout: 15000,
success: function (data) {
typeof callback == 'function' && callback(data);
if (isload == undefined) {
layer.closeAll('loading');
}
},
error: function () {
layer.closeAll('loading');
layer.msg('网络出现问题,请重试!');
}
});
}
function LayUiTableParseData(res) {
if (res.code == 0) {
return {
code: res.code,
msg: "",
count: res.data.total ? res.data.total : 0,
data: res.data.list
}
} else {
return {
code: 0,
msg: "",
count: 0,
data: []
}
}
}
/**
* 判断数组中是否包含某个值
* @param arr 数组
* @param str 值
* @returns {boolean}
*/
function contains(arr, str) {
var i = arr.length;
while (i--) {
if (arr[i] == str) {
return true;
}
}
return false;
}
\ No newline at end of file
/**
* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
*/
!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b),"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:this,document);
\ No newline at end of file
/** EasyWeb iframe v3.1.8 date:2020-05-04 License By http://easyweb.vip */
layui.define(["layer","element","admin"],function(g){var i=layui.jquery;var m=layui.layer;var j=layui.element;var p=layui.admin;var e=p.setter;var k=".layui-layout-admin>.layui-header";var f=".layui-layout-admin>.layui-side>.layui-side-scroll";var b=".layui-layout-admin>.layui-body";var l=b+">.layui-tab";var a=b+">.layui-body-header";var c="admin-pagetabs";var d="admin-side-nav";var q={};var o=false;var n={homeUrl:undefined,mTabPosition:undefined,mTabList:[]};n.loadView=function(t){if(!t.menuPath){return m.msg("url不能为空",{icon:2,anim:6})}if(e.pageTabs){var s;i(l+">.layui-tab-title>li").each(function(){if(i(this).attr("lay-id")===t.menuPath){s=true}});if(!s){if(n.mTabList.length+1>=e.maxTabNum){m.msg("最多打开"+e.maxTabNum+"个选项卡",{icon:2,anim:6});return p.activeNav(n.mTabPosition)}o=true;j.tabAdd(c,{id:t.menuPath,title:'<span class="title">'+(t.menuName||"")+"</span>",content:'<iframe class="admin-iframe" lay-id="'+t.menuPath+'" src="'+t.menuPath+'" onload="layui.index.hideLoading(this);" frameborder="0"></iframe>'});p.showLoading({elem:i('iframe[lay-id="'+t.menuPath+'"]').parent(),size:""});if(t.menuPath!==n.homeUrl){n.mTabList.push(t)}if(e.cacheTab){p.putTempData("indexTabs",n.mTabList)}}if(!t.noChange){j.tabChange(c,t.menuPath)}}else{p.activeNav(t.menuPath);var r=i(b+">div>.admin-iframe");if(r.length===0){i(b).html(['<div class="layui-body-header">',' <span class="layui-body-header-title"></span>',' <span class="layui-breadcrumb pull-right" lay-filter="admin-body-breadcrumb" style="visibility: visible;"></span>',"</div>",'<div style="-webkit-overflow-scrolling: touch;">',' <iframe class="admin-iframe" lay-id="',t.menuPath,'" src="',t.menuPath,'"',' onload="layui.index.hideLoading(this);" frameborder="0"></iframe>',"</div>"].join(""));p.showLoading({elem:i('iframe[lay-id="'+t.menuPath+'"]').parent(),size:""})}else{p.showLoading({elem:r.parent(),size:""});r.attr("lay-id",t.menuPath).attr("src",t.menuPath)}i('[lay-filter="admin-body-breadcrumb"]').html(n.getBreadcrumbHtml(t.menuPath));n.mTabList.splice(0,n.mTabList.length);if(t.menuPath===n.homeUrl){n.mTabPosition=undefined;n.setTabTitle(i(t.menuName).text()||i(f+' [lay-href="'+n.homeUrl+'"]').text()||"主页")}else{n.mTabPosition=t.menuPath;n.mTabList.push(t);n.setTabTitle(t.menuName)}if(!e.cacheTab){return}p.putTempData("indexTabs",n.mTabList);p.putTempData("tabPosition",n.mTabPosition)}if(p.getPageWidth()<=768){p.flexible(true)}};n.loadHome=function(v){var u=p.getTempData("indexTabs");var t=p.getTempData("tabPosition");var r=(v.loadSetting===undefined||v.loadSetting)&&(e.cacheTab&&u&&u.length>0);n.homeUrl=v.menuPath;v.noChange=t?r:false;if(e.pageTabs||!r){n.loadView(v)}if(r){for(var s=0;s<u.length;s++){u[s].noChange=u[s].menuPath!==t;if(!u[s].noChange||(e.pageTabs&&!v.onlyLast)){n.loadView(u[s])}}}p.removeLoading(undefined,false)};n.openTab=function(r){if(window!==top&&!p.isTop()&&top.layui&&top.layui.index){return top.layui.index.openTab(r)}if(r.end){q[r.url]=r.end}n.loadView({menuPath:r.url,menuName:r.title})};n.closeTab=function(r){if(window!==top&&!p.isTop()&&top.layui&&top.layui.index){return top.layui.index.closeTab(r)}j.tabDelete(c,r)};n.setTabCache=function(r){if(window!==top&&!p.isTop()&&top.layui&&top.layui.index){return top.layui.index.setTabCache(r)}p.putSetting("cacheTab",r);if(!r){return n.clearTabCache()}p.putTempData("indexTabs",n.mTabList);p.putTempData("tabPosition",n.mTabPosition)};n.clearTabCache=function(){p.putTempData("indexTabs",null);p.putTempData("tabPosition",null)};n.setTabTitle=function(s,r){if(window!==top&&!p.isTop()&&top.layui&&top.layui.index){return top.layui.index.setTabTitle(s,r)}if(e.pageTabs){if(!r){r=i(l+">.layui-tab-title>li.layui-this").attr("lay-id")}if(r){i(l+'>.layui-tab-title>li[lay-id="'+r+'"] .title').html(s||"")}}else{if(s){i(a+">.layui-body-header-title").html(s);i(a).addClass("show");i(k).css("box-shadow","0 1px 0 0 rgba(0, 0, 0, .03)")}else{i(a).removeClass("show");i(k).css("box-shadow","")}}};n.setTabTitleHtml=function(r){if(window!==top&&!p.isTop()&&top.layui&&top.layui.index){return top.layui.index.setTabTitleHtml(r)}if(e.pageTabs){return}if(!r){return i(a).removeClass("show")}i(a).html(r);i(a).addClass("show")};n.getBreadcrumb=function(r){if(!r){r=i(b+">div>.admin-iframe").attr("lay-id")}var t=[];var s=i(f).find('[lay-href="'+r+'"]');if(s.length>0){t.push(s.text().replace(/(^\s*)|(\s*$)/g,""))}while(true){s=s.parent("dd").parent("dl").prev("a");if(s.length===0){break}t.unshift(s.text().replace(/(^\s*)|(\s*$)/g,""))}return t};n.getBreadcrumbHtml=function(r){var u=n.getBreadcrumb(r);var t=r===n.homeUrl?"":('<a ew-href="'+n.homeUrl+'">首页</a>');for(var s=0;s<u.length-1;s++){if(t){t+='<span lay-separator="">/</span>'}t+=("<a><cite>"+u[s]+"</cite></a>")}return t};n.hideLoading=function(r){if(typeof r!=="string"){r=i(r).attr("lay-id")}p.removeLoading(i('iframe[lay-id="'+r+'"],'+b+" iframe[lay-id]").parent(),false)};var h=".layui-layout-admin .site-mobile-shade";if(i(h).length===0){i(".layui-layout-admin").append('<div class="site-mobile-shade"></div>')}i(h).click(function(){p.flexible(true)});if(e.pageTabs&&i(l).length===0){i(b).html(['<div class="layui-tab" lay-allowClose="true" lay-filter="',c,'" lay-autoRefresh="',e.tabAutoRefresh=="true",'">',' <ul class="layui-tab-title"></ul><div class="layui-tab-content"></div>',"</div>",'<div class="layui-icon admin-tabs-control layui-icon-prev" ew-event="leftPage"></div>','<div class="layui-icon admin-tabs-control layui-icon-next" ew-event="rightPage"></div>','<div class="layui-icon admin-tabs-control layui-icon-down">',' <ul class="layui-nav" lay-filter="admin-pagetabs-nav">',' <li class="layui-nav-item" lay-unselect>',' <dl class="layui-nav-child layui-anim-fadein">',' <dd ew-event="closeThisTabs" lay-unselect><a>关闭当前标签页</a></dd>',' <dd ew-event="closeOtherTabs" lay-unselect><a>关闭其它标签页</a></dd>',' <dd ew-event="closeAllTabs" lay-unselect><a>关闭全部标签页</a></dd>'," </dl>"," </li>"," </ul>","</div>"].join(""));j.render("nav","admin-pagetabs-nav")}j.on("nav("+d+")",function(v){var t=i(v);var s=t.attr("lay-href");if(!s||s==="#"){return}if(s.indexOf("javascript:")===0){return new Function(s.substring(11))()}var u=t.attr("ew-title")||t.text().replace(/(^\s*)|(\s*$)/g,"");var r=t.attr("ew-end");try{if(r){r=new Function(r)}else{r=undefined}}catch(w){console.error(w)}n.openTab({url:s,title:u,end:r});layui.event.call(this,"admin","side({*})",{href:s})});j.on("tab("+c+")",function(){var r=i(this).attr("lay-id");n.mTabPosition=(r!==n.homeUrl?r:undefined);if(e.cacheTab){p.putTempData("tabPosition",n.mTabPosition)}p.activeNav(r);p.rollPage("auto");if(i(l).attr("lay-autoRefresh")=="true"&&!o){p.refresh(r,true)}o=false;layui.event.call(this,"admin","tab({*})",{layId:r})});j.on("tabDelete("+c+")",function(s){var r=n.mTabList[s.index-1];if(r){n.mTabList.splice(s.index-1,1);if(e.cacheTab){p.putTempData("indexTabs",n.mTabList)}q[r.menuPath]&&q[r.menuPath].call();layui.event.call(this,"admin","tabDelete({*})",{layId:r.menuPath})}if(i(l+">.layui-tab-title>li.layui-this").length===0){i(l+">.layui-tab-title>li:last").trigger("click")}});i(document).off("click.navMore").on("click.navMore","[nav-bind]",function(){var r=i(this).attr("nav-bind");i('ul[lay-filter="'+d+'"]').addClass("layui-hide");i('ul[nav-id="'+r+'"]').removeClass("layui-hide");i(k+">.layui-nav .layui-nav-item").removeClass("layui-this");i(this).parent(".layui-nav-item").addClass("layui-this");if(p.getPageWidth()<=768){p.flexible(false)}layui.event.call(this,"admin","nav({*})",{navId:r})});if(e.openTabCtxMenu&&e.pageTabs){layui.use("contextMenu",function(){if(!layui.contextMenu){return}i(l+">.layui-tab-title").off("contextmenu.tab").on("contextmenu.tab","li",function(s){var r=i(this).attr("lay-id");layui.contextMenu.show([{icon:"layui-icon layui-icon-refresh",name:"刷新当前",click:function(){j.tabChange(c,r);if("true"!=i(l).attr("lay-autoRefresh")){p.refresh(r)}}},{icon:"layui-icon layui-icon-close-fill ctx-ic-lg",name:"关闭当前",click:function(){p.closeThisTabs(r)}},{icon:"layui-icon layui-icon-unlink",name:"关闭其他",click:function(){p.closeOtherTabs(r)}},{icon:"layui-icon layui-icon-close ctx-ic-lg",name:"关闭全部",click:function(){p.closeAllTabs()}}],s.clientX,s.clientY);return false})})}g("index",n)});
var strVar = "";
strVar += "<style>";
strVar += " .navxboxp{position:fixed;left:50%;top:0px;width:130px;height:50px;background:#fff;z-index:999;font-size:12px;margin-left:-65px;}";
strVar += " .navxboxp .namexp{background:#4b4e55;border-radius:0 0 5px 5px ;color:#fff;text-align:center;height:26px;line-height:26px;cursor: pointer;}";
strVar += " .navxboxp:hover ul{";
strVar += " top:26px;";
strVar += " }";
strVar += " ";
strVar += " .navxboxp:hover ul::-webkit-scrollbar {";
strVar += " width: 2px;height: 10px;background: transparent;"
strVar += " }";
strVar += " ";
strVar += " .navxboxp ul{box-shadow:0px 0px 10px #ccc;position:fixed;transition:all 0.5s;border-radius:5px ;top:-1000px;width:130px;max-height:200px;overflow-y:auto;background: #fff;}";
strVar += " .navxboxp li a{background:#fff;height:24px;line-height:24px;display:block;border-bottom:1px solid #f3f3f3;text-align:center;cursor: pointer;}";
strVar += " .navxboxp ul li a:hover {color:#009688;}";
strVar += "<\/style>";
strVar += "<div class=\"navxboxp\">";
strVar += " <div class=\"namexp\">系统导航<\/div>";
strVar += " <ul>";
var strVarEnd = " <\/ul><\/div>";
//ajax封装
function Ajaxxs(type, url, data, success, failed) {
// 创建ajax对象
var xhr = null;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else {
xhr = new ActiveXObject('Microsoft.XMLHTTP')
}
var type = type.toUpperCase();
// 用于清除缓存
var random = Math.random();
if (typeof data == 'object') {
var str = '';
for (var key in data) {
str += key + '=' + data[key] + '&';
}
//method=get&url=
data = str.replace(/&$/, '');
}
if (type == 'GET') {
if (data) {
xhr.open('GET', url + '?' + data, true);
} else {
xhr.open('GET', url + '?t=' + random, true);
}
xhr.send();
} else if (type == 'POST') {
xhr.open('POST', url, true);
// 如果需要像 html 表单那样 POST 数据,请使用 setRequestHeader() 来添加 http 头。
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.send(data);
}
// 处理返回数据
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
success(JSON.parse(xhr.responseText));
} else {
if (failed) {
failed(xhr.status);
}
}
}
}
}
function getCookiexs(objName) {//获取指定名称的cookie的值
var arrStr = document.cookie.split("; ");
for (var i = 0; i < arrStr.length; i++) {
var temp = arrStr[i].split("=");
if (temp[0] == objName) return unescape(temp[1]);
}
}
function insertAfters(newElement, targetElement) { // newElement是要追加的元素 targetElement 是指定元素的位置
var parent = targetElement.parentNode; // 找到指定元素的父节点
if (parent.lastChild == targetElement) { // 判断指定元素的是否是节点中的最后一个位置 如果是的话就直接使用appendChild方法
parent.appendChild(newElement, targetElement);
} else {
parent.insertBefore(newElement, targetElement.nextSibling);
};
};
if(getCookiexs("oa_user_id")){
Ajaxxs('get', 'http://perm.ichunt.net/api/ajax/getUserPermList', { userId: getCookiexs("oa_user_id") }, function (res) {
var data_ = res.data || [];
if (data_.length > 0) {
var hl_ = ""; html_ = ";"
for (var i = 0; i < data_.length; i++) {
hl_ += '<li><a href="' + data_[i].url + '" target="_blank" title="' + data_[i].business_name + '">' + data_[i].business_name + '</a></li>'
}
html_ = strVar + hl_ + strVarEnd;
var body_ = document.body;
var div = document.createElement("div");
div.innerHTML = html_
insertAfters(div, body_);
}
})
}
/*! Respond.js v1.4.2: min/max-width media query polyfill * Copyright 2013 Scott Jehl
* Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
* */
!function(a){"use strict";a.matchMedia=a.matchMedia||function(a){var b,c=a.documentElement,d=c.firstElementChild||c.firstChild,e=a.createElement("body"),f=a.createElement("div");return f.id="mq-test-1",f.style.cssText="position:absolute;top:-100em",e.style.background="none",e.appendChild(f),function(a){return f.innerHTML='&shy;<style media="'+a+'"> #mq-test-1 { width: 42px; }</style>',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var g,h,i,j=a.document,k=j.documentElement,l=[],m=[],n=[],o={},p=30,q=j.getElementsByTagName("head")[0]||k,r=j.getElementsByTagName("base")[0],s=q.getElementsByTagName("link"),t=function(){var a,b=j.createElement("div"),c=j.body,d=k.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=j.createElement("body"),c.style.background="none"),k.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&k.insertBefore(c,k.firstChild),a=b.offsetWidth,f?k.removeChild(c):c.removeChild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(m[w.rules]))}for(var C in n)n.hasOwnProperty(C)&&n[C]&&n[C].parentNode===q&&q.removeChild(n[C]);n.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=j.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,q.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(j.createTextNode(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;b<s.length;b++){var c=s[b],e=c.href,f=c.media,g=c.rel&&"stylesheet"===c.rel.toLowerCase();e&&g&&!o[e]&&(c.styleSheet&&c.styleSheet.rawCssText?(v(c.styleSheet.rawCssText,e,f),o[e]=!0):(!/^([a-zA-Z:]*\/\/)/.test(e)&&!r||e.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&("//"===e.substring(0,2)&&(e=a.location.protocol+e),d.push({href:e,media:f})))}w()};x(),c.update=x,c.getEmValue=t,a.addEventListener?a.addEventListener("resize",b,!1):a.attachEvent&&a.attachEvent("onresize",b)}}(this);
\ No newline at end of file
//防抖函数
function debounce(fn, delay) {
// 定时器,用来 setTimeout
var timer
// 返回一个函数,这个函数会在一个时间区间结束后的 delay 毫秒时执行 fn 函数
return function () {
// 保存函数调用时的上下文和参数,传递给 fn
var context = this
var args = arguments
// 每次这个返回的函数被调用,就清除定时器,以保证不执行 fn
clearTimeout(timer)
// 当返回的函数被最后一次调用后(也就是用户停止了某个连续的操作),
// 再过 delay 毫秒就执行 fn
timer = setTimeout(function () {
fn.apply(context, args)
}, delay)
}
}
//获取地址栏参数
function getRequest(value) {
var url = decodeURI(location.search);
var object = {};
if (url.indexOf("?") != -1) {
var str = url.substr(1);
var strs = str.split("&");
for (var i = 0; i < strs.length; i++) {
object[strs[i].split("=")[0]] = strs[i].split("=")[1]
}
}
return object[value];
}
//设置cookie
function SetCookie(name, value, time, domain) //两个参数,一个是cookie的名子,一个是值,一个是天数
{
domain = domain ? ";domain=" + domain : "";
var Days = time; //此 cookie 将被保存 30 天
var exp = new Date(); //new Date("December 31, 9998");
exp.setTime(exp.getTime() + Days * 24 * 60 * 60 * 1000);
document.cookie = name + "=" + encodeURIComponent(value) + ";expires=" + exp.toGMTString() + ";path=/" + domain;
return true;
}
function getCookie(name) //取cookies函数
{
var arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
if (arr != null) return unescape(arr[2]);
return null;
}
//单击行勾选checkbox事件
$(document).on("click", ".layui-table-body table.layui-table tbody tr", function () {
var index = $(this).attr('data-index');
var tableBox = $(this).parents('.layui-table-box');
//存在固定列
if (tableBox.find(".layui-table-fixed.layui-table-fixed-l").length > 0) {
tableDiv = tableBox.find(".layui-table-fixed.layui-table-fixed-l");
} else {
tableDiv = tableBox.find(".layui-table-body.layui-table-main");
}
var CheckLength = tableDiv.find("tr[data-index=" + index + "]").find(
"td div.layui-form-checked").length;
var checkCell = tableDiv.find("tr[data-index=" + index + "]").find(
"td div.laytable-cell-checkbox div.layui-form-checkbox I");
if (checkCell.length > 0) {
checkCell.click();
}
});
$(document).on("click", "td div.laytable-cell-checkbox div.layui-form-checkbox", function (e) {
e.stopPropagation();
});
var check_arr = [];
var check_arr1 = [];
//处理列表多选
function checkGo(table, tag, table_data) {
check_arr = []
table.on('checkbox(' + tag + ')', function (obj) {
if (obj.checked == true) {
if (obj.type == 'one') {
check_arr.push(obj.data);
} else {
for (var i = 0; i < table_data.length; i++) {
check_arr = JSON.parse(JSON.stringify(table_data));
}
}
} else {
if (obj.type == 'one') {
for (var i = 0; i < check_arr.length; i++) {
if (check_arr[i].id == obj.data.id) {
check_arr.splice(i, 1);
}
}
} else {
check_arr = []
}
}
//拉黑就不用变色了
if (obj.checked === true && obj.type === 'all') {
//点击全选,拉黑的不用选上
$('.layui-table-body table.layui-table tbody tr ').addClass('layui-table-click');
} else if (obj.checked === false && obj.type === 'all') {
//点击全不选
$('.layui-table-body table.layui-table tbody tr').removeClass('layui-table-click');
} else if (obj.checked === true && obj.type === 'one') {
//点击单行
if (obj.checked === true) {
obj.tr.addClass('layui-table-click');
} else {
obj.tr.removeClass('layui-table-click');
}
} else if (obj.checked === false && obj.type === 'one') {
//点击全选之后点击单行
if (obj.tr.hasClass('layui-table-click')) {
obj.tr.removeClass('layui-table-click');
}
}
})
}
//处理列表多选
function checkGo1(table, tag, table_data) {
check_arr1 = []
table.on('checkbox(' + tag + ')', function (obj) {
if (obj.checked == true) {
if (obj.type == 'one') {
check_arr1.push(obj.data);
} else {
for (var i = 0; i < table_data.length; i++) {
check_arr1 = JSON.parse(JSON.stringify(table_data));
}
}
} else {
if (obj.type == 'one') {
for (var i = 0; i < check_arr1.length; i++) {
if (check_arr1[i].id == obj.data.id) {
check_arr1.splice(i, 1);
}
}
} else {
check_arr1 = []
}
}
//拉黑就不用变色了
if (obj.checked === true && obj.type === 'all') {
//点击全选,拉黑的不用选上
$('.layui-table-body table.layui-table tbody tr ').addClass('layui-table-click');
} else if (obj.checked === false && obj.type === 'all') {
//点击全不选
$('.layui-table-body table.layui-table tbody tr').removeClass('layui-table-click');
} else if (obj.checked === true && obj.type === 'one') {
//点击单行
if (obj.checked === true) {
obj.tr.addClass('layui-table-click');
} else {
obj.tr.removeClass('layui-table-click');
}
} else if (obj.checked === false && obj.type === 'one') {
//点击全选之后点击单行
if (obj.tr.hasClass('layui-table-click')) {
obj.tr.removeClass('layui-table-click');
}
}
})
}
//处理模糊匹配
function mhpp(ele, isRever, callback) {
//模糊匹配
$(ele).each(function () {
var tag_ = $(this).attr("guid");
var self = $(this);
var type = $(this).attr('type');
var skuSelect = xmSelect.render({
el: '#' + tag_,
autoRow: false,
radio: true,
toolbar: {show: false},
remoteSearch: true,
filterable: true,
clickClose: true,
data: [],
remoteMethod: function (val, cb, show) {
//这里如果val为空, 则不触发搜索
if (type != 'auto') {
if (!val)
return cb([]);
}
$.ajax({
url: self.attr("urls"),
type: 'GET',
data: {
keyword: val,
},
dataType: 'json',
timeout: 5000,
success: function (res) {
var a = [];
if (res.code == 0) {
var arr_ = res.data.list;
for (var i = 0; i < arr_.length; i++) {
a.push({
name: arr_[i].name,
value: arr_[i].id
})
}
}
cb(a);
},
error: function () {
return layer.msg('网络错误,请重试', {icon: 5});
}
});
},
on: function (data) {
var arr = data.arr
if (arr.length == 0) {
console.log("数组为空");
$("input[name='" + tag_ + "']").val("").attr("guid", "");
} else {
var json = [];
var j = {};
j.value = data.arr[0].value;
j.name = data.arr[0].name;
json.push(j);
typeof callback == 'function' && callback(j.value);
//默认需要ID
$("input[name='" + tag_ + "']").val(json[0].value).attr("guid", json[0].name);
//需要名字
if (isRever) {
$("input[name='" + tag_ + "']").val(json[0].name).attr("guid", json[0].value);
}
}
}
})
})
}
//输入框不能输入负数--
$("body").on("keypress", "input[type='number']", function (event) {
if ($(this).hasClass("disxk")) {
return
}
if (event.keyCode == 45) {
event.preventDefault();
}
})
$("body").on("input propertychange", "input[type='number']", function (event) {
if ($(this).hasClass("disxk")) {
return
}
if ($(this).val() < 0) {
$(this).val(0)
}
})
$("body").on("keypress", "input", function (event) {
if (event.keyCode == 13) {
$(".pur-search").click()
}
})
//监听重置页面 刷新
$(document).on('click', ':reset', function () {
window.location.reload();
});
var dt = new Date();
dt.setMonth(dt.getMonth() - 6);
var yy = new Date();
yy.setMonth(yy.getMonth() - 1);
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
var myEchartsTheme = {
color: ["#009688", "#1E9FFF", "#5FB878", "#FFB980", "#D87A80", "#8d98b3", "#e5cf0d", "#97b552", "#95706d", "#dc69aa", "#07a2a4", "#9a7fd1", "#588dd5", "#f5994e", "#c05050", "#59678c", "#c9ab00", "#7eb00a", "#6f5553", "#c14089"],
title: {textStyle: {fontWeight: "normal", color: "#666"}},
dataRange: {itemWidth: 15, color: ["#009688", "#e0ffff"]},
toolbox: {color: ["#1e90ff", "#1e90ff", "#1e90ff", "#1e90ff"], effectiveColor: "#ff4500"},
tooltip: {
backgroundColor: "rgba(50,50,50,0.5)",
axisPointer: {
type: "line",
lineStyle: {color: "#009688"},
crossStyle: {color: "#008acd"},
shadowStyle: {color: "rgba(200,200,200,0.2)"}
}
},
dataZoom: {dataBackgroundColor: "#efefff", fillerColor: "rgba(182,162,222,0.2)", handleColor: "#008acd"},
grid: {borderColor: "#eee"},
categoryAxis: {
axisLine: {lineStyle: {color: "#009688"}},
axisTick: {show: !1},
splitLine: {lineStyle: {color: ["#eee"]}}
},
valueAxis: {
axisLine: {lineStyle: {color: "#009688"}},
splitArea: {show: !0, areaStyle: {color: ["rgba(250,250,250,0.1)", "rgba(200,200,200,0.1)"]}},
splitLine: {lineStyle: {color: ["#eee"]}}
},
polar: {
axisLine: {lineStyle: {color: "#ddd"}},
splitArea: {show: !0, areaStyle: {color: ["rgba(250,250,250,0.2)", "rgba(200,200,200,0.2)"]}},
splitLine: {lineStyle: {color: "#ddd"}}
},
timeline: {
lineStyle: {color: "#009688"},
controlStyle: {normal: {color: "#009688"}, emphasis: {color: "#009688"}},
symbol: "emptyCircle",
symbolSize: 3
},
bar: {itemStyle: {normal: {barBorderRadius: 2}, emphasis: {barBorderRadius: 2}}},
line: {smooth: !0, symbol: "emptyCircle", symbolSize: 3},
k: {
itemStyle: {
normal: {
color: "#d87a80",
color0: "#2ec7c9",
lineStyle: {color: "#d87a80", color0: "#2ec7c9"}
}
}
},
scatter: {symbol: "circle", symbolSize: 4},
radar: {symbol: "emptyCircle", symbolSize: 3},
map: {
itemStyle: {
normal: {areaStyle: {color: "#ddd"}, label: {textStyle: {color: "#d87a80"}}},
emphasis: {areaStyle: {color: "#fe994e"}}
}
},
force: {itemStyle: {normal: {linkStyle: {color: "#1e90ff"}}}},
chord: {
itemStyle: {
normal: {
borderWidth: 1,
borderColor: "rgba(128, 128, 128, 0.5)",
chordStyle: {lineStyle: {color: "rgba(128, 128, 128, 0.5)"}}
},
emphasis: {
borderWidth: 1,
borderColor: "rgba(128, 128, 128, 0.5)",
chordStyle: {lineStyle: {color: "rgba(128, 128, 128, 0.5)"}}
}
}
},
gauge: {
axisLine: {lineStyle: {color: [[.2, "#2ec7c9"], [.8, "#5ab1ef"], [1, "#d87a80"]], width: 10}},
axisTick: {splitNumber: 10, length: 15, lineStyle: {color: "auto"}},
splitLine: {length: 22, lineStyle: {color: "auto"}},
pointer: {width: 5}
},
textStyle: {fontFamily: "微软雅黑, Arial, Verdana, sans-serif"}
};
\ No newline at end of file
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.af = factory()));
}(this, function () { 'use strict';
var af = {
code: "af",
week: {
dow: 1,
doy: 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
},
buttonText: {
prev: "Vorige",
next: "Volgende",
today: "Vandag",
year: "Jaar",
month: "Maand",
week: "Week",
day: "Dag",
list: "Agenda"
},
allDayHtml: "Heeldag",
eventLimitText: "Addisionele",
noEventsMessage: "Daar is geen gebeurtenisse nie"
};
return af;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-dz'] = factory()));
}(this, function () { 'use strict';
var arDz = {
code: "ar-dz",
week: {
dow: 0,
doy: 4 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arDz;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-kw'] = factory()));
}(this, function () { 'use strict';
var arKw = {
code: "ar-kw",
week: {
dow: 0,
doy: 12 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arKw;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ly'] = factory()));
}(this, function () { 'use strict';
var arLy = {
code: "ar-ly",
week: {
dow: 6,
doy: 12 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arLy;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-ma'] = factory()));
}(this, function () { 'use strict';
var arMa = {
code: "ar-ma",
week: {
dow: 6,
doy: 12 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arMa;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-sa'] = factory()));
}(this, function () { 'use strict';
var arSa = {
code: "ar-sa",
week: {
dow: 0,
doy: 6 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arSa;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['ar-tn'] = factory()));
}(this, function () { 'use strict';
var arTn = {
code: "ar-tn",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return arTn;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ar = factory()));
}(this, function () { 'use strict';
var ar = {
code: "ar",
week: {
dow: 6,
doy: 12 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "السابق",
next: "التالي",
today: "اليوم",
month: "شهر",
week: "أسبوع",
day: "يوم",
list: "أجندة"
},
weekLabel: "أسبوع",
allDayText: "اليوم كله",
eventLimitText: "أخرى",
noEventsMessage: "أي أحداث لعرض"
};
return ar;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bg = factory()));
}(this, function () { 'use strict';
var bg = {
code: "bg",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "назад",
next: "напред",
today: "днес",
month: "Месец",
week: "Седмица",
day: "Ден",
list: "График"
},
allDayText: "Цял ден",
eventLimitText: function (n) {
return "+още " + n;
},
noEventsMessage: "Няма събития за показване"
};
return bg;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.bs = factory()));
}(this, function () { 'use strict';
var bs = {
code: "bs",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Prošli",
next: "Sljedeći",
today: "Danas",
month: "Mjesec",
week: "Sedmica",
day: "Dan",
list: "Raspored"
},
weekLabel: "Sed",
allDayText: "Cijeli dan",
eventLimitText: function (n) {
return "+ još " + n;
},
noEventsMessage: "Nema događaja za prikazivanje"
};
return bs;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ca = factory()));
}(this, function () { 'use strict';
var ca = {
code: "ca",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Anterior",
next: "Següent",
today: "Avui",
month: "Mes",
week: "Setmana",
day: "Dia",
list: "Agenda"
},
weekLabel: "Set",
allDayText: "Tot el dia",
eventLimitText: "més",
noEventsMessage: "No hi ha esdeveniments per mostrar"
};
return ca;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.cs = factory()));
}(this, function () { 'use strict';
var cs = {
code: "cs",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Dříve",
next: "Později",
today: "Nyní",
month: "Měsíc",
week: "Týden",
day: "Den",
list: "Agenda"
},
weekLabel: "Týd",
allDayText: "Celý den",
eventLimitText: function (n) {
return "+další: " + n;
},
noEventsMessage: "Žádné akce k zobrazení"
};
return cs;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.da = factory()));
}(this, function () { 'use strict';
var da = {
code: "da",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Forrige",
next: "Næste",
today: "I dag",
month: "Måned",
week: "Uge",
day: "Dag",
list: "Agenda"
},
weekLabel: "Uge",
allDayText: "Hele dagen",
eventLimitText: "flere",
noEventsMessage: "Ingen arrangementer at vise"
};
return da;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.de = factory()));
}(this, function () { 'use strict';
var de = {
code: "de",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Zurück",
next: "Vor",
today: "Heute",
year: "Jahr",
month: "Monat",
week: "Woche",
day: "Tag",
list: "Terminübersicht"
},
weekLabel: "KW",
allDayText: "Ganztägig",
eventLimitText: function (n) {
return "+ weitere " + n;
},
noEventsMessage: "Keine Ereignisse anzuzeigen"
};
return de;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.el = factory()));
}(this, function () { 'use strict';
var el = {
code: "el",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4st is the first week of the year.
},
buttonText: {
prev: "Προηγούμενος",
next: "Επόμενος",
today: "Σήμερα",
month: "Μήνας",
week: "Εβδομάδα",
day: "Ημέρα",
list: "Ατζέντα"
},
weekLabel: "Εβδ",
allDayText: "Ολοήμερο",
eventLimitText: "περισσότερα",
noEventsMessage: "Δεν υπάρχουν γεγονότα για να εμφανιστεί"
};
return el;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-au'] = factory()));
}(this, function () { 'use strict';
var enAu = {
code: "en-au",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
}
};
return enAu;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-gb'] = factory()));
}(this, function () { 'use strict';
var enGb = {
code: "en-gb",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
}
};
return enGb;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['en-nz'] = factory()));
}(this, function () { 'use strict';
var enNz = {
code: "en-nz",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
}
};
return enNz;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['es-us'] = factory()));
}(this, function () { 'use strict';
var esUs = {
code: "es",
week: {
dow: 0,
doy: 6 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Ant",
next: "Sig",
today: "Hoy",
month: "Mes",
week: "Semana",
day: "Día",
list: "Agenda"
},
weekLabel: "Sm",
allDayHtml: "Todo<br/>el día",
eventLimitText: "más",
noEventsMessage: "No hay eventos para mostrar"
};
return esUs;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.es = factory()));
}(this, function () { 'use strict';
var es = {
code: "es",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Ant",
next: "Sig",
today: "Hoy",
month: "Mes",
week: "Semana",
day: "Día",
list: "Agenda"
},
weekLabel: "Sm",
allDayHtml: "Todo<br/>el día",
eventLimitText: "más",
noEventsMessage: "No hay eventos para mostrar"
};
return es;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.et = factory()));
}(this, function () { 'use strict';
var et = {
code: "et",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Eelnev",
next: "Järgnev",
today: "Täna",
month: "Kuu",
week: "Nädal",
day: "Päev",
list: "Päevakord"
},
weekLabel: "näd",
allDayText: "Kogu päev",
eventLimitText: function (n) {
return "+ veel " + n;
},
noEventsMessage: "Kuvamiseks puuduvad sündmused"
};
return et;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.eu = factory()));
}(this, function () { 'use strict';
var eu = {
code: "eu",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Aur",
next: "Hur",
today: "Gaur",
month: "Hilabetea",
week: "Astea",
day: "Eguna",
list: "Agenda"
},
weekLabel: "As",
allDayHtml: "Egun<br/>osoa",
eventLimitText: "gehiago",
noEventsMessage: "Ez dago ekitaldirik erakusteko"
};
return eu;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fa = factory()));
}(this, function () { 'use strict';
var fa = {
code: "fa",
week: {
dow: 6,
doy: 12 // The week that contains Jan 1st is the first week of the year.
},
dir: 'rtl',
buttonText: {
prev: "قبلی",
next: "بعدی",
today: "امروز",
month: "ماه",
week: "هفته",
day: "روز",
list: "برنامه"
},
weekLabel: "هف",
allDayText: "تمام روز",
eventLimitText: function (n) {
return "بیش از " + n;
},
noEventsMessage: "هیچ رویدادی به نمایش"
};
return fa;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fi = factory()));
}(this, function () { 'use strict';
var fi = {
code: "fi",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Edellinen",
next: "Seuraava",
today: "Tänään",
month: "Kuukausi",
week: "Viikko",
day: "Päivä",
list: "Tapahtumat"
},
weekLabel: "Vk",
allDayText: "Koko päivä",
eventLimitText: "lisää",
noEventsMessage: "Ei näytettäviä tapahtumia"
};
return fi;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ca'] = factory()));
}(this, function () { 'use strict';
var frCa = {
code: "fr",
buttonText: {
prev: "Précédent",
next: "Suivant",
today: "Aujourd'hui",
year: "Année",
month: "Mois",
week: "Semaine",
day: "Jour",
list: "Mon planning"
},
weekLabel: "Sem.",
allDayHtml: "Toute la<br/>journée",
eventLimitText: "en plus",
noEventsMessage: "Aucun événement à afficher"
};
return frCa;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['fr-ch'] = factory()));
}(this, function () { 'use strict';
var frCh = {
code: "fr-ch",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Précédent",
next: "Suivant",
today: "Courant",
year: "Année",
month: "Mois",
week: "Semaine",
day: "Jour",
list: "Mon planning"
},
weekLabel: "Sm",
allDayHtml: "Toute la<br/>journée",
eventLimitText: "en plus",
noEventsMessage: "Aucun événement à afficher"
};
return frCh;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.fr = factory()));
}(this, function () { 'use strict';
var fr = {
code: "fr",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Précédent",
next: "Suivant",
today: "Aujourd'hui",
year: "Année",
month: "Mois",
week: "Semaine",
day: "Jour",
list: "Mon planning"
},
weekLabel: "Sem.",
allDayHtml: "Toute la<br/>journée",
eventLimitText: "en plus",
noEventsMessage: "Aucun événement à afficher"
};
return fr;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.gl = factory()));
}(this, function () { 'use strict';
var gl = {
code: "gl",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Ant",
next: "Seg",
today: "Hoxe",
month: "Mes",
week: "Semana",
day: "Día",
list: "Axenda"
},
weekLabel: "Sm",
allDayHtml: "Todo<br/>o día",
eventLimitText: "máis",
noEventsMessage: "Non hai eventos para amosar"
};
return gl;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.he = factory()));
}(this, function () { 'use strict';
var he = {
code: "he",
dir: 'rtl',
buttonText: {
prev: "הקודם",
next: "הבא",
today: "היום",
month: "חודש",
week: "שבוע",
day: "יום",
list: "סדר יום"
},
allDayText: "כל היום",
eventLimitText: "אחר",
noEventsMessage: "אין אירועים להצגה",
weekLabel: "שבוע"
};
return he;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hi = factory()));
}(this, function () { 'use strict';
var hi = {
code: "hi",
week: {
dow: 0,
doy: 6 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "पिछला",
next: "अगला",
today: "आज",
month: "महीना",
week: "सप्ताह",
day: "दिन",
list: "कार्यसूची"
},
weekLabel: "हफ्ता",
allDayText: "सभी दिन",
eventLimitText: function (n) {
return "+अधिक " + n;
},
noEventsMessage: "कोई घटनाओं को प्रदर्शित करने के लिए"
};
return hi;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hr = factory()));
}(this, function () { 'use strict';
var hr = {
code: "hr",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Prijašnji",
next: "Sljedeći",
today: "Danas",
month: "Mjesec",
week: "Tjedan",
day: "Dan",
list: "Raspored"
},
weekLabel: "Tje",
allDayText: "Cijeli dan",
eventLimitText: function (n) {
return "+ još " + n;
},
noEventsMessage: "Nema događaja za prikaz"
};
return hr;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.hu = factory()));
}(this, function () { 'use strict';
var hu = {
code: "hu",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "vissza",
next: "előre",
today: "ma",
month: "Hónap",
week: "Hét",
day: "Nap",
list: "Napló"
},
weekLabel: "Hét",
allDayText: "Egész nap",
eventLimitText: "további",
noEventsMessage: "Nincs megjeleníthető esemény"
};
return hu;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.id = factory()));
}(this, function () { 'use strict';
var id = {
code: "id",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "mundur",
next: "maju",
today: "hari ini",
month: "Bulan",
week: "Minggu",
day: "Hari",
list: "Agenda"
},
weekLabel: "Mg",
allDayHtml: "Sehari<br/>penuh",
eventLimitText: "lebih",
noEventsMessage: "Tidak ada acara untuk ditampilkan"
};
return id;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.is = factory()));
}(this, function () { 'use strict';
var is = {
code: "is",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Fyrri",
next: "Næsti",
today: "Í dag",
month: "Mánuður",
week: "Vika",
day: "Dagur",
list: "Dagskrá"
},
weekLabel: "Vika",
allDayHtml: "Allan<br/>daginn",
eventLimitText: "meira",
noEventsMessage: "Engir viðburðir til að sýna"
};
return is;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.it = factory()));
}(this, function () { 'use strict';
var it = {
code: "it",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Prec",
next: "Succ",
today: "Oggi",
month: "Mese",
week: "Settimana",
day: "Giorno",
list: "Agenda"
},
weekLabel: "Sm",
allDayHtml: "Tutto il<br/>giorno",
eventLimitText: function (n) {
return "+altri " + n;
},
noEventsMessage: "Non ci sono eventi da visualizzare"
};
return it;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ja = factory()));
}(this, function () { 'use strict';
var ja = {
code: "ja",
buttonText: {
prev: "前",
next: "次",
today: "今日",
month: "月",
week: "週",
day: "日",
list: "予定リスト"
},
weekLabel: "週",
allDayText: "終日",
eventLimitText: function (n) {
return "他 " + n + " 件";
},
noEventsMessage: "表示する予定はありません"
};
return ja;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ka = factory()));
}(this, function () { 'use strict';
var ka = {
code: "ka",
week: {
dow: 1,
doy: 7
},
buttonText: {
prev: "წინა",
next: "შემდეგი",
today: "დღეს",
month: "თვე",
week: "კვირა",
day: "დღე",
list: "დღის წესრიგი"
},
weekLabel: "კვ",
allDayText: "მთელი დღე",
eventLimitText: function (n) {
return "+ კიდევ " + n;
},
noEventsMessage: "ღონისძიებები არ არის"
};
return ka;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.kk = factory()));
}(this, function () { 'use strict';
var kk = {
code: "kk",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Алдыңғы",
next: "Келесі",
today: "Бүгін",
month: "Ай",
week: "Апта",
day: "Күн",
list: "Күн тәртібі"
},
weekLabel: "Не",
allDayText: "Күні бойы",
eventLimitText: function (n) {
return "+ тағы " + n;
},
noEventsMessage: "Көрсету үшін оқиғалар жоқ"
};
return kk;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ko = factory()));
}(this, function () { 'use strict';
var ko = {
code: "ko",
buttonText: {
prev: "이전달",
next: "다음달",
today: "오늘",
month: "월",
week: "주",
day: "일",
list: "일정목록"
},
weekLabel: "주",
allDayText: "종일",
eventLimitText: "개",
noEventsMessage: "일정이 없습니다"
};
return ko;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lb = factory()));
}(this, function () { 'use strict';
var lb = {
code: "lb",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Zréck",
next: "Weider",
today: "Haut",
month: "Mount",
week: "Woch",
day: "Dag",
list: "Terminiwwersiicht"
},
weekLabel: "W",
allDayText: "Ganzen Dag",
eventLimitText: "méi",
noEventsMessage: "Nee Evenementer ze affichéieren"
};
return lb;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lt = factory()));
}(this, function () { 'use strict';
var lt = {
code: "lt",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Atgal",
next: "Pirmyn",
today: "Šiandien",
month: "Mėnuo",
week: "Savaitė",
day: "Diena",
list: "Darbotvarkė"
},
weekLabel: "SAV",
allDayText: "Visą dieną",
eventLimitText: "daugiau",
noEventsMessage: "Nėra įvykių rodyti"
};
return lt;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.lv = factory()));
}(this, function () { 'use strict';
var lv = {
code: "lv",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Iepr.",
next: "Nāk.",
today: "Šodien",
month: "Mēnesis",
week: "Nedēļa",
day: "Diena",
list: "Dienas kārtība"
},
weekLabel: "Ned.",
allDayText: "Visu dienu",
eventLimitText: function (n) {
return "+vēl " + n;
},
noEventsMessage: "Nav notikumu"
};
return lv;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.mk = factory()));
}(this, function () { 'use strict';
var mk = {
code: "mk",
buttonText: {
prev: "претходно",
next: "следно",
today: "Денес",
month: "Месец",
week: "Недела",
day: "Ден",
list: "График"
},
weekLabel: "Сед",
allDayText: "Цел ден",
eventLimitText: function (n) {
return "+повеќе " + n;
},
noEventsMessage: "Нема настани за прикажување"
};
return mk;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ms = factory()));
}(this, function () { 'use strict';
var ms = {
code: "ms",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Sebelum",
next: "Selepas",
today: "hari ini",
month: "Bulan",
week: "Minggu",
day: "Hari",
list: "Agenda"
},
weekLabel: "Mg",
allDayText: "Sepanjang hari",
eventLimitText: function (n) {
return "masih ada " + n + " acara";
},
noEventsMessage: "Tiada peristiwa untuk dipaparkan"
};
return ms;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nb = factory()));
}(this, function () { 'use strict';
var nb = {
code: "nb",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Forrige",
next: "Neste",
today: "I dag",
month: "Måned",
week: "Uke",
day: "Dag",
list: "Agenda"
},
weekLabel: "Uke",
allDayText: "Hele dagen",
eventLimitText: "til",
noEventsMessage: "Ingen hendelser å vise"
};
return nb;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nl = factory()));
}(this, function () { 'use strict';
var nl = {
code: "nl",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Voorgaand",
next: "Volgende",
today: "Vandaag",
year: "Jaar",
month: "Maand",
week: "Week",
day: "Dag",
list: "Agenda"
},
allDayText: "Hele dag",
eventLimitText: "extra",
noEventsMessage: "Geen evenementen om te laten zien"
};
return nl;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.nn = factory()));
}(this, function () { 'use strict';
var nn = {
code: "nn",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Førre",
next: "Neste",
today: "I dag",
month: "Månad",
week: "Veke",
day: "Dag",
list: "Agenda"
},
weekLabel: "Veke",
allDayText: "Heile dagen",
eventLimitText: "til",
noEventsMessage: "Ingen hendelser å vise"
};
return nn;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pl = factory()));
}(this, function () { 'use strict';
var pl = {
code: "pl",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Poprzedni",
next: "Następny",
today: "Dziś",
month: "Miesiąc",
week: "Tydzień",
day: "Dzień",
list: "Plan dnia"
},
weekLabel: "Tydz",
allDayText: "Cały dzień",
eventLimitText: "więcej",
noEventsMessage: "Brak wydarzeń do wyświetlenia"
};
return pl;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['pt-br'] = factory()));
}(this, function () { 'use strict';
var ptBr = {
code: "pt-br",
buttonText: {
prev: "Anterior",
next: "Próximo",
today: "Hoje",
month: "Mês",
week: "Semana",
day: "Dia",
list: "Compromissos"
},
weekLabel: "Sm",
allDayText: "dia inteiro",
eventLimitText: function (n) {
return "mais +" + n;
},
noEventsMessage: "Não há eventos para mostrar"
};
return ptBr;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.pt = factory()));
}(this, function () { 'use strict';
var pt = {
code: "pt",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Anterior",
next: "Seguinte",
today: "Hoje",
month: "Mês",
week: "Semana",
day: "Dia",
list: "Agenda"
},
weekLabel: "Sem",
allDayText: "Todo o dia",
eventLimitText: "mais",
noEventsMessage: "Não há eventos para mostrar"
};
return pt;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ro = factory()));
}(this, function () { 'use strict';
var ro = {
code: "ro",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "precedentă",
next: "următoare",
today: "Azi",
month: "Lună",
week: "Săptămână",
day: "Zi",
list: "Agendă"
},
weekLabel: "Săpt",
allDayText: "Toată ziua",
eventLimitText: function (n) {
return "+alte " + n;
},
noEventsMessage: "Nu există evenimente de afișat"
};
return ro;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ru = factory()));
}(this, function () { 'use strict';
var ru = {
code: "ru",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Пред",
next: "След",
today: "Сегодня",
month: "Месяц",
week: "Неделя",
day: "День",
list: "Повестка дня"
},
weekLabel: "Нед",
allDayText: "Весь день",
eventLimitText: function (n) {
return "+ ещё " + n;
},
noEventsMessage: "Нет событий для отображения"
};
return ru;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sk = factory()));
}(this, function () { 'use strict';
var sk = {
code: "sk",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Predchádzajúci",
next: "Nasledujúci",
today: "Dnes",
month: "Mesiac",
week: "Týždeň",
day: "Deň",
list: "Rozvrh"
},
weekLabel: "Ty",
allDayText: "Celý deň",
eventLimitText: function (n) {
return "+ďalšie: " + n;
},
noEventsMessage: "Žiadne akcie na zobrazenie"
};
return sk;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sl = factory()));
}(this, function () { 'use strict';
var sl = {
code: "sl",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Prejšnji",
next: "Naslednji",
today: "Trenutni",
month: "Mesec",
week: "Teden",
day: "Dan",
list: "Dnevni red"
},
weekLabel: "Teden",
allDayText: "Ves dan",
eventLimitText: "več",
noEventsMessage: "Ni dogodkov za prikaz"
};
return sl;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sq = factory()));
}(this, function () { 'use strict';
var sq = {
code: "sq",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "mbrapa",
next: "Përpara",
today: "sot",
month: "Muaj",
week: "Javë",
day: "Ditë",
list: "Listë"
},
weekLabel: "Ja",
allDayHtml: "Gjithë<br/>ditën",
eventLimitText: function (n) {
return "+më tepër " + n;
},
noEventsMessage: "Nuk ka evente për të shfaqur"
};
return sq;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales['sr-cyrl'] = factory()));
}(this, function () { 'use strict';
var srCyrl = {
code: "sr-cyrl",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Претходна",
next: "следећи",
today: "Данас",
month: "Месец",
week: "Недеља",
day: "Дан",
list: "Планер"
},
weekLabel: "Сед",
allDayText: "Цео дан",
eventLimitText: function (n) {
return "+ још " + n;
},
noEventsMessage: "Нема догађаја за приказ"
};
return srCyrl;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sr = factory()));
}(this, function () { 'use strict';
var sr = {
code: "sr",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "Prethodna",
next: "Sledeći",
today: "Danas",
month: "Mеsеc",
week: "Nеdеlja",
day: "Dan",
list: "Planеr"
},
weekLabel: "Sed",
allDayText: "Cеo dan",
eventLimitText: function (n) {
return "+ još " + n;
},
noEventsMessage: "Nеma događaja za prikaz"
};
return sr;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sv = factory()));
}(this, function () { 'use strict';
var sv = {
code: "sv",
week: {
dow: 1,
doy: 4 // The week that contains Jan 4th is the first week of the year.
},
buttonText: {
prev: "Förra",
next: "Nästa",
today: "Idag",
month: "Månad",
week: "Vecka",
day: "Dag",
list: "Program"
},
weekLabel: "v.",
allDayText: "Heldag",
eventLimitText: "till",
noEventsMessage: "Inga händelser att visa"
};
return sv;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.th = factory()));
}(this, function () { 'use strict';
var th = {
code: "th",
buttonText: {
prev: "ย้อน",
next: "ถัดไป",
today: "วันนี้",
month: "เดือน",
week: "สัปดาห์",
day: "วัน",
list: "แผนงาน"
},
allDayText: "ตลอดวัน",
eventLimitText: "เพิ่มเติม",
noEventsMessage: "ไม่มีกิจกรรมที่จะแสดง"
};
return th;
}));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.tr = factory()));
}(this, function () { 'use strict';
var tr = {
code: "tr",
week: {
dow: 1,
doy: 7 // The week that contains Jan 1st is the first week of the year.
},
buttonText: {
prev: "geri",
next: "ileri",
today: "bugün",
month: "Ay",
week: "Hafta",
day: "Gün",
list: "Ajanda"
},
weekLabel: "Hf",
allDayText: "Tüm gün",
eventLimitText: "daha fazla",
noEventsMessage: "Gösterilecek etkinlik yok"
};
return tr;
}));
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
No preview for this file type
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment