mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
去除全局APP_URL
This commit is contained in:
parent
1440b4fd8a
commit
fa1db87634
@ -1 +1,3 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
return [];
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
|
|
||||||
require(['socket', 'layui', 'json'], function () {
|
|
||||||
layui.config({dir: baseUrl + 'plugs/layui/'});
|
|
||||||
WEB_SOCKET_DEBUG = true;
|
|
||||||
WEB_SOCKET_SWF_LOCATION = "//cdn.bootcss.com/web-socket-js/1.0.0/WebSocketMain.swf";
|
|
||||||
var userinfo = {
|
|
||||||
};
|
|
||||||
var socket;
|
|
||||||
function connect_socket() {
|
|
||||||
socket = new WebSocket('ws://basic.demo.cuci.cc:8888');
|
|
||||||
socket.onopen = function () {
|
|
||||||
socket.send(JSON.stringify({type: 'init'}));
|
|
||||||
};
|
|
||||||
socket.onmessage = function (e) {
|
|
||||||
var msg = JSON.parse(e.data);
|
|
||||||
switch (msg.type) {
|
|
||||||
case 'push':
|
|
||||||
for (var i in msg.data) {
|
|
||||||
if (userinfo['id'] !== msg.data[i].id)
|
|
||||||
{
|
|
||||||
console.log(msg.data[i]);
|
|
||||||
layui.layim.getMessage(msg.data[i]);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
socket.onclose = connect_socket;
|
|
||||||
}
|
|
||||||
connect_socket.call(this);
|
|
||||||
layui.use('layim', function (layim) {
|
|
||||||
//基础配置
|
|
||||||
layim.config({
|
|
||||||
init: {
|
|
||||||
url: 'http://basic.demo.cuci.cc/socket/init.html'
|
|
||||||
}
|
|
||||||
, find: ''
|
|
||||||
, copyright: true
|
|
||||||
});
|
|
||||||
//监听发送消息
|
|
||||||
layim.on('sendMessage', function (data) {
|
|
||||||
socket.send(JSON.stringify({type: 'msg', data: data}));
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
|
@ -1,4 +1,4 @@
|
|||||||
define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
|
define(['jquery', 'admin.plugs'], function () {
|
||||||
|
|
||||||
/** 事件委派 */
|
/** 事件委派 */
|
||||||
$('body').on('click', '[data-load]', function () {
|
$('body').on('click', '[data-load]', function () {
|
||||||
@ -24,11 +24,11 @@ define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
|
|||||||
});
|
});
|
||||||
}).on('click', '[data-update]', function () {
|
}).on('click', '[data-update]', function () {
|
||||||
var id = $(this).attr('data-update') || (function () {
|
var id = $(this).attr('data-update') || (function () {
|
||||||
var data = [];
|
var data = [];
|
||||||
return $($(this).attr('data-list-target') || 'input.list-check-box').map(function () {
|
return $($(this).attr('data-list-target') || 'input.list-check-box').map(function () {
|
||||||
(this.checked) && data.push(this.value);
|
(this.checked) && data.push(this.value);
|
||||||
}), data.join(',');
|
}), data.join(',');
|
||||||
}).call(this);
|
}).call(this);
|
||||||
if (id.length < 1) {
|
if (id.length < 1) {
|
||||||
return $.msg.tips('请选择需要操作的数据!');
|
return $.msg.tips('请选择需要操作的数据!');
|
||||||
}
|
}
|
||||||
@ -48,13 +48,13 @@ define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
|
|||||||
var method = $(this).attr('data-one') ? 'one' : 'index';
|
var method = $(this).attr('data-one') ? 'one' : 'index';
|
||||||
var title = $(this).attr('data-title') || '文件管理';
|
var title = $(this).attr('data-title') || '文件管理';
|
||||||
var uptype = $(this).attr('data-uptype') || 'qiniu';
|
var uptype = $(this).attr('data-uptype') || 'qiniu';
|
||||||
var url = window.APP_URL + '/plugs/file/' + method + '.html?uptype=' + uptype + '&type=' + type + '&field=' + field;
|
var url = window.ROOT_URL + '/index.php/plugs/file/' + method + '.html?uptype=' + uptype + '&type=' + type + '&field=' + field;
|
||||||
$.form.iframe(url, title || '文件管理');
|
$.form.iframe(url, title || '文件管理');
|
||||||
}).on('click', '[data-iframe]', function () {
|
}).on('click', '[data-iframe]', function () {
|
||||||
$.form.iframe($(this).attr('data-iframe'), $(this).attr('data-title') || '窗口');
|
$.form.iframe($(this).attr('data-iframe'), $(this).attr('data-title') || '窗口');
|
||||||
}).on('click', '[data-icon]', function () {
|
}).on('click', '[data-icon]', function () {
|
||||||
var field = $(this).attr('data-field') || 'iconv';
|
var field = $(this).attr('data-field') || 'icon';
|
||||||
var url = window.APP_URL + '/plugs/icon.html?field=' + field;
|
var url = window.ROOT_URL + '/index.php/plugs/icon.html?field=' + field;
|
||||||
$.form.iframe(url, '图标选择');
|
$.form.iframe(url, '图标选择');
|
||||||
}).on('click', '[data-tips-image]', function () {
|
}).on('click', '[data-tips-image]', function () {
|
||||||
var src = this.getAttribute('data-tips-image') || this.src, img = new Image();
|
var src = this.getAttribute('data-tips-image') || this.src, img = new Image();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user