去除全局APP_URL

This commit is contained in:
邹景立 2017-02-16 15:56:54 +08:00
parent 1440b4fd8a
commit fa1db87634
3 changed files with 11 additions and 57 deletions

View File

@ -1 +1,3 @@
<?php
return [];

View File

@ -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}));
});
});
});

View File

@ -1,4 +1,4 @@
define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
define(['jquery', 'admin.plugs'], function () {
/** 事件委派 */
$('body').on('click', '[data-load]', function () {
@ -24,11 +24,11 @@ define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
});
}).on('click', '[data-update]', function () {
var id = $(this).attr('data-update') || (function () {
var data = [];
return $($(this).attr('data-list-target') || 'input.list-check-box').map(function () {
(this.checked) && data.push(this.value);
}), data.join(',');
}).call(this);
var data = [];
return $($(this).attr('data-list-target') || 'input.list-check-box').map(function () {
(this.checked) && data.push(this.value);
}), data.join(',');
}).call(this);
if (id.length < 1) {
return $.msg.tips('请选择需要操作的数据!');
}
@ -48,13 +48,13 @@ define(['jquery', 'admin.plugs', 'jquery.icheck'], function () {
var method = $(this).attr('data-one') ? 'one' : 'index';
var title = $(this).attr('data-title') || '文件管理';
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 || '文件管理');
}).on('click', '[data-iframe]', function () {
$.form.iframe($(this).attr('data-iframe'), $(this).attr('data-title') || '窗口');
}).on('click', '[data-icon]', function () {
var field = $(this).attr('data-field') || 'iconv';
var url = window.APP_URL + '/plugs/icon.html?field=' + field;
var field = $(this).attr('data-field') || 'icon';
var url = window.ROOT_URL + '/index.php/plugs/icon.html?field=' + field;
$.form.iframe(url, '图标选择');
}).on('click', '[data-tips-image]', function () {
var src = this.getAttribute('data-tips-image') || this.src, img = new Image();