优化工单模块,增加企微模块

This commit is contained in:
mgw
2024-07-10 15:58:47 +08:00
parent e8512b23e4
commit 6b140fe6dd
134 changed files with 12830 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
@-webkit-keyframes loadingCircle {
to {
transform:rotate(1turn)
}
}
@keyframes loadingCircle {
to {
transform:rotate(1turn)
}
}
.load-box {
position:fixed;
top:calc(50% - 11px);
left:calc(50% - 111px);
display:flex;
align-items:center;
}
.load-icon {
animation:loadingCircle 1s linear infinite;
}
.load-txt {
font-size:16px;
margin-left:10px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1,26 @@
/**
* Created by jiangxiang on 2016/3/14.
*/
//<2F><>ȡ<EFBFBD><C8A1><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>openID<49><44><EFBFBD><EFBFBD>
function getUrlParam(url, name) {
var pattern = new RegExp("[?&]" + name + "\=([^&]+)", "g");
var matcher = pattern.exec(url);
var items = null;
if (matcher != null) {
try {
items = decodeURIComponent(decodeURIComponent(matcher[1]));
} catch (e) {
try {
items = decodeURIComponent(matcher[1]);
} catch (e) {
items = matcher[1];
}
}
}
items = items.replace(/^\s*/, "");
return items;
}
var url = document.getElementById("url").innerText;
window.location.href = url;