Onload.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278
  1. //------------------------------------------------------------------------------------用戶桌面和程序數據初始化區域----------------------------------------------------------------------------------------------------------------
  2. Namespace.register("U.MD.D"); //桌面onload和桌面總控的命名空間
  3. /*
  4. window.onload的流程:
  5. 1、自由屬性的設置,例如:頁面識別id。允許瀏覽器多頁面瀏覽www.1473.cn
  6. 2、加載各種事件綁定,如:頁面大小監視,不允許選擇桌面文字,ie7以下瀏覽器頁面提示
  7. 3、加載桌面圖標。
  8. 4、加載跨域設置,如果沒有跨域,首頁數據無法獲取
  9. 4、加載首頁
  10. 5、加載廣告,QQ登錄等外鏈。
  11. UD和UC區別 uc是框架函數 ud為操作系統原殼 這裏的簡化的目標很簡單 只要有人應用ud 就會引用一個web操作系統 提供操作系統的功能應用
  12. 難題 :
  13. 1、命名和用戶沖突 會導致原web系統不可使用
  14. 2、函數沖突 如 用戶自帶window.resize這樣的函數 我們提供了接口 但是這個接口的的暴露性可見性體現出文檔的重要 宣傳文檔也就是文宣的重要性高了
  15. 3、有參數註釋的都為暴露接口類型 其他都為內部使用 更好的體現方式
  16. */
  17. //#region 配置區域,相當於全局變量定義
  18. U.MD.D.IsUseStudio = true;
  19. //本地存儲類
  20. U.MD.D.LocalStorage = null;
  21. //#endregion
  22. //#region onload處理
  23. /**
  24. * 系統初始化處理
  25. *
  26. * @param {function} 在外部項目應用該項目的時候 可以傳入cb這個參數,如果傳入了這個參數在回調跨域main.1473.cn加載成功會就會直接回調
  27. */
  28. window.onload = function () {
  29. U.MD.D.Load();
  30. U.MD.U.L.login();
  31. //U.MD.D.isLogin();
  32. // U.MD.D.fullscreen();
  33. U.MD.D.stopSafari();
  34. // window.addEventListener('resize', () => {
  35. // var realHeight = window.innerHeight
  36. // var realWidth = window.innerWidth
  37. // initViewport(realHeight, realWidth);
  38. // // window.location.reload();
  39. // })
  40. window.addEventListener('beforeunload', function (event) {
  41. // 阻止默认行为
  42. event.preventDefault();
  43. event.returnValue = '';
  44. // / 对某些浏览器有效
  45. });
  46. }
  47. US.Config = {
  48. server: '//cloud.api.cocorobo.hk/api/',
  49. api: '//cloud.api.cocorobo.hk/',
  50. chat: "//chat.api.cocorobo.cn/",
  51. edu: '//api.edu.cocorobo.cn/edu/',
  52. origin: '//cocorobo.cn',
  53. pbl: "//pbl.cocorobo.cn/api/pbl/",
  54. // bpbl:"//pbl.cocorobo.cn",//正式鏈接
  55. // bpbl:"//beta.pbl.cocorobo.cn",//測試鏈接
  56. bpbl:"//pbl.cocorobo.hk",//hk鏈接
  57. // pbl: "http://localhost:7003/api/pbl/",
  58. basename: '',
  59. type:1,
  60. background:'url("/img/icon/bgImg4.png")'
  61. }
  62. /**
  63. * 供外部調用的window.onload函數雲端系統啟動項
  64. *
  65. * @param {function} 在外部項目應用該項目的時候 可以傳入cb這個參數,如果傳入了這個參數在回調跨域main.1473.cn加載成功會就會直接回調
  66. */
  67. U.MD.D.Load = U.MD.D.FLoad = function (cb) {
  68. //這裏判斷是如果是www.1473.cn 或者 www.boomyun.com項目的時候 或者是 通過ufrom的跨域函數加載成功頁面時候可以執行window.onload, 添加判斷的目的主要是反正 其他項目引用uformd的時候自動執行window.onload報錯。
  69. //當引用雲端硬盤,好友模塊時需要在自己的js文件中添加window.onload入口函數,否則會觸發雲端的window.onload,導致系統報錯,
  70. //初始化桌面,如果是1473主站點那麼初始化桌面系統,否則外部引入1473不加載桌面
  71. //系統初始化、第一個就是加載桌面,然後初始化全局變量、綁定事件、最後加載數據(加載數據需要跨域加載,因為項目分離的原因,我們有disk.1473.cn、user.1473.cn、firend.1473.cn裏面有靜態數據,還有動態的後臺)
  72. if (U.MD.D.IsUseStudio) {
  73. //桌面初始化彈出
  74. U.selectEl("#UD_Dtop")[0].style.display = "block";
  75. //桌面做為一個置底的窗體
  76. new U.UF.UI.form(false, U.selectEl("#UD_Dtop")[0], { onresize: true, style: { "cssText": "width:100%;height:100%;padding:0;border:0;border-radius:0;box-shadow:0;position:static;" }, "className": "" }, { istop: false, isdrag: false, isdrag: false, isstretching: false, isenlarge: false, isnarrow: false, isclose: false }, null, { style: { "padding": "0" } });
  77. }
  78. //這裏加判斷的原因是怕有開發者開發的過程中直接調用uformd.js沒有寫跨域加載,沒有寫window.onload導致再運行的過程中找不到元素報錯
  79. if ($("#U_MD_Home")[0]) {
  80. //設置頁面大小等的全局變量
  81. U.MD.D.settingGlobalVariables();
  82. //瀏覽器事件監視及處理
  83. U.MD.D.addEvents();
  84. //var _browserinfo = U.UF.CI.getBrowser(); //獲取瀏覽器
  85. ////ie7以下的瀏覽器彈出不兼容的處理
  86. //if (_browserinfo["browser"] == "msie" && parseInt(_browserinfo["ver"]) < 7) {
  87. // //彈出不兼容的處理
  88. // U.MD.D.A.browserCompatibleForm();
  89. //}
  90. }
  91. //跨域加載
  92. U.MD.D.crossDomain(cb); //跨域初始化,裏面包含了用戶登錄
  93. }
  94. /**
  95. * 設置當前使用頁面大小
  96. */
  97. U.MD.D.settingGlobalVariables = function () {
  98. //獲取頁面的大小
  99. var _size = U.selectEl("body").getElementInfo();
  100. US.height = _size["CH"]; //獲取高度
  101. US.width = _size["CW"]; //獲取寬度
  102. //1473的登錄識別id
  103. US.systemId = 1;
  104. //頁面識別id 頁面唯一的識別 作為用戶訪問1473的唯一識別碼,在之前用戶獲取聊天室的信息的唯一識別碼
  105. US.pageId = Guid.newGuid();
  106. }
  107. /**
  108. * 系統監視
  109. */
  110. U.MD.D.addEvents = function () {
  111. //頁面活動狀態監視,失焦的時候停止五秒刷新,聚焦的時候開始刷新
  112. U.UF.EV.IsActivity(U.MD.D.focus, U.MD.D.blur);
  113. //監視頁面的點擊 使得窗體點擊為頂部
  114. U.UF.F.clickTopWindow();
  115. //頁面大小變化監視
  116. U.MD.D.reSize();
  117. window.onresize = U.MD.D.reSize;
  118. //如果是雲端1473則屏蔽菜單和錯誤彈框
  119. if (U.MD.D.IsUseStudio) {
  120. if (window.print) { //判斷是否有右鍵菜單
  121. document.oncontextmenu = U.UF.EV.stopDefault; //阻止桌面右鍵默認菜單
  122. }
  123. document.onselectstart = U.UF.C.shieldedSelect; //禁止文本選擇處理
  124. U.UF.EV.addElementEvent("keydown", document, U.UF.C.shieldedBackspace); //禁止瀏覽器回退
  125. //window.onerror = U.MD.D.error; //錯誤提示屏蔽
  126. }
  127. //允許錯誤提示和右鍵菜單
  128. else {
  129. window.onerror = null;
  130. }
  131. //頁面路由事件處理
  132. U.UF.N.route(U.MD.N.urlGuide);
  133. }
  134. /**
  135. * 頁面大小變化時,需要重新排列圖標及任務欄大小的變化.
  136. */
  137. U.MD.D.reSize = function () {
  138. //頁面變化處理
  139. //獲取頁面的大小
  140. // US.height = window.innerHeight > window.innerWidth ? window.innerWidth : window.innerHeight;
  141. // US.width = window.innerHeight > window.innerWidth ? window.innerHeight : window.innerWidth;
  142. var _size = U.selectEl("html").getElementInfo();
  143. if (_size["CH"] > 500) {
  144. //處理窗體區域 隨著頁面大小變化而變化
  145. U.UF.UI.form.windowResize();
  146. // var _size = U.selectEl("body").getElementInfo();
  147. US.height = _size["CH"]; //獲取高度
  148. US.width = _size["CW"]; //獲取寬度;
  149. document.body.style.width = US.width + 'px';
  150. document.body.style.height = US.height + 'px';
  151. //任務欄處理
  152. if ($("#U_MD_D_RW")) {
  153. U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  154. U.MD.D.T.taskbar.multitask($("#U_MD_D_RW")[0]);
  155. //桌面圖標處理
  156. if(US.Config.type == '1'){
  157. U.MD.D.iconPostion($("#U_MD_D_K").Child());
  158. }else{
  159. U.MD.D.iconPostion2($("#U_MD_D_K").Child());
  160. }
  161. }
  162. }
  163. }
  164. /**
  165. * 跨域引入1473
  166. * @param {function} 跨域加載成功後的回調函數
  167. */
  168. U.MD.D.crossDomain = function (cb) {
  169. U.MD.D.loadApplication(cb);
  170. ////跨域加載,如果是1473的跨域,那麼則添加跨域的iframe處理
  171. //if (document.domain == "1473.cn") {
  172. // U.UF.CD.loadAjaxCrossDomain(function () {
  173. // U.MD.D.loadApplication(cb);
  174. // });
  175. //}
  176. ////如果是非1473的跨域,添加跨域的iframe
  177. //else {
  178. // U.UF.CD.thirdPartyLoadAjaxCrossDomain(function () {
  179. // U.MD.D.loadApplication(cb);
  180. // });
  181. //}
  182. }
  183. /**
  184. * 加載user 、 friend 、disk的js
  185. */
  186. U.MD.D.loadApplication = function (cb) {
  187. //U.UF.CD.loadApplication(function () {
  188. // U.MD.D.asynCrossDomain(cb);
  189. //});
  190. U.MD.D.asynCrossDomain(cb);
  191. }
  192. /**
  193. * 域名加載成功後異步 此處可正式獲取數據
  194. * @param {function} 跨域加載成功後的回調函數
  195. */
  196. U.MD.D.asynCrossDomain = function (cb) {
  197. ////初始化url的處理
  198. //U.MD.N.urlGuide();
  199. ////通過cookie登錄
  200. //U.MD.U.L.cookieLogin();
  201. ////如果是1473則彈出1473的首頁
  202. //if (U.MD.D.IsUseStudio) {
  203. // U.MD.D.I.openApplication("boomYun");
  204. //}
  205. ////其它模塊加載處理
  206. //U.MD.D.otherModularLoad();
  207. ////添加用戶訪問記錄
  208. //U.UF.CI.getUserLocation(U.MD.D.visitLog);
  209. //桌面開始點,起始函數
  210. if ($("#UD_Dtop")[0]) {
  211. U.MD.D.I.init();
  212. }
  213. //如果其他站點進入1473,這裏是引入成功的回調處理
  214. if (U.UF.C.isFunction(cb)) {
  215. cb(); //回調處理
  216. }
  217. setInterval(function () {
  218. U.MD.D.getuser(); //用戶登錄
  219. }, 2000)
  220. setInterval(function () {
  221. U.MD.D.addLoginTime(); //用戶登錄
  222. }, 600000)
  223. }
  224. /**
  225. * 其它模塊的加載
  226. */
  227. U.MD.D.otherModularLoad = function () {
  228. //計時器消息初始化 每個3秒刷一次消息
  229. U.MD.C.T.onesetInterval();
  230. //加載如廣告 各模塊加載
  231. U.MD.D.thirdPartyLoad(); //頁面插件加載
  232. //html5本地存儲,暫時用來完成本地頁面交互消息 作用共享頁面信息,還未完善。
  233. //U.MD.D.record();
  234. }
  235. /**
  236. * 第三方廣告和登錄加載處理
  237. */
  238. U.MD.D.thirdPartyLoad = function () {
  239. //阿裏巴巴廣告加載
  240. // U.UF.DL.C.AD.alimama([
  241. // { pid: "mm_32325420_3265865_24254681", appkey: "", unid: "" },
  242. // { pid: "mm_32325420_3265865_14752067", appkey: "", unid: "" },
  243. // { pid: "mm_32325420_3265865_24246760", appkey: "", unid: "" },
  244. // { pid: "mm_32325420_3265865_24254681", appkey: "", unid: ""}]);
  245. //qq登錄加載按鈕
  246. // U.MD.U.OT.qqLoadJs({ btnId: "U_MD_U_L_login_O_T_app_QQ", size: "C_S" });
  247. //微博登錄加載按鈕
  248. // U.MD.U.OT.weiboLoadJs({ id: "U_MD_U_L_login_O_T_app_I", type: "3,2", show_head: false, show_name: false, show_cancel: false,
  249. // callback: { login: U.MD.U.OT.weiboLoginCallBack }
  250. // });
  251. //百度統計加載
  252. // U.UF.DL.C.AD.onloadBaiduJs("1fce47ee7e8655ddd108fca7116f0752");
  253. // U.UF.DL.C.AD.onloadBaiduJs("f0ececeb4f687bc4d4ffb7719f4cf6a7");
  254. }
  255. /**
  256. * 寫入訪問用戶信息
  257. */
  258. U.MD.D.visitLog = function () {
  259. U.A.Request(US.USER, ["AddToLoginLog", US.userInfo.UserId || US.EMPTYGUID, US.city.userAllLocation || ""], function () { }); //訪問日誌添加消息
  260. }
  261. //#endregion
  262. //#region 頁面事件處理
  263. //關閉頁面處理 把頁面的活動數-1
  264. window.onunload = function () {
  265. try {
  266. var _userinfo = US.userInfo;
  267. if (U.MD.D.LocalStorage) {
  268. var _count = U.MD.D.LocalStorage.get("ati") || 0;
  269. if (_count > 0) { _count-- };
  270. U.MD.D.LocalStorage.set("ati", _count); //這是活動用戶-1
  271. }
  272. if (_userinfo.UserId && U.A) { //在狀態中讓這個活動用戶下線
  273. U.A.Request(US.USER, ["UserOffline", _userinfo.UserId], function () { }, []);
  274. }
  275. } catch (e) { }
  276. }
  277. //錯誤處理,前端錯誤需要在控製臺輸出,同時提交到錯誤數據庫
  278. //window.onerror = function(sMessage,sUrl,sLine,columnNumber,errorObj){};
  279. //onerror函數的五個參數用於確定錯誤確切的信息,代表的意思依次為:
  280. //* @param {String} errorMessage errorMessage 錯誤信息
  281. //* @param {String} scriptURI 出錯的文件
  282. //* @param {Long} lineNumber 出錯代碼的行號
  283. //* @param {Long} columnNumber 出錯代碼的列號
  284. //* @param {Object} errorObj 錯誤的詳細信息,Anything
  285. U.MD.D.error = function (errorMessage, scripturi, linenumber, columnnumber, errorobj) {
  286. errorobj = errorobj || {}; //屏蔽js錯誤
  287. U.A.Request(US.USER, ["SetError", 0, (event.errorMessage || event || errorMessage), (scripturi || event.filename || event.errorUr) + "。行號:" + (linenumber || event.lineno || event.errorLine)], function () { }, []); //錯誤消息發送到數據庫
  288. U.UF.C.console(event.errorMessage || event || errorobj); //console 輸出錯誤信息
  289. return true; //不讓瀏覽器彈出錯誤報告,瀏覽器會彈出一個comfirm的錯誤。
  290. }
  291. /**
  292. * 用戶登錄處理
  293. */
  294. let LoginState = false
  295. U.MD.D.getuser = function () {
  296. // $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gif/longhuaBg.gif")'
  297. var userInfo = US.userInfo;
  298. var panId = userInfo && userInfo.accountNumber
  299. if (!LoginState &&!panId && !U.UF.C.queryString('code') && !U.UF.C.queryString('tycode')) {
  300. LoginState = true
  301. var _cookie = U.UF.Cookie.get("cocorobo");
  302. try {
  303. if (!panId && _cookie) {
  304. U.A.Request(US.Config.server + "getcookieuserid", [], function (res) {
  305. if (res.value && res.value[0] && res.value[0][0]) {
  306. var _user = res.value[0][0];
  307. U.A.Request(US.Config.edu + "admin/userinfo/userinfoById/" + _user.userid, [], function (res) {
  308. if (res.value && res.value[0] && res.value[0][0]) {
  309. US.userInfo = res.value[0][0]; //记录用户数据
  310. US.userInfo.userid = _user.userid;
  311. // if ($("#U_MD_HomeC_Pop")[0]) {
  312. // $("#U_MD_HomeC_Pop")[0].close(); //关闭登陆
  313. // }
  314. selectUser(_user.userid, (res) => {
  315. loginSet(res.value[0][0], res);
  316. });
  317. }else {
  318. LoginState = false
  319. }
  320. }, [], { "type": "GET", "withCredentials": true });
  321. }else {
  322. LoginState = false
  323. }
  324. }, [], { "type": "GET", "withCredentials": true });
  325. }else {
  326. LoginState = false
  327. }
  328. } catch (error) {
  329. LoginState = false
  330. }
  331. }else if(!LoginState &&!panId && U.UF.C.queryString('code').length === 32){
  332. if($("#U_MD_HomeC_Pop")[0]){
  333. $("#U_MD_HomeC_Pop")[0].close()
  334. }
  335. LoginState = true
  336. // console.log('新華跳轉',U.UF.C.queryString('code'))
  337. let url = "https://cloud.cocorobo.cn/api/getTeacherInfoByCode"
  338. var myHeaders = new Headers();
  339. // myHeaders.append("User-Agent", "Apifox/1.0.0 (https://apifox.com)");
  340. myHeaders.append("Content-Type", "application/json");
  341. // myHeaders.append("Access-Control-Allow-Origin","*")
  342. var raw = JSON.stringify({
  343. "code": U.UF.C.queryString('code')
  344. });
  345. var requestOptions = {
  346. method: 'POST',
  347. headers: myHeaders,
  348. body: raw,
  349. redirect: 'follow',
  350. credentials: 'include'
  351. };
  352. fetch(url, requestOptions)
  353. .then(response => response.text())
  354. .then(result => {
  355. // console.log(result)
  356. let data = JSON.parse(result).data
  357. if(JSON.parse(result).code == 200){
  358. let diqu = `${data.province}-${data.city}-${data.county}-${data.street}-${data.schoolName}`
  359. let diquId = data.schoolId
  360. U.A.Request(US.Config.pbl + "batchRegistrationSzdjg3", [data.realName, data.userUniqueId+"@xhly.com", 'a5efd078-20f6-4185-bef9-6d1c688bee70', data.schoolName || "", "", "", 1, data.userUniqueId,diqu,diquId], function (res) {
  361. // console.log(res);
  362. let loginData = JSON.stringify({
  363. openid: data.userUniqueId,
  364. edu: true
  365. })
  366. var requestOptionsLogin = {
  367. method: 'POST',
  368. headers: myHeaders,
  369. body: loginData,
  370. redirect: 'follow',
  371. credentials: 'include'
  372. };
  373. fetch("https://cloud.api.cocorobo.hk/api/user", requestOptionsLogin)
  374. .then(response => response.text())
  375. .then(result => {
  376. let a = JSON.parse(result)
  377. if(a.length>0){
  378. let userId = a[0][0].userid
  379. US.userInfo.userid = userId
  380. selectUser(userId, (res) => {
  381. loginSet(res.value[0][0], res);
  382. });
  383. }
  384. })
  385. .catch(error => {
  386. LoginState = false
  387. console.log('error', error)
  388. });
  389. }, [], { "type": "POST", "withCredentials": true })
  390. }else{
  391. U.Alert("用戶登錄已失效,請重新獲取登錄信息!");
  392. }
  393. })
  394. .catch(error => {
  395. LoginState = false
  396. console.log('error', error)
  397. });
  398. }else if(!LoginState &&!panId && U.UF.C.queryString('code').length < 32 && U.UF.C.queryString('code').length > 9){
  399. if($("#U_MD_HomeC_Pop")[0]){
  400. $("#U_MD_HomeC_Pop")[0].close()
  401. }
  402. LoginState = true
  403. let url = "https:" + US.Config.pbl + "luohugetTeacherInfo?code=" + encodeURIComponent(U.UF.C.queryString('code'));
  404. var myHeaders = new Headers();
  405. myHeaders.append("Content-Type", "application/json");
  406. var requestOptions = {
  407. method: 'GET',
  408. redirect: 'follow'
  409. };
  410. fetch(url, requestOptions)
  411. .then(response => response.text())
  412. .then(result => {
  413. // console.log(result)
  414. let data = JSON.parse(result).data
  415. // return
  416. if(JSON.parse(result).code == 0){
  417. let diqu = ``
  418. let diquId = data.loginid
  419. U.A.Request(US.Config.pbl + "batchRegistrationSzdjg3", [data.empname, data.loginid+"@luohu.com", 'c05b87d3-3d8e-4415-9dba-f3deccac4822', data.schoolname || "", data.mobile, "", data.identity === 1 ? 1 : 2, data.loginid,diqu,diquId], function (res) {
  420. // console.log(res);
  421. let loginData = JSON.stringify({
  422. openid: data.loginid,
  423. edu: true
  424. })
  425. var requestOptionsLogin = {
  426. method: 'POST',
  427. headers: myHeaders,
  428. body: loginData,
  429. redirect: 'follow',
  430. credentials: 'include'
  431. };
  432. fetch("https://cloud.api.cocorobo.hk/api/user", requestOptionsLogin)
  433. .then(response => response.text())
  434. .then(result => {
  435. let a = JSON.parse(result)
  436. if(a.length>0){
  437. let userId = a[0][0].userid
  438. US.userInfo.userid = userId
  439. selectUser(userId, (res) => {
  440. loginSet(res.value[0][0], res);
  441. });
  442. }
  443. })
  444. .catch(error => {
  445. LoginState = false
  446. console.log('error', error)
  447. });
  448. }, [], { "type": "POST", "withCredentials": true })
  449. }else{
  450. U.Alert("用户登录已失效,请重新获取登录信息!");
  451. }
  452. })
  453. .catch(error => {
  454. LoginState = false
  455. console.log('error', error)
  456. });
  457. }else if(!LoginState &&!panId && U.UF.C.queryString('tycode')){
  458. U.UF.DL.loading(document.body)
  459. if($("#U_MD_HomeC_Pop")[0]){
  460. $("#U_MD_HomeC_Pop")[0].close()
  461. }
  462. LoginState = true
  463. let url = "https://cloud.cocorobo.cn/api/getUserInfoByCode";
  464. var myHeaders = new Headers();
  465. myHeaders.append("Content-Type", "application/json");
  466. var requestOptions = {
  467. method: 'POST',
  468. headers: myHeaders,
  469. body: JSON.stringify({
  470. code: U.UF.C.queryString('tycode'),
  471. signature: U.UF.C.queryString('signature')
  472. }),
  473. redirect: 'follow'
  474. };
  475. fetch(url, requestOptions)
  476. .then(response => response.text())
  477. .then(result => {
  478. // console.log(result)
  479. let data = JSON.parse(result).data
  480. // return
  481. if(JSON.parse(result).code == 200){
  482. U.A.Request(US.Config.pbl + "batchRegistrationSzdjg3", [data.nickName, data.userId+"@tianyuan.com", 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc', data.orgName ? data.orgName : "e5cdf6b8-abdc-11ef-b887-005056b86db5", '', "", 1, data.userId,'',data.userId], function (res) {
  483. // console.log(res);
  484. let loginData = JSON.stringify({
  485. openid: data.userId,
  486. edu: true
  487. })
  488. var requestOptionsLogin = {
  489. method: 'POST',
  490. headers: myHeaders,
  491. body: loginData,
  492. redirect: 'follow',
  493. credentials: 'include'
  494. };
  495. fetch("https://cloud.api.cocorobo.hk/api/user", requestOptionsLogin)
  496. .then(response => response.text())
  497. .then(result => {
  498. let a = JSON.parse(result)
  499. if(a.length>0){
  500. let userId = a[0][0].userid
  501. US.userInfo.userid = userId
  502. selectUser(userId, (res) => {
  503. loginSet(res.value[0][0], res)
  504. U.UF.DL.uploading(document.body)
  505. });
  506. }
  507. })
  508. .catch(error => {
  509. LoginState = false
  510. console.log('error', error)
  511. });
  512. }, [], { "type": "POST", "withCredentials": true })
  513. }else{
  514. U.Alert("用户登录已失效,请重新获取登录信息!");
  515. U.UF.DL.uploading(document.body)
  516. }
  517. })
  518. .catch(error => {
  519. LoginState = false
  520. console.log('error', error)
  521. });
  522. } else if(panId){
  523. try {
  524. if(US.Config.type == '2'){
  525. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  526. if (userInfo.org == 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  527. U.MD.D.getNotice();
  528. }else if (userInfo.org == '150e3120-9195-11ed-b13d-005056b86db5') {
  529. U.MD.D.getNotice();
  530. } else if (userInfo.org == 'ee40e8e3-e36c-4872-8105-cf395481012s') {
  531. U.MD.D.getNotice();
  532. }
  533. }else{
  534. if (userInfo.organizeid == '91305d49-01ba-11ed-8c78-005056b86db4') {
  535. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/mingdeBg.png")'
  536. } else if (userInfo.organizeid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  537. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/zhongshanBg.png")'
  538. } else if (userInfo.organizeid == '580aac24-a939-49f7-a75a-40a7b5af3a17') {
  539. // $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/longweiBg.png")'
  540. } else if (userInfo.organizeid == 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41') {
  541. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/yunhaiBg.jpg")'
  542. } else if (userInfo.organizeid == '857af1c7-c8ee-4b04-85b5-fd182903adb7') {
  543. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/beijingBg.png")'
  544. } else if (userInfo.organizeid == '69893dca-1d47-11ed-8c78-005056b86db5') {
  545. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/weilaiBg.png")'
  546. } else if (userInfo.organizeid == 'efdef564-4064-11ed-8c78-005056b86db5') {
  547. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/pz.jpg")'
  548. } else if (userInfo.organizeid == 'd9db3320-503a-11ed-8c78-005056b86db5') {
  549. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/hzBg.png")'
  550. } else if (userInfo.organizeid == 'ccb9754d-59c1-11ed-8c78-005056b86db5') {
  551. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/nanfangBg.png")'
  552. } else if (userInfo.organizeid == 'f30a6615-5379-11ed-8c78-005056b86db5') {
  553. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/longhuaBg.png")'
  554. } else if (userInfo.organizeid == '4787cc87-6588-11ed-8c78-005056b86db5') {
  555. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/nanfangBg.png")'
  556. } else if (userInfo.organizeid == '9f888eae-7558-11ed-8c78-005056b86db5') {
  557. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/song.png")'
  558. } else if (userInfo.organizeid == '2b9ceb66-a1dd-11ed-b13d-005056b86db5') {
  559. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gmxxBg.png")'
  560. } else if (userInfo.organizeid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  561. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/wankeBg.png")'
  562. } else if (userInfo.organizeid == '82fcb5c7-c13b-11ed-8d51-005056b86db5') {
  563. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/qiaoxiangBg.png")'
  564. } else if (userInfo.organizeid == '4c686762-1d0a-11ed-8c78-005056b86db5') {
  565. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/sies.png")'
  566. } else if (userInfo.organizeid == 'ea2a8c65-f38c-11ed-91d8-005056b86db5') {
  567. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/longhuaZXBg.png")'
  568. } else if (userInfo.organizeid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  569. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/010606.png")'
  570. }
  571. if (userInfo.org == 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d') {
  572. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/yantianOrgBg.png")'
  573. } else if (userInfo.org == '7ada499f-4ec7-11ed-8c78-005056b86db5') {
  574. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/csteamBg.png")'
  575. } else if (userInfo.org == 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  576. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gm/bg.png")'
  577. U.MD.D.getNotice();
  578. } else if (userInfo.org == '97c4ee8b-d010-4042-986d-e9d3c217264f') {
  579. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/zhoujia.jpg")'
  580. } else if (userInfo.org == '150e3120-9195-11ed-b13d-005056b86db5') {
  581. if (!$("#tc_desktop_css")[0]) {
  582. const link = document.createElement("link");
  583. link.rel = "stylesheet";
  584. link.href =
  585. "./css/tencent/Desktop.css";
  586. link.id = "tc_desktop_css"
  587. document.body.appendChild(link);
  588. $(".avatar")[0].onclick= function(){
  589. U.MD.D.I.openApplication('tcData')
  590. }
  591. }
  592. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/tencentBg.jpg")'
  593. U.MD.D.getNotice();
  594. } else if (userInfo.org == 'ee40e8e3-e36c-4872-8105-cf395481012s') {
  595. $(".avatar")[0].onclick= function(){
  596. U.MD.D.I.openApplication('tcData')
  597. }
  598. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szscBg.png")'
  599. U.MD.D.getNotice();
  600. } else if (userInfo.org == 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc') {
  601. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/futianBg.png")'
  602. } else if (userInfo.org == 'e632b86c-f89d-11ed-91d8-005056b86db5') {
  603. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gdjgBg.png")'
  604. } else if (userInfo.org == '54f09f1e-09f0-11ee-91d8-005056b86db5') {
  605. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szlhyjBg.jpeg")'
  606. } else if (userInfo.org == '7b016f69-0f4f-11ee-91d8-005056b86db5') {
  607. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/dseiBg.png")'
  608. } else if (userInfo.org == '1973f6c7-1561-11ee-91d8-005056b86db5') {
  609. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szjkyBg2.png")'
  610. } else if (userInfo.org == '2fa75e51-189a-11ee-91d8-005056b86db5') {
  611. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/chjyjBg.png")'
  612. } else if (userInfo.org == '2a9f32ea-88df-49eb-aba1-0a286f691474') {
  613. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/qhBg.jpg")'
  614. } else if (userInfo.org == '884c5665-a453-46f3-b7b6-01d575290aa9') {
  615. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/scnuaiBg.png")'
  616. } else if (userInfo.org == '2fe1a080-4425-4620-b7a0-be2f3750ffd4') {
  617. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/x010607bgImg.png")'
  618. } else if (userInfo.org == 'ec84034b-8ea4-4d27-9cba-1adcb4720bb3') {
  619. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/SPROUTLabBg.png")'
  620. }
  621. }
  622. } catch (error) {
  623. // if ($("#U_MD_HomeC_Pop")[0]) {
  624. // $("#U_MD_HomeC_Pop")[0].close(); //关闭登陆
  625. // }
  626. selectUser(userInfo.userid, (res) => {
  627. loginSet(res.value[0][0], res);
  628. });
  629. }
  630. }
  631. }
  632. U.MD.D.addLoginTime = function(){
  633. var userInfo = US.userInfo;
  634. if(Object.keys(userInfo).length !== 0){
  635. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,'','3','600'], function (res) {
  636. }, [], { "type": "POST", "withCredentials": true });
  637. }
  638. }
  639. U.MD.D.getuser2 = function (userid, cid) {
  640. var myHeaders = new Headers();
  641. myHeaders.append("Content-Type", "application/json");
  642. let loginData = JSON.stringify({
  643. openid: userid,
  644. edu: true
  645. })
  646. var requestOptionsLogin = {
  647. method: 'POST',
  648. headers: myHeaders,
  649. body: loginData,
  650. redirect: 'follow',
  651. credentials: 'include' // 设置withCredentials为true
  652. };
  653. fetch("https://cloud.api.cocorobo.hk/api/user", requestOptionsLogin)
  654. .then(response => response.text())
  655. .then(result => {
  656. let a = JSON.parse(result)
  657. if(a.length>0){
  658. if($(".U_PBL_Check2")[0]){
  659. $(".U_PBL_Check2")[0].style.display = "none";
  660. }
  661. let userId = a[0][0].userid
  662. US.userInfo.userid = userId
  663. selectUser(userId, (res) => {
  664. if ($("#U_MD_HomeC_Pop")[0]) {
  665. $("#U_MD_HomeC_Pop")[0].close(); //关闭登陆
  666. }
  667. loginPan(res.value[0][0], userid)
  668. US.userInfo = res.value[0][0];
  669. $(".avatar")[0].style.display = "block";
  670. if (res.value[0][0].type === 1 && $(".U_PBL_Check")[0] && res.value[0][0].org != '150e3120-9195-11ed-b13d-005056b86db5' && res.value[0][0].org != 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc') {
  671. $(".U_PBL_Check")[0].style.display = "block";
  672. }
  673. $(".login")[0].style.display = "none";
  674. $(".register")[0].style.display = "none";
  675. $(".userName")[0].style.display = "block";
  676. $(".userName")[0].innerHTML = US.userInfo.username || US.userInfo.alias;
  677. $(".exit")[0].style.display = "block";
  678. let _vipbox = $('.U_MD_D_BD_vip_box')[0]
  679. _vipbox && (_vipbox.style.right = $(".U_MD_D_BD")[0].offsetWidth + 20 + 'px')
  680. if(res.value[0][0].type === 1 && res.value[0][0].org == 'c95e0a56-c205-11ed-8d51-005056b86db5'){
  681. U.MD.D.I.ModeCheck(2)
  682. }else{
  683. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  684. }
  685. if(res.value[0][0].type === 1 && window.location.hash.indexOf('project') != -1){
  686. U.MD.D.I.openApplication("project")
  687. }
  688. if(res.value[0][0].type === 1 && window.location.hash.indexOf('study') != -1){
  689. U.MD.D.I.openApplication("study")
  690. }
  691. if(res.value[0][0].type === 2 && window.location.hash.indexOf('study') != -1){
  692. U.MD.D.I.openApplication("studentStudy")
  693. }
  694. U.MD.O.P.connect(); //登录成功后连接socket服务同步协同编辑
  695. U.MD.D.I.openInApplication("studyDetail", cid, 2, 2)
  696. U.MD.D.I.openInApplication("studyDetail", cid, 2, 2)
  697. });
  698. }
  699. })
  700. .catch(error => {
  701. LoginState = false
  702. console.log('error', error)
  703. });
  704. }
  705. //#endregion
  706. //#region 獲取ifram下的html
  707. //U.MD.D.getIfraemHtml = function (src) {
  708. // var _iframe = $$("iframe", { src: src, style: { display: "none"} });
  709. // //跨域回調設置
  710. // U.UF.DL.iframeLoad(_iframe, function () {
  711. // var _html = _iframe.contentWindow.document.body.innerHTML;
  712. // console.log(_html);
  713. // U.selectEl(_iframe).remove();
  714. // });
  715. // U.selectEl(_iframe).appendTo($('body')[0]);
  716. //};
  717. //#endregion
  718. U.MD.D.fullscreen = function () {
  719. //if (document.body.offsetWidth < 1025) {
  720. U.UF.C.fullScreen()
  721. //}
  722. document.body.addEventListener('dblclick', () => {
  723. U.UF.C.fullScreen()
  724. // const isFullScreen = document.fullscreenElement
  725. // if (isFullScreen) {
  726. // U.UF.C.cancelfullScreen()
  727. // } else {
  728. // U.UF.C.fullScreen()
  729. // }
  730. })
  731. }
  732. U.MD.D.stopSafari = function () {
  733. //阻止safari瀏覽器雙擊放大功能
  734. let lastTouchEnd = 0 //更新手指彈起的時間
  735. document.documentElement.addEventListener("touchstart", function (event) {
  736. //多根手指同時按下屏幕,禁止默認行為
  737. if (event.touches.length > 1) {
  738. event.preventDefault();
  739. }
  740. });
  741. document.documentElement.addEventListener("touchend", function (event) {
  742. let now = (new Date()).getTime();
  743. if (now - lastTouchEnd <= 300) {
  744. //當兩次手指彈起的時間小於300毫秒,認為雙擊屏幕行為
  745. event.preventDefault();
  746. } else { // 否則重新手指彈起的時間
  747. lastTouchEnd = now;
  748. }
  749. }, false);
  750. //阻止雙指放大頁面
  751. document.documentElement.addEventListener("gesturestart", function (event) {
  752. event.preventDefault();
  753. });
  754. }
  755. U.MD.D.noticeBlock = '1'
  756. U.MD.D.OpenNotice = function () {
  757. let box = $('.U_MD_D_BD_notice')[0]
  758. box.style.display = 'block'
  759. }
  760. U.MD.D.cancelNotice = function () {
  761. U.UF.EV.stopBubble();
  762. let box = $('.U_MD_D_BD_notice')[0]
  763. box.style.display = 'none'
  764. U.MD.D.noticeBlock = '2'
  765. }
  766. U.MD.D.getNotice = function () {
  767. // a77e9404-efec-11e9-96f9-028edca3b798&oid=45facc0a-1211-11ec-80ad-005056b86db5&org=undefined&role=1
  768. var uid = US.userInfo.userid,
  769. oid = US.userInfo.organizeid,
  770. org = US.userInfo.org;
  771. U.A.Request(US.Config.pbl + "selectNotice?uid=" + uid + "&oid=" + oid + "&org=" + org + "&page=1", [], function (res) {
  772. if (res.value && res.value[0].length > 0) {
  773. let box = $('.U_MD_D_BD_noticeBox_box')[0]
  774. let _res = res.value[0]
  775. if (U.MD.D.noticeBlock == '1') {
  776. $('.U_MD_D_BD_notice')[0].style.display = 'block'
  777. }
  778. $('.U_MD_D_BD_notice_img')[0].style.display = 'block'
  779. box.innerHTML = ''
  780. var num = _res.length > 3 ? 3 : _res.length
  781. for (var i = 0; i < num; i++) {
  782. var _box = $$('div', { className: 'U_MD_D_BD_noticeBox' }, box)
  783. var _title = $$('div', { className: 'U_MD_D_BD_noticeBox_title' }, _box)
  784. // $$('span', { innerHTML: '消息通知' }, _title)
  785. $$('span', { innerHTML: _res[i].title }, _title)
  786. var _content = $$('div', { className: 'U_MD_D_BD_noticeBox_content' }, _box)
  787. $$('span', { innerHTML: _res[i].content.replace(/<[^>]*>/g, "") }, _content)
  788. var _time = $$('div', { className: 'U_MD_D_BD_noticeBox_time' }, _box)
  789. $$('span', { innerHTML: _res[i].creatTime }, _time)
  790. }
  791. } else {
  792. $('.U_MD_D_BD_notice')[0].style.display = 'none'
  793. $('.U_MD_D_BD_notice_img')[0].style.display = 'none'
  794. }
  795. // setTimeout(() => {
  796. // U.MD.D.getNotice();
  797. // }, 5000);
  798. }, [], { "type": "GET", "withCredentials": true });
  799. }
  800. // // 創建 video 元素並設置屬性
  801. // const video = document.createElement("video");
  802. // video.src = "../../img/icon/video/mxStart.mp4";
  803. // video.autoplay = true;
  804. // video.muted = true;
  805. // video.style="width: 100%;"
  806. // // 添加 video 元素到頁面
  807. // document.body.appendChild(video);
  808. // // 在視頻播放完成後刪除 video 元素
  809. // video.addEventListener("ended", () => {
  810. // document.body.removeChild(video);
  811. // });
  812. function formatDate(_date) {
  813. let time = _date.replace(/-/g, '/')
  814. let date = new Date(time);
  815. const year = date.getFullYear();
  816. const month = (date.getMonth() + 1).toString().padStart(2, "0");
  817. const day = date.getDate().toString().padStart(2, "0");
  818. const hours = date.getHours().toString().padStart(2, "0");
  819. const minutes = date.getMinutes().toString().padStart(2, "0");
  820. const seconds = date.getSeconds().toString().padStart(2, "0");
  821. return `${year}年${month}月${day}日`;
  822. }
  823. function formatDate2(_date) {
  824. let date = _date;
  825. const year = date.getFullYear();
  826. const month = (date.getMonth() + 1).toString().padStart(2, "0");
  827. const day = date.getDate().toString().padStart(2, "0");
  828. const hours = date.getHours().toString().padStart(2, "0");
  829. const minutes = date.getMinutes().toString().padStart(2, "0");
  830. const seconds = date.getSeconds().toString().padStart(2, "0");
  831. return `${year}年${month}月${day}日`;
  832. }
  833. function loginPan(userInfo, userId) {
  834. const currentDate = new Date();
  835. // 判斷 isLogin1 和 isLogin2 是否為 2 或者是否過期(且過期時間是有效的日期格式)
  836. if (
  837. userInfo.isLogin1 == 2 ||
  838. (userInfo.isLogin1 &&
  839. userInfo.isLogin1 != 1 &&
  840. userInfo.isLogin1 != 2 &&
  841. new Date(userInfo.isLogin1) < currentDate) ||
  842. userInfo.isLogin2 == 2 ||
  843. (userInfo.isLogin2 != 1 &&
  844. userInfo.isLogin2 != 2 &&
  845. new Date(userInfo.isLogin2) < currentDate) ||
  846. userInfo.state != 1
  847. ) {
  848. U.MD.U.LO.logoutSystem2();
  849. return;
  850. }
  851. let vipbox = $(".U_MD_D_BD_vip_box")[0];
  852. vipbox && (vipbox.style.display = "block");
  853. let vip_time = $(".vip_time")[0];
  854. let vtime = "";
  855. let vMember = "基礎用戶";
  856. // 獲取 isLogin1 和 isLogin2 的值
  857. let isLogin1 = userInfo.isLogin1;
  858. let isLogin2 = userInfo.isLogin2;
  859. if (isLogin2 != 1 && isLogin2 != null) {
  860. vtime = formatDate(isLogin2);
  861. vMember = "高級用戶";
  862. } else if (isLogin1 != 1 && isLogin1 != null) {
  863. vtime = formatDate(isLogin1);
  864. vMember = "高級用戶";
  865. } else if (
  866. (isLogin1 == 1 && isLogin2 == 1) ||
  867. (isLogin1 == null && isLogin2 == 1)
  868. ) {
  869. vtime = formatDate2(new Date(currentDate.setFullYear(currentDate.getFullYear() + 1)));
  870. vMember = "基礎用戶";
  871. }
  872. vip_time && (vip_time.innerHTML = vtime);
  873. let orgName = userInfo.orgName;
  874. let schoolName = userInfo.schoolName;
  875. let vip_school = $(".vip_school")[0];
  876. vip_school && (vip_school.innerHTML = orgName ? orgName : schoolName);
  877. let vip_member = $(".vip_member")[0];
  878. vip_member && (vip_member.innerHTML = vMember);
  879. U.A.Request(
  880. US.Config.pbl + "addLoginOperation",
  881. [userId],
  882. function (res) {},
  883. [],
  884. { type: "POST", withCredentials: true }
  885. );
  886. if (userInfo.organizeid == "91305d49-01ba-11ed-8c78-005056b86db4") {
  887. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/mingdeBg.png")';
  888. US.Config.background = 'url("/img/icon/mingdeBg.png")';
  889. } else if (
  890. userInfo.organizeid == "c7df0bd4-6e75-401a-a137-4e163aa62263"
  891. ) {
  892. $("#U_MD_D_BG")[0].style.backgroundImage =
  893. 'url("/img/icon/zhongshanBg.png")';
  894. US.Config.background = 'url("/img/icon/zhongshanBg.png")';
  895. } else if (
  896. userInfo.organizeid == "580aac24-a939-49f7-a75a-40a7b5af3a17"
  897. ) {
  898. // $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/longweiBg.png")'
  899. } else if (
  900. userInfo.organizeid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41"
  901. ) {
  902. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/yunhaiBg.jpg")';
  903. US.Config.background = 'url("/img/icon/yunhaiBg.png")';
  904. } else if (
  905. userInfo.organizeid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"
  906. ) {
  907. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/beijingBg.png")';
  908. US.Config.background = 'url("/img/icon/beijingBg.png")';
  909. } else if (
  910. userInfo.organizeid == "69893dca-1d47-11ed-8c78-005056b86db5"
  911. ) {
  912. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/weilaiBg.png")';
  913. US.Config.background = 'url("/img/icon/weilaiBg.png")';
  914. } else if (
  915. userInfo.organizeid == "efdef564-4064-11ed-8c78-005056b86db5"
  916. ) {
  917. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/pz.jpg")';
  918. US.Config.background = 'url("/img/icon/pz.png")';
  919. } else if (
  920. userInfo.organizeid == "d9db3320-503a-11ed-8c78-005056b86db5"
  921. ) {
  922. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/hzBg.png")';
  923. US.Config.background = 'url("/img/icon/hzBg.png")';
  924. } else if (
  925. userInfo.organizeid == "ccb9754d-59c1-11ed-8c78-005056b86db5"
  926. ) {
  927. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/nanfangBg.png")';
  928. US.Config.background = 'url("/img/icon/nanfangBg.png")';
  929. } else if (
  930. userInfo.organizeid == "f30a6615-5379-11ed-8c78-005056b86db5"
  931. ) {
  932. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/longhuaBg.png")';
  933. US.Config.background = 'url("/img/icon/longhuaBg.png")';
  934. } else if (
  935. userInfo.organizeid == "4787cc87-6588-11ed-8c78-005056b86db5"
  936. ) {
  937. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/nanfangBg.png")';
  938. US.Config.background = 'url("/img/icon/nanfangBg.png")';
  939. } else if (
  940. userInfo.organizeid == "9f888eae-7558-11ed-8c78-005056b86db5"
  941. ) {
  942. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/song.png")';
  943. US.Config.background = 'url("/img/icon/song.png")';
  944. } else if (
  945. userInfo.organizeid == "2b9ceb66-a1dd-11ed-b13d-005056b86db5"
  946. ) {
  947. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gmxxBg.png")';
  948. US.Config.background = 'url("/img/icon/gmxxBg.png")';
  949. } else if (
  950. userInfo.organizeid == "1c3b9def-8fbe-11ed-b13d-005056b86db5"
  951. ) {
  952. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/wankeBg.png")';
  953. US.Config.background = 'url("/img/icon/wankeBg.png")';
  954. } else if (
  955. userInfo.organizeid == "82fcb5c7-c13b-11ed-8d51-005056b86db5"
  956. ) {
  957. $("#U_MD_D_BG")[0].style.backgroundImage =
  958. 'url("/img/icon/qiaoxiangBg.png")';
  959. US.Config.background = 'url("/img/icon/qiaoxiangBg.png")';
  960. } else if (
  961. userInfo.organizeid == "4c686762-1d0a-11ed-8c78-005056b86db5"
  962. ) {
  963. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/sies.png")';
  964. US.Config.background = 'url("/img/icon/sies.png")';
  965. } else if (
  966. userInfo.organizeid == "ea2a8c65-f38c-11ed-91d8-005056b86db5"
  967. ) {
  968. $("#U_MD_D_BG")[0].style.backgroundImage =
  969. 'url("/img/icon/longhuaZXBg.png")';
  970. US.Config.background = 'url("/img/icon/longhuaZXBg.png")';
  971. } else if (
  972. userInfo.organizeid == "f297fbdc-f0a0-11ee-b534-005056b86db5"
  973. ) {
  974. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/010606.png")';
  975. US.Config.background = 'url("/img/icon/010606.png")';
  976. }
  977. if (userInfo.org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  978. $("#U_MD_D_BG")[0].style.backgroundImage =
  979. 'url("/img/icon/yantianOrgBg.png")';
  980. US.Config.background = 'url("/img/icon/yantianOrgBg.png")';
  981. } else if (userInfo.org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  982. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/csteamBg.png")';
  983. US.Config.background = 'url("/img/icon/csteamBg.png")';
  984. } else if (userInfo.org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  985. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gm/bg.png")';
  986. US.Config.background = 'url("/img/icon/bg.png")';
  987. U.MD.D.getNotice();
  988. } else if (userInfo.org == "97c4ee8b-d010-4042-986d-e9d3c217264f") {
  989. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/zhoujia.jpg")';
  990. US.Config.background = 'url("/img/icon/zhoujia.png")';
  991. } else if (userInfo.org == "150e3120-9195-11ed-b13d-005056b86db5") {
  992. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/tencentBg.jpg")';
  993. US.Config.background = 'url("/img/icon/tencentBg.png")';
  994. U.MD.D.getNotice();
  995. } else if (userInfo.org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  996. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szscBg.png")';
  997. US.Config.background = 'url("/img/icon/szscBg.png")';
  998. U.MD.D.getNotice();
  999. } else if (userInfo.org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") {
  1000. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/futianBg.png")';
  1001. US.Config.background = 'url("/img/icon/futianBg.png")';
  1002. } else if (userInfo.org == "e632b86c-f89d-11ed-91d8-005056b86db5") {
  1003. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/gdjgBg.png")';
  1004. US.Config.background = 'url("/img/icon/gdjgBg.png")';
  1005. } else if (userInfo.org == "54f09f1e-09f0-11ee-91d8-005056b86db5") {
  1006. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szlhyjBg.jpeg")';
  1007. US.Config.background = 'url("/img/icon/szlhyjBg.jpeg")';
  1008. } else if (userInfo.org == "7b016f69-0f4f-11ee-91d8-005056b86db5") {
  1009. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/dseiBg.png")';
  1010. US.Config.background = 'url("/img/icon/dseiBg.png")';
  1011. } else if (userInfo.org == "1973f6c7-1561-11ee-91d8-005056b86db5") {
  1012. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/szjkyBg2.png")';
  1013. US.Config.background = 'url("/img/icon/szjkyBg2.png")';
  1014. } else if (userInfo.org == "2fa75e51-189a-11ee-91d8-005056b86db5") {
  1015. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/chjyjBg.png")';
  1016. US.Config.background = 'url("/img/icon/chjyjBg.png")';
  1017. } else if (userInfo.org == "2a9f32ea-88df-49eb-aba1-0a286f691474") {
  1018. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/qhBg.jpg")';
  1019. US.Config.background = 'url("/img/icon/qhBg.jpg")';
  1020. } else if (userInfo.org == "884c5665-a453-46f3-b7b6-01d575290aa9") {
  1021. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/scnuaiBg.png")';
  1022. US.Config.background = 'url("/img/icon/scnuaiBg.png")';
  1023. } else if (userInfo.org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  1024. $("#U_MD_D_BG")[0].style.backgroundImage =
  1025. 'url("/img/icon/x010607bgImg.png")';
  1026. US.Config.background = 'url("/img/icon/x010607bgImg.png")';
  1027. } else if (userInfo.org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  1028. $("#U_MD_D_BG")[0].style.backgroundImage =
  1029. 'url("/img/icon/SPROUTLabBg.png")';
  1030. US.Config.background = 'url("/img/icon/SPROUTLabBg.png")';
  1031. } else if (
  1032. userInfo.org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc"
  1033. ) {
  1034. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/Tianyuan.png")';
  1035. US.Config.background = 'url("/img/icon/Tianyuan.png")';
  1036. }
  1037. US.userInfo = userInfo;
  1038. U.MD.D.addOp3("1", "", { type: "user_login" }, "success")
  1039. $(".avatar")[0].style.display = "block";
  1040. if (
  1041. userInfo.type === 1 &&
  1042. $(".U_PBL_Check")[0] &&
  1043. userInfo.org != "150e3120-9195-11ed-b13d-005056b86db5" && userInfo.org != 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc'
  1044. ) {
  1045. $(".U_PBL_Check")[0].style.display = "block";
  1046. }
  1047. }
  1048. function loginSet(userInfo, res){
  1049. if ($("#U_MD_HomeC_Pop")[0]) {
  1050. $("#U_MD_HomeC_Pop")[0].close(); //关闭登陆
  1051. }
  1052. let userId = userInfo.userid
  1053. if (res.value == null || res.value[0].length == 0) {
  1054. // U.MD.D.I.openApplication("my")
  1055. let _name = US.userInfo.alias ? US.userInfo.alias : US.userInfo.username
  1056. let _type = US.userInfo == 1 ? 2 : 1
  1057. // US.Config.pbl
  1058. // "http://localhost:7003/api/pbl/"
  1059. U.A.Request(US.Config.pbl + "updatePblMessage", [userId, _name, _type, '16d397f3-b192-11ed-9211-005056b86db5', '', '', "0"], function (res) {
  1060. window.location.reload();
  1061. }, [], { "type": "POST", "withCredentials": true });
  1062. } else {
  1063. loginPan(userInfo, userId)
  1064. }
  1065. if($(".U_PBL_Check2")[0]){
  1066. $(".U_PBL_Check2")[0].style.display = "none";
  1067. }
  1068. $(".login")[0].style.display = "none";
  1069. $(".register")[0].style.display = "none";
  1070. $(".userName")[0].style.display = "block";
  1071. $(".userName")[0].innerHTML = US.userInfo.username || US.userInfo.alias;
  1072. $(".exit")[0].style.display = "block";
  1073. let _vipbox = $('.U_MD_D_BD_vip_box')[0]
  1074. _vipbox && (_vipbox.style.right = $(".U_MD_D_BD")[0].offsetWidth + 20 + 'px')
  1075. if(userInfo.type === 1 && userInfo.org == 'c95e0a56-c205-11ed-8d51-005056b86db5'){
  1076. U.MD.D.I.ModeCheck(2)
  1077. }else{
  1078. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1079. }
  1080. if(userInfo.type === 1 && userInfo.org == "f3b243b2-75e2-4b00-8f66-7644946a2a25"){
  1081. U.MD.D.I.openApplication("appStore")
  1082. }
  1083. let shareCourseId = window.location.href.indexOf("?shareCourseId=")!=-1?window.location.href.split("?shareCourseId=")[1].toString():''
  1084. if(shareCourseId){
  1085. console.log(shareCourseId);
  1086. U.MD.D.I.openInApplication("studyDetail", shareCourseId, 5, 1)
  1087. }
  1088. if(userInfo.type === 1 && window.location.hash.indexOf('project') != -1){
  1089. U.MD.D.I.openApplication("project")
  1090. }
  1091. if(userInfo.type === 1 && window.location.hash.indexOf('study') != -1){
  1092. U.MD.D.I.openApplication("study")
  1093. }
  1094. if(userInfo.type === 2 && window.location.hash.indexOf('study') != -1){
  1095. U.MD.D.I.openApplication("studentStudy")
  1096. }
  1097. if(userInfo.type === 1 && U.UF.C.queryString('tycode') && U.UF.C.queryString('app')){
  1098. U.MD.D.I.openApplication(U.UF.C.queryString('app'))
  1099. }
  1100. U.MD.O.P.connect(); //登录成功后连接socket服务同步协同编辑
  1101. }
  1102. function selectUser(uid, callback) {
  1103. var userInfo = US.userInfo;
  1104. var panId = userInfo && userInfo.accountNumber
  1105. if(panId){
  1106. let res = {value:[[userInfo]]}
  1107. if (callback) callback(res);
  1108. return
  1109. }
  1110. const requestUser = () => {
  1111. U.A.Request(`${US.Config.pbl}selectUser?userid=${uid}`, [], function (res) {
  1112. if(res && res.value && res.value.length && res.value[0].length && res.value[0][0].userid){
  1113. if (callback) callback(res);
  1114. }else {
  1115. U.alert("获取用户信息失败,正在重试!")
  1116. LoginState = false
  1117. requestUser();
  1118. }
  1119. }, [], { "type": "GET", "withCredentials": true });
  1120. };
  1121. try {
  1122. requestUser();
  1123. } catch (error) {
  1124. U.alert("登录失败,正在重试!")
  1125. LoginState = false
  1126. requestUser();
  1127. }
  1128. }
  1129. function detectBrowser() {
  1130. const ua = navigator.userAgent;
  1131. // 按优先级顺序检测
  1132. if (ua.includes("Edg/") || ua.includes("Edge/")) {
  1133. return "Microsoft Edge";
  1134. } else if (ua.includes("Firefox")) {
  1135. return "Mozilla Firefox";
  1136. } else if (ua.includes("Trident") || ua.includes("MSIE")) {
  1137. return "Internet Explorer";
  1138. } else if (ua.includes("360EE")) {
  1139. return "360 Browser (极速模式)";
  1140. } else if (ua.includes("360SE")) {
  1141. return "360 Browser (安全模式)";
  1142. } else if (ua.includes("SLBrowser")) {
  1143. return "QQ Browser";
  1144. } else if (ua.includes("UCBrowser")) {
  1145. return "UC Browser";
  1146. } else if (ua.includes("Opera") || ua.includes("OPR/")) {
  1147. return "Opera";
  1148. } else if (ua.includes("Chrome") && !ua.includes("Edg/")) {
  1149. return "Google Chrome";
  1150. } else if (ua.includes("Safari/") && !ua.includes("Chrome")) {
  1151. return "Safari";
  1152. } else {
  1153. return "Other Browser";
  1154. }
  1155. }
  1156. U.MD.D.addOp3 = async (userTime, loadTime, object, status) => {
  1157. let browser = detectBrowser()
  1158. let _time = new Date().toLocaleString('zh-CN', { hour12: false, timeZone: 'Asia/Shanghai' }).replace(/\//g, '-');
  1159. let params = {
  1160. userid: US.userInfo.userid,
  1161. username: US.userInfo.name,
  1162. accountNumber: US.userInfo.accountNumber,
  1163. org: US.userInfo.orgName,
  1164. school: US.userInfo.schoolName,
  1165. role: US.userInfo.type == '1' ? '老师' : '学生',
  1166. browser: browser,
  1167. userTime: userTime == '1' ? _time : userTime, // 使用时间 1次的就1 其次传秒
  1168. loadTime: loadTime, //load的时间没有就“”
  1169. object: JSON.stringify(object), //执行信息传json
  1170. status: status, //成功返回success。失败返回error的信息
  1171. }
  1172. fetch("https://pbl.cocorobo.cn/api/mongo/updateUserData2P", { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(params) }).then(res => {
  1173. if (res.status == 200) {
  1174. console.log('保存成功')
  1175. } else {
  1176. console.log('保存失败')
  1177. }
  1178. }).catch(e => {
  1179. console.log('保存失败')
  1180. console.log(e);
  1181. })
  1182. }