同步更新插件代码

This commit is contained in:
邹景立 2023-06-16 16:33:31 +08:00
parent 58465920ee
commit 7da0b76705
22 changed files with 333 additions and 1288 deletions

View File

@ -14,6 +14,8 @@
// | github 代码仓库https://github.com/zoujingli/think-plugs-admin // | github 代码仓库https://github.com/zoujingli/think-plugs-admin
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
declare(strict_types=1);
namespace app\admin; namespace app\admin;
use think\admin\Plugin; use think\admin\Plugin;
@ -26,7 +28,13 @@ use think\admin\Plugin;
class Service extends Plugin class Service extends Plugin
{ {
/** /**
* 定义安装包名称 * 定义插件名称
* @var string
*/
protected $appName = '系统管理';
/**
* 定义安装包名
* @var string * @var string
*/ */
protected $package = 'zoujingli/think-plugs-admin'; protected $package = 'zoujingli/think-plugs-admin';

View File

@ -35,6 +35,24 @@ class Plugs extends Controller
public function icon() public function icon()
{ {
$this->title = '图标选择器'; $this->title = '图标选择器';
// 读取 layui 字体图标
if (empty($this->layuiIcons = $this->app->cache->get('LayuiIcons', []))) {
$style = file_get_contents(syspath('public/static/plugs/layui/css/layui.css'));
if (preg_match_all('#\.(layui-icon-[\w-]+):#', $style, $matches)) {
if (count($this->layuiIcons = $matches[1]) > 0) {
$this->app->cache->set('LayuiIcons', $this->layuiIcons, 60);
}
}
}
// 读取自定义字体图标
if (empty($this->thinkIcons = $this->app->cache->get('ThinkAdminSelfIcons', []))) {
$style = file_get_contents(syspath('public/static/theme/css/iconfont.css'));
if (preg_match_all('#\.(iconfont-[\w-]+):#', $style, $matches)) {
if (count($this->thinkIcons = $matches[1]) > 0) {
$this->app->cache->set('ThinkAdminSelfIcons', $this->thinkIcons, 60);
}
}
}
$this->field = $this->app->request->get('field', 'icon'); $this->field = $this->app->request->get('field', 'icon');
$this->fetch(realpath(__DIR__ . '/../../view/api/icon.html')); $this->fetch(realpath(__DIR__ . '/../../view/api/icon.html'));
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,9 @@
<div class="image-dialog" id="ImageDialog"> <div class="image-dialog" id="ImageDialog">
<div class="image-dialog-head"> <div class="image-dialog-head">
<div class="pull-left flex"> <label class="pull-left flex">
<input class="layui-input margin-right-5" v-model="keys" style="height:30px;line-height:30px" placeholder="请输入搜索关键词"> <input class="layui-input margin-right-5" v-model="keys" style="height:30px;line-height:30px" placeholder="请输入搜索关键词">
<a class="layui-btn layui-btn-sm layui-btn-normal" @click="search"> </a> <a class="layui-btn layui-btn-sm layui-btn-normal" @click="search"> </a>
</div> </label>
<div class="pull-right"> <div class="pull-right">
<a class="layui-btn layui-btn-sm layui-btn-normal" @click="uploadImage">上传图片</a> <a class="layui-btn layui-btn-sm layui-btn-normal" @click="uploadImage">上传图片</a>
</div> </div>

View File

@ -29,7 +29,13 @@ use think\admin\Plugin;
class Service extends Plugin class Service extends Plugin
{ {
/** /**
* 定义当前包名 * 定义插件名称
* @var string
*/
protected $appName = '微信管理';
/**
* 定义安装包名
* @var string * @var string
*/ */
protected $package = 'zoujingli/think-plugs-wechat'; protected $package = 'zoujingli/think-plugs-wechat';

View File

@ -13,7 +13,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
/*! 应用根路径,静态插件库路径,动态插件库路径 */ /*! 应用根路径,静态插件库路径,动态插件库路径 */
var srcs = document.scripts[document.scripts.length - 1].src.split('/'); let srcs = document.scripts[document.scripts.length - 1].src.split('/');
window.appRoot = srcs.slice(0, -2).join('/') + '/'; window.appRoot = srcs.slice(0, -2).join('/') + '/';
window.baseRoot = srcs.slice(0, -1).join('/') + '/'; window.baseRoot = srcs.slice(0, -1).join('/') + '/';
window.tapiRoot = window.taAdmin || window.appRoot + "admin"; window.tapiRoot = window.taAdmin || window.appRoot + "admin";
@ -90,70 +90,73 @@ $(function () {
window.$body = $('body'); window.$body = $('body');
/*! 注册单次事件 */ /*! 基础函数工具 */
function onEvent(event, select, callable) { $.base = new function () {
return $body.off(event, select).on(event, select, callable); /*! 注册单次事件 */
} this.onEvent = function (event, select, callable) {
return $body.off(event, select).on(event, select, callable);
};
/*! 注册确认回调 */ /*! 注册确认回调 */
function onConfirm(confirm, callable) { this.onConfirm = function (confirm, callable) {
return confirm ? $.msg.confirm(confirm, callable) : callable(); return confirm ? $.msg.confirm(confirm, callable) : callable();
} };
/*! 获取加载回调 */ /*! 获取加载回调 */
onConfirm.getLoadCallable = function (tabldId, callable) { this.onConfirm.getLoadCallable = function (tabldId, callable) {
typeof callable === 'function' && callable(); typeof callable === 'function' && callable();
return tabldId ? function (ret, time) { return tabldId ? function (ret, time) {
if (ret.code < 1) return true; if (ret.code < 1) return true;
time === 'false' ? $.layTable.reload(tabldId) : $.msg.success(ret.info, time, function () { time === 'false' ? $.layTable.reload(tabldId) : $.msg.success(ret.info, time, function () {
$.layTable.reload(tabldId); $.layTable.reload(tabldId);
});
return false;
} : false;
}
/*! 读取 data-value & data-rule 并应用到 callable */
function applyRuleValue(elem, data, callabel) {
// 新 tableId 规则兼容处理
if (elem.dataset.tableId && elem.dataset.rule) {
var idx1, idx2, temp, regx, field, rule = {};
var json = layui.table.checkStatus(elem.dataset.tableId).data;
layui.each(elem.dataset.rule.split(';'), function (idx, item, attr) {
attr = item.split('#', 2), rule[attr[0]] = attr[1];
});
for (idx1 in rule) {
temp = [], regx = new RegExp(/^{(.*?)}$/);
if (regx.test(rule[idx1]) && (field = rule[idx1].replace(regx, '$1'))) {
for (idx2 in json) if (json[idx2][field]) temp.push(json[idx2][field]);
if (temp.length < 1) return $.msg.tips('请选择需要更改的数据!'), false;
data[idx1] = temp.join(',');
} else {
data[idx1] = rule[idx1];
}
}
return onConfirm(elem.dataset.confirm, function () {
return callabel.call(elem, data, elem, elem.dataset || {});
});
} else if (elem.dataset.value || elem.dataset.rule) {
var value = elem.dataset.value || (function (rule, array) {
$(elem.dataset.target || 'input[type=checkbox].list-check-box').map(function () {
this.checked && array.push(this.value);
}); });
return array.length > 0 ? rule.replace('{key}', array.join(',')) : ''; return false;
})(elem.dataset.rule || '', []) || ''; } : false;
if (value.length < 1) return $.msg.tips('请选择需要更改的数据!'), false; };
value.split(';').forEach(function (item) {
data[item.split('#')[0]] = item.split('#')[1]; /*! 读取 data-value & data-rule 并应用到 callable */
}); this.applyRuleValue = function (elem, data, callabel) {
return onConfirm(elem.dataset.confirm, function () { // 新 tableId 规则兼容处理
return callabel.call(elem, data, elem, elem.dataset || {}); if (elem.dataset.tableId && elem.dataset.rule) {
}); let idx1, idx2, temp, regx, field, rule = {};
} else { let json = layui.table.checkStatus(elem.dataset.tableId).data;
return onConfirm(elem.dataset.confirm, function () { layui.each(elem.dataset.rule.split(';'), function (idx, item, attr) {
return callabel.call(elem, data, elem, elem.dataset || {}); attr = item.split('#', 2), rule[attr[0]] = attr[1];
}); });
for (idx1 in rule) {
temp = [], regx = new RegExp(/^{(.*?)}$/);
if (regx.test(rule[idx1]) && (field = rule[idx1].replace(regx, '$1'))) {
for (idx2 in json) if (json[idx2][field]) temp.push(json[idx2][field]);
if (temp.length < 1) return $.msg.tips('请选择需要更改的数据!'), false;
data[idx1] = temp.join(',');
} else {
data[idx1] = rule[idx1];
}
}
return $.base.onConfirm(elem.dataset.confirm, function () {
return callabel.call(elem, data, elem, elem.dataset || {});
});
} else if (elem.dataset.value || elem.dataset.rule) {
let value = elem.dataset.value || (function (rule, array) {
$(elem.dataset.target || 'input[type=checkbox].list-check-box').map(function () {
this.checked && array.push(this.value);
});
return array.length > 0 ? rule.replace('{key}', array.join(',')) : '';
})(elem.dataset.rule || '', []) || '';
if (value.length < 1) return $.msg.tips('请选择需要更改的数据!'), false;
value.split(';').forEach(function (item) {
data[item.split('#')[0]] = item.split('#')[1];
});
return $.base.onConfirm(elem.dataset.confirm, function () {
return callabel.call(elem, data, elem, elem.dataset || {});
});
} else {
return $.base.onConfirm(elem.dataset.confirm, function () {
return callabel.call(elem, data, elem, elem.dataset || {});
});
}
} }
} };
/*! 消息组件实例 */ /*! 消息组件实例 */
$.msg = new function () { $.msg = new function () {
@ -173,32 +176,32 @@ $(function () {
/*! 关闭消息框 */ /*! 关闭消息框 */
this.close = function (idx) { this.close = function (idx) {
if (idx !== null) return layer.close(idx); if (idx !== null) return layer.close(idx);
for (var i in this.idx) $.msg.close(this.idx[i]); for (let i in this.idx) $.msg.close(this.idx[i]);
return (this.idx = []) !== false; return (this.idx = []) !== false;
}; };
/*! 弹出警告框 */ /*! 弹出警告框 */
this.alert = function (msg, call) { this.alert = function (msg, call) {
var idx = layer.alert(msg, {end: call, scrollbar: false}); let idx = layer.alert(msg, {end: call, scrollbar: false});
return $.msg.idx.push(idx), idx; return $.msg.idx.push(idx), idx;
}; };
/*! 显示成功类型的消息 */ /*! 显示成功类型的消息 */
this.success = function (msg, time, call) { this.success = function (msg, time, call) {
var idx = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: call, time: (time || 2) * 1000, shadeClose: true}); let idx = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: call, time: (time || 2) * 1000, shadeClose: true});
return $.msg.idx.push(idx), idx; return $.msg.idx.push(idx), idx;
}; };
/*! 显示失败类型的消息 */ /*! 显示失败类型的消息 */
this.error = function (msg, time, call) { this.error = function (msg, time, call) {
var idx = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: call, shadeClose: true}); let idx = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: call, shadeClose: true});
return $.msg.idx.push(idx), idx; return $.msg.idx.push(idx), idx;
}; };
/*! 状态消息提示 */ /*! 状态消息提示 */
this.tips = function (msg, time, call) { this.tips = function (msg, time, call) {
var idx = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: call, shadeClose: true}); let idx = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: call, shadeClose: true});
return $.msg.idx.push(idx), idx; return $.msg.idx.push(idx), idx;
}; };
/*! 显示加载提示 */ /*! 显示加载提示 */
this.loading = function (msg, call) { this.loading = function (msg, call) {
var idx = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: call}) : layer.load(0, {time: 0, scrollbar: false, shade: this.shade, end: call}); let idx = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: call}) : layer.load(0, {time: 0, scrollbar: false, shade: this.shade, end: call});
return $.msg.idx.push(idx), idx; return $.msg.idx.push(idx), idx;
}; };
/*! Notify 调用入口 */ /*! Notify 调用入口 */
@ -235,8 +238,8 @@ $(function () {
}; };
/*! 自动处理JSON数据 */ /*! 自动处理JSON数据 */
this.auto = function (ret, time) { this.auto = function (ret, time) {
var url = ret.url || (typeof ret.data === 'string' ? ret.data : ''); let url = ret.url || (typeof ret.data === 'string' ? ret.data : '');
var msg = ret.msg || (typeof ret.info === 'string' ? ret.info : ''); let msg = ret.msg || (typeof ret.info === 'string' ? ret.info : '');
if (parseInt(ret.code) === 1 && time === 'false') { if (parseInt(ret.code) === 1 && time === 'false') {
return url ? $.form.goto(url) : $.form.reload(); return url ? $.form.goto(url) : $.form.reload();
} else return (parseInt(ret.code) === 1) ? this.success(msg, time, function () { } else return (parseInt(ret.code) === 1) ? this.success(msg, time, function () {
@ -289,7 +292,7 @@ $(function () {
this.load = function (url, data, method, callable, loading, tips, time, headers) { this.load = function (url, data, method, callable, loading, tips, time, headers) {
// 如果主页面 loader 显示中,绝对不显示 loading 图标 // 如果主页面 loader 显示中,绝对不显示 loading 图标
loading = $('.layui-page-loader').is(':visible') ? false : loading; loading = $('.layui-page-loader').is(':visible') ? false : loading;
var loadidx = loading !== false ? $.msg.loading(tips) : 0; let loadidx = loading !== false ? $.msg.loading(tips) : 0;
if (typeof data === 'object' && typeof data['_token_'] === 'string') { if (typeof data === 'object' && typeof data['_token_'] === 'string') {
headers = headers || {}, headers['User-Form-Token'] = data['_token_'], delete data['_token_']; headers = headers || {}, headers['User-Form-Token'] = data['_token_'], delete data['_token_'];
} }
@ -367,7 +370,7 @@ $(function () {
type: 1, btn: false, area: area || "800px", resize: false, content: res, title: name || '', offset: offset || 'auto', success: function ($dom, idx) { type: 1, btn: false, area: area || "800px", resize: false, content: res, title: name || '', offset: offset || 'auto', success: function ($dom, idx) {
typeof call === 'function' && call.call($.form, $dom); typeof call === 'function' && call.call($.form, $dom);
$.form.reInit($dom.off('click', '[data-close]').on('click', '[data-close]', function () { $.form.reInit($dom.off('click', '[data-close]').on('click', '[data-close]', function () {
onConfirm(this.dataset.confirm, function () { $.base.onConfirm(this.dataset.confirm, function () {
layer.close(idx); layer.close(idx);
}); });
})); }));
@ -388,7 +391,7 @@ $(function () {
/*! 通过 URI 查询最佳菜单 NODE */ /*! 通过 URI 查询最佳菜单 NODE */
this.queryNode = function (uri, node) { this.queryNode = function (uri, node) {
if (!/^m-/.test(node = node || location.href.replace(/.*spm=([\d\-m]+).*/ig, '$1'))) { if (!/^m-/.test(node = node || location.href.replace(/.*spm=([\d\-m]+).*/ig, '$1'))) {
var $menu = $('[data-menu-node][data-open*="' + uri.replace(/\.html$/ig, '') + '"]'); let $menu = $('[data-menu-node][data-open*="' + uri.replace(/\.html$/ig, '') + '"]');
return $menu.size() ? $menu.get(0).dataset.menuNode : ''; return $menu.size() ? $menu.get(0).dataset.menuNode : '';
} }
return node; return node;
@ -404,14 +407,14 @@ $(function () {
uri = this.getUri(uri); uri = this.getUri(uri);
if (typeof vars.spm !== 'string') vars.spm = elem.dataset.menuNode || this.queryNode(uri) || ''; if (typeof vars.spm !== 'string') vars.spm = elem.dataset.menuNode || this.queryNode(uri) || '';
if (typeof vars.spm !== 'string' || vars.spm.length < 1) delete vars.spm; if (typeof vars.spm !== 'string' || vars.spm.length < 1) delete vars.spm;
for (var i in vars) attrs.push(i + '=' + vars[i]); for (let i in vars) attrs.push(i + '=' + vars[i]);
return uri + (attrs.length > 0 ? '?' + attrs.join('&') : ''); return uri + (attrs.length > 0 ? '?' + attrs.join('&') : '');
}; };
/*! 后台菜单动作初始化 */ /*! 后台菜单动作初始化 */
this.listen = function () { this.listen = function () {
var layout = $('.layui-layout-admin'), mclass = 'layui-layout-left-mini'; let layout = $('.layui-layout-admin'), mclass = 'layui-layout-left-mini';
/*! 菜单切及MiniTips处理 */ /*! 菜单切及MiniTips处理 */
onEvent('click', '[data-target-menu-type]', function () { $.base.onEvent('click', '[data-target-menu-type]', function () {
layui.data('AdminMenuType', {key: 'mini', value: layout.toggleClass(mclass).hasClass(mclass)}); layui.data('AdminMenuType', {key: 'mini', value: layout.toggleClass(mclass).hasClass(mclass)});
}).on('click', '[data-submenu-layout]>a', function () { }).on('click', '[data-submenu-layout]>a', function () {
setTimeout("$.menu.sync(1)", 100); setTimeout("$.menu.sync(1)", 100);
@ -433,7 +436,7 @@ $(function () {
/*! 同步二级菜单展示状态 */ /*! 同步二级菜单展示状态 */
this.sync = function (mode) { this.sync = function (mode) {
$('[data-submenu-layout]').map(function () { $('[data-submenu-layout]').map(function () {
var node = this.dataset.submenuLayout; let node = this.dataset.submenuLayout;
if (mode === 1) layui.data('AdminMenuState', {key: node, value: $(this).hasClass('layui-nav-itemed') ? 2 : 1}); else if (mode === 2) (layui.data('AdminMenuState')[node] || 2) === 2 && $(this).addClass('layui-nav-itemed'); if (mode === 1) layui.data('AdminMenuState', {key: node, value: $(this).hasClass('layui-nav-itemed') ? 2 : 1}); else if (mode === 2) (layui.data('AdminMenuState')[node] || 2) === 2 && $(this).addClass('layui-nav-itemed');
}); });
}; };
@ -444,7 +447,7 @@ $(function () {
$.form.load(hash, {}, 'get', false, !$.msg.page.stat()), $.menu.sync(2); $.form.load(hash, {}, 'get', false, !$.msg.page.stat()), $.menu.sync(2);
/*! 菜单选择切换 */ /*! 菜单选择切换 */
if (/^m-/.test(node = node || $.menu.queryNode($.menu.getUri()))) { if (/^m-/.test(node = node || $.menu.queryNode($.menu.getUri()))) {
var arr = node.split('-'), tmp = arr.shift(), $all = $('a[data-menu-node]').parent('.layui-this'); let arr = node.split('-'), tmp = arr.shift(), $all = $('a[data-menu-node]').parent('.layui-this');
while (arr.length > 0) { while (arr.length > 0) {
tmp = tmp + '-' + arr.shift(); tmp = tmp + '-' + arr.shift();
$all = $all.not($('a[data-menu-node="' + tmp + '"]').parent().addClass('layui-this')); $all = $all.not($('a[data-menu-node="' + tmp + '"]').parent().addClass('layui-this'));
@ -452,7 +455,7 @@ $(function () {
$all.removeClass('layui-this'); $all.removeClass('layui-this');
/*! 菜单模式切换 */ /*! 菜单模式切换 */
if (node.split('-').length > 2) { if (node.split('-').length > 2) {
var _tmp = node.split('-'), _node = _tmp.shift() + '-' + _tmp.shift(); let _tmp = node.split('-'), _node = _tmp.shift() + '-' + _tmp.shift();
$('[data-menu-layout]').not($('[data-menu-layout="' + _node + '"]').removeClass('layui-hide')).addClass('layui-hide'); $('[data-menu-layout]').not($('[data-menu-layout="' + _node + '"]').removeClass('layui-hide')).addClass('layui-hide');
$('[data-menu-node="' + node + '"]').parent().parent().parent().addClass('layui-nav-itemed'); $('[data-menu-node="' + node + '"]').parent().parent().parent().addClass('layui-nav-itemed');
$('.layui-layout-admin').removeClass('layui-layout-left-hide'); $('.layui-layout-admin').removeClass('layui-layout-left-hide');
@ -466,15 +469,15 @@ $(function () {
/*! 表单转JSON */ /*! 表单转JSON */
$.fn.formToJson = function () { $.fn.formToJson = function () {
var self = this, data = {}, push = {}; let self = this, data = {}, push = {};
var rules = {key: /\w+|(?=\[])/g, push: /^$/, fixed: /^\d+$/, named: /^\w+$/}; let rules = {key: /\w+|(?=\[])/g, push: /^$/, fixed: /^\d+$/, named: /^\w+$/};
this.build = function (base, key, value) { this.build = function (base, key, value) {
return (base[key] = value), base; return (base[key] = value), base;
}, this.pushCounter = function (name) { }, this.pushCounter = function (name) {
if (push[name] === undefined) push[name] = 0; if (push[name] === undefined) push[name] = 0;
return push[name]++; return push[name]++;
}, $.each($(this).serializeArray(), function () { }, $.each($(this).serializeArray(), function () {
var key, keys = this.name.match(rules.key), merge = this.value, name = this.name; let key, keys = this.name.match(rules.key), merge = this.value, name = this.name;
while ((key = keys.pop()) !== undefined) { while ((key = keys.pop()) !== undefined) {
name = name.replace(new RegExp("\\[" + key + "\\]$"), ''); name = name.replace(new RegExp("\\[" + key + "\\]$"), '');
if (key.match(rules.push)) merge = self.build([], self.pushCounter(name), merge); if (key.match(rules.push)) merge = self.build([], self.pushCounter(name), merge);
@ -503,8 +506,8 @@ $(function () {
$.fn.uploadOneVideo = function () { $.fn.uploadOneVideo = function () {
return this.each(function () { return this.each(function () {
if (this.dataset.inited) return; else this.dataset.inited = 'true'; if (this.dataset.inited) return; else this.dataset.inited = 'true';
var $bt = $('<div class="uploadimage uploadvideo"><span><a data-file class="layui-icon layui-icon-upload-drag"></a><i class="layui-icon layui-icon-search"></i><i class="layui-icon layui-icon-close"></i></span><span data-file></span></div>'); let $bt = $('<div class="uploadimage uploadvideo"><span><a data-file class="layui-icon layui-icon-upload-drag"></a><i class="layui-icon layui-icon-search"></i><i class="layui-icon layui-icon-close"></i></span><span data-file></span></div>');
var $in = $(this).on('change', function () { let $in = $(this).on('change', function () {
if (this.value) $bt.css('backgroundImage', 'url("")').find('span[data-file]').html('<video width="100%" height="100%" autoplay loop muted><source src="' + encodeURI(this.value) + '" type="video/mp4"></video>'); if (this.value) $bt.css('backgroundImage', 'url("")').find('span[data-file]').html('<video width="100%" height="100%" autoplay loop muted><source src="' + encodeURI(this.value) + '" type="video/mp4"></video>');
}).after($bt).trigger('change'); }).after($bt).trigger('change');
$bt.on('click', 'i.layui-icon-search', function (event) { $bt.on('click', 'i.layui-icon-search', function (event) {
@ -521,8 +524,8 @@ $(function () {
$.fn.uploadOneImage = function () { $.fn.uploadOneImage = function () {
return this.each(function () { return this.each(function () {
if (this.dataset.inited) return; else this.dataset.inited = 'true'; if (this.dataset.inited) return; else this.dataset.inited = 'true';
var $bt = $('<div class="uploadimage"><span><a data-file class="layui-icon layui-icon-upload-drag"></a><i class="layui-icon layui-icon-search"></i><i class="layui-icon layui-icon-close"></i></span><span data-file="image"></span></div>'); let $bt = $('<div class="uploadimage"><span><a data-file class="layui-icon layui-icon-upload-drag"></a><i class="layui-icon layui-icon-search"></i><i class="layui-icon layui-icon-close"></i></span><span data-file="image"></span></div>');
var $in = $(this).on('change', function () { let $in = $(this).on('change', function () {
if (this.value) $bt.css('backgroundImage', 'url(' + encodeURI(this.value) + ')'); if (this.value) $bt.css('backgroundImage', 'url(' + encodeURI(this.value) + ')');
}).after($bt).trigger('change'); }).after($bt).trigger('change');
$bt.on('click', 'i.layui-icon-search', function (event) { $bt.on('click', 'i.layui-icon-search', function (event) {
@ -541,8 +544,8 @@ $(function () {
$.fn.uploadMultipleImage = function () { $.fn.uploadMultipleImage = function () {
return this.each(function () { return this.each(function () {
if (this.dataset.inited) return; else this.dataset.inited = 'true'; if (this.dataset.inited) return; else this.dataset.inited = 'true';
var $bt = $('<div class="uploadimage"><span><a data-file="mul" class="layui-icon layui-icon-upload-drag"></a></span><span data-file="images"></span></div>'); let $bt = $('<div class="uploadimage"><span><a data-file="mul" class="layui-icon layui-icon-upload-drag"></a></span><span data-file="images"></span></div>');
var ims = this.value ? this.value.split('|') : [], $in = $(this).after($bt); let ims = this.value ? this.value.split('|') : [], $in = $(this).after($bt);
$bt.find('[data-file]').attr({ $bt.find('[data-file]').attr({
'data-path': $in.data('path') || '', 'data-size': $in.data('size') || 0, 'data-type': $in.data('type') || 'gif,png,jpg,jpeg', 'data-path': $in.data('path') || '', 'data-size': $in.data('size') || 0, 'data-type': $in.data('type') || 'gif,png,jpg,jpeg',
'data-max-width': $in.data('max-width') || 0, 'data-max-height': $in.data('max-height') || 0, 'data-max-width': $in.data('max-width') || 0, 'data-max-height': $in.data('max-height') || 0,
@ -571,9 +574,9 @@ $(function () {
/*! 标签输入插件 */ /*! 标签输入插件 */
$.fn.initTagInput = function () { $.fn.initTagInput = function () {
return this.each(function () { return this.each(function () {
var $this = $(this), tags = this.value ? this.value.split(',') : []; let $this = $(this), tags = this.value ? this.value.split(',') : [];
var $text = $('<textarea class="layui-input layui-input-inline layui-tag-input"></textarea>'); let $text = $('<textarea class="layui-input layui-input-inline layui-tag-input"></textarea>');
var $tags = $('<div class="layui-tags"></div>').append($text); let $tags = $('<div class="layui-tags"></div>').append($text);
$this.parent().append($tags) && $text.off('keydown blur') && (tags.length > 0 && showTags(tags)); $this.parent().append($tags) && $text.off('keydown blur') && (tags.length > 0 && showTags(tags));
$text.on('blur keydown', function (event, value) { $text.on('blur keydown', function (event, value) {
if (event.keyCode === 13 || event.type === 'blur') { if (event.keyCode === 13 || event.type === 'blur') {
@ -599,10 +602,10 @@ $(function () {
return this.each(function () { return this.each(function () {
this.focus(); this.focus();
if (document.selection) { if (document.selection) {
var selection = document.selection.createRange(); let selection = document.selection.createRange();
(selection.text = value), selection.select(), selection.unselect(); (selection.text = value), selection.select(), selection.unselect();
} else if (this.selectionStart || this.selectionStart === 0) { } else if (this.selectionStart || this.selectionStart === 0) {
var spos = this.selectionStart, apos = this.selectionEnd || spos; let spos = this.selectionStart, apos = this.selectionEnd || spos;
this.value = this.value.substring(0, spos) + value + this.value.substring(apos); this.value = this.value.substring(0, spos) + value + this.value.substring(apos);
this.selectionEnd = this.selectionStart = spos + value.length; this.selectionEnd = this.selectionStart = spos + value.length;
} else { } else {
@ -633,14 +636,14 @@ $(function () {
}, this.create = function (table, params) { }, this.create = function (table, params) {
// 动态初始化表格 // 动态初始化表格
table.id = table.id || 't' + Math.random().toString().replace('.', ''); table.id = table.id || 't' + Math.random().toString().replace('.', '');
var $table = $(table).attr('lay-filter', table.dataset.id = table.getAttribute('lay-filter') || table.id); let $table = $(table).attr('lay-filter', table.dataset.id = table.getAttribute('lay-filter') || table.id);
// 插件初始化参数 // 插件初始化参数
var option = params || {}, data = option.where || {}, sort = option.initSort || option.sort || {}; let option = params || {}, data = option.where || {}, sort = option.initSort || option.sort || {};
option.id = table.id, option.elem = table, option.url = params.url || table.dataset.url || location.href; option.id = table.id, option.elem = table, option.url = params.url || table.dataset.url || location.href;
option.limit = params.limit || 20, option.loading = params.loading !== false, option.autoSort = params.autoSort === true; option.limit = params.limit || 20, option.loading = params.loading !== false, option.autoSort = params.autoSort === true;
option.page = params.page !== false ? (params.page || true) : false, option.cols = params.cols || [[]], option.success = params.done || ''; option.page = params.page !== false ? (params.page || true) : false, option.cols = params.cols || [[]], option.success = params.done || '';
// 初始化不显示头部 // 初始化不显示头部
var cls = ['.layui-table-header', '.layui-table-fixed', '.layui-table-body', '.layui-table-page']; let cls = ['.layui-table-header', '.layui-table-fixed', '.layui-table-body', '.layui-table-page'];
option.css = (option.css || '') + cls.join('{opacity:0}') + '{opacity:0}'; option.css = (option.css || '') + cls.join('{opacity:0}') + '{opacity:0}';
// 默认动态设置页数, 动态设置最大高度 // 默认动态设置页数, 动态设置最大高度
if (option.page === true) option.page = {curr: layui.sessionData('pages')[option.id] || 1}; if (option.page === true) option.page = {curr: layui.sessionData('pages')[option.id] || 1};
@ -661,17 +664,17 @@ $(function () {
res.data = params.filter(res.data, res); res.data = params.filter(res.data, res);
} }
if (!this.page || !this.page.curr) return res; if (!this.page || !this.page.curr) return res;
var curp = this.page.curr, maxp = Math.ceil(res.count / option.limit); let curp = this.page.curr, maxp = Math.ceil(res.count / option.limit);
if (curp > maxp && maxp > 1) $table.trigger('reload', {page: {curr: maxp}}); if (curp > maxp && maxp > 1) $table.trigger('reload', {page: {curr: maxp}});
return res; return res;
}; };
// 关联搜索表单 // 关联搜索表单
var sform, search = params.search || table.dataset.targetSearch; let sform, search = params.search || table.dataset.targetSearch;
if (search) (sform = $body.find(search)).map(function () { if (search) (sform = $body.find(search)).map(function () {
$(this).attr('data-table-id', table.id); $(this).attr('data-table-id', table.id);
}); });
// 关联绑定选择项 // 关联绑定选择项
var checked = params.checked || table.dataset.targetChecked; let checked = params.checked || table.dataset.targetChecked;
if (checked) $body.find(checked).map(function () { if (checked) $body.find(checked).map(function () {
$(this).attr('data-table-id', table.id); $(this).attr('data-table-id', table.id);
}); });
@ -715,7 +718,7 @@ $(function () {
/*!格式化文件大小 */ /*!格式化文件大小 */
$.formatFileSize = function (size, fixed, units) { $.formatFileSize = function (size, fixed, units) {
var unit; let unit;
units = units || ['B', 'K', 'M', 'G', 'TB']; units = units || ['B', 'K', 'M', 'G', 'TB'];
while ((unit = units.shift()) && size > 1024) size = size / 1024; while ((unit = units.shift()) && size > 1024) size = size / 1024;
return (unit === 'B' ? size : size.toFixed(fixed === undefined ? 2 : fixed)) + unit; return (unit === 'B' ? size : size.toFixed(fixed === undefined ? 2 : fixed)) + unit;
@ -723,7 +726,7 @@ $(function () {
/*! 弹出图片层 */ /*! 弹出图片层 */
$.previewImage = function (src, area) { $.previewImage = function (src, area) {
var img = new Image(), defer = $.Deferred(), loaded = $.msg.loading(); let img = new Image(), defer = $.Deferred(), loaded = $.msg.loading();
img.style.background = '#FFF', img.referrerPolicy = 'no-referrer'; img.style.background = '#FFF', img.referrerPolicy = 'no-referrer';
img.style.height = 'auto', img.style.width = area || '100%', img.style.display = 'none'; img.style.height = 'auto', img.style.width = area || '100%', img.style.display = 'none';
return document.body.appendChild(img), img.onerror = function () { return document.body.appendChild(img), img.onerror = function () {
@ -741,7 +744,7 @@ $(function () {
/*! 以手机模式显示内容 */ /*! 以手机模式显示内容 */
$.previewPhonePage = function (href, title) { $.previewPhonePage = function (href, title) {
var template = '<div class="mobile-preview"><div class="mobile-header">{{d.title}}</div><div class="mobile-body"><iframe src="{{d.url}}"></iframe></div></div>'; let template = '<div class="mobile-preview"><div class="mobile-header">{{d.title}}</div><div class="mobile-body"><iframe src="{{d.url}}"></iframe></div></div>';
layer.style(layer.open({type: true, resize: false, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: laytpl(template).render({title: title || '公众号', url: href})}), {boxShadow: 'none'}); layer.style(layer.open({type: true, resize: false, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: laytpl(template).render({title: title || '公众号', url: href})}), {boxShadow: 'none'});
}; };
@ -763,7 +766,7 @@ $(function () {
$.vali = function (form, done, init) { $.vali = function (form, done, init) {
require(['validate'], function (Validate) { require(['validate'], function (Validate) {
/** @type {import("./plugs/admin/validate")|Validate}*/ /** @type {import("./plugs/admin/validate")|Validate}*/
var vali = $(form).data('validate') || new Validate(form, onConfirm); let vali = $(form).data('validate') || new Validate(form);
typeof init === 'function' && init.call(vali, $(form).formToJson(), vali); typeof init === 'function' && init.call(vali, $(form).formToJson(), vali);
typeof done === 'function' && vali.addDoneEvent(done); typeof done === 'function' && vali.addDoneEvent(done);
}); });
@ -771,13 +774,13 @@ $(function () {
/*! 自动监听表单 */ /*! 自动监听表单 */
$.vali.listen = function ($dom) { $.vali.listen = function ($dom) {
var $els = $($dom || $body).find('form[data-auto]'); let $els = $($dom || $body).find('form[data-auto]');
$dom && $($dom).filter('form[data-auto]') && $els.add($dom); $dom && $($dom).filter('form[data-auto]') && $els.add($dom);
return $els.map(function (idx, form) { return $els.map(function (idx, form) {
$(this).vali(function (data) { $(this).vali(function (data) {
var dset = form.dataset, type = form.method || 'POST', href = form.action || location.href; let dset = form.dataset, type = form.method || 'POST', href = form.action || location.href;
var tips = dset.tips || undefined, time = dset.time || undefined, taid = dset.tableId || false; let tips = dset.tips || undefined, time = dset.time || undefined, taid = dset.tableId || false;
var call = window[dset.callable || '_default_callable'] || (taid ? function (ret) { let call = window[dset.callable || '_default_callable'] || (taid ? function (ret) {
if (typeof ret === 'object' && ret.code > 0 && $('#' + taid).size() > 0) { if (typeof ret === 'object' && ret.code > 0 && $('#' + taid).size() > 0) {
return $.msg.success(ret.info, 3, function () { return $.msg.success(ret.info, 3, function () {
$.msg.closeLastModal(); $.msg.closeLastModal();
@ -785,7 +788,7 @@ $(function () {
}) && false; }) && false;
} }
} : undefined); } : undefined);
onConfirm(dset.confirm, function () { $.base.onConfirm(dset.confirm, function () {
$.form.load(href, data, type, call, true, tips, time); $.form.load(href, data, type, call, true, tips, time);
}); });
}); });
@ -793,13 +796,13 @@ $(function () {
}; };
/*! 注册 data-search 表单搜索行为 */ /*! 注册 data-search 表单搜索行为 */
onEvent('submit', 'form.form-search', function () { $.base.onEvent('submit', 'form.form-search', function () {
if (this.dataset.tableId) return $('table#' + this.dataset.tableId).trigger('reload', { if (this.dataset.tableId) return $('table#' + this.dataset.tableId).trigger('reload', {
page: {curr: 1}, where: $(this).formToJson() page: {curr: 1}, where: $(this).formToJson()
}); });
var url = $(this).attr('action').replace(/&?page=\d+/g, ''); let url = $(this).attr('action').replace(/&?page=\d+/g, '');
if ((this.method || 'get').toLowerCase() === 'get') { if ((this.method || 'get').toLowerCase() === 'get') {
var split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : ''; let split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : '';
$.form.goto(stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' '))); $.form.goto(stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' ')));
} else { } else {
$.form.load(url, this, 'post'); $.form.load(url, this, 'post');
@ -807,13 +810,13 @@ $(function () {
}); });
/*! 注册 data-file 事件行为 */ /*! 注册 data-file 事件行为 */
onEvent('click', '[data-file]', function () { $.base.onEvent('click', '[data-file]', function () {
this.id = this.dataset.id = this.id || (function (date) { this.id = this.dataset.id = this.id || (function (date) {
return (date + Math.random()).replace('0.', ''); return (date + Math.random()).replace('0.', '');
})(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-')); })(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-'));
/*! 查找表单元素, 如果没有找到将不会自动写值 */ /*! 查找表单元素, 如果没有找到将不会自动写值 */
if (!(this.$elem = $(this)).data('input') && this.$elem.data('field')) { if (!(this.$elem = $(this)).data('input') && this.$elem.data('field')) {
var $input = $('input[name="' + this.$elem.data('field') + '"]:not([type=file])'); let $input = $('input[name="' + this.$elem.data('field') + '"]:not([type=file])');
this.$elem.data('input', $input.size() > 0 ? $input.get(0) : null); this.$elem.data('input', $input.size() > 0 ? $input.get(0) : null);
} }
// 单图或多图选择器 ( image|images ) // 单图或多图选择器 ( image|images )
@ -827,45 +830,45 @@ $(function () {
}); });
/*! 注册 data-load 事件行为 */ /*! 注册 data-load 事件行为 */
onEvent('click', '[data-load]', function () { $.base.onEvent('click', '[data-load]', function () {
applyRuleValue(this, {}, function (data, elem, dset) { $.base.applyRuleValue(this, {}, function (data, elem, dset) {
$.form.load(dset.load, data, 'get', onConfirm.getLoadCallable(dset.tableId), true, dset.tips, dset.time); $.form.load(dset.load, data, 'get', $.base.onConfirm.getLoadCallable(dset.tableId), true, dset.tips, dset.time);
}); });
}); });
/*! 注册 data-reload 事件行为 */ /*! 注册 data-reload 事件行为 */
onEvent('click', '[data-reload]', function () { $.base.onEvent('click', '[data-reload]', function () {
$.layTable.reload(this.dataset.tableId || true); $.layTable.reload(this.dataset.tableId || true);
}); });
/*! 注册 data-dbclick 事件行为 */ /*! 注册 data-dbclick 事件行为 */
onEvent('dblclick', '[data-dbclick]', function () { $.base.onEvent('dblclick', '[data-dbclick]', function () {
$(this).find(this.dataset.dbclick || '[data-dbclick]').trigger('click'); $(this).find(this.dataset.dbclick || '[data-dbclick]').trigger('click');
}); });
/*! 注册 data-check 事件行为 */ /*! 注册 data-check 事件行为 */
onEvent('click', '[data-check-target]', function () { $.base.onEvent('click', '[data-check-target]', function () {
var target = this; let target = this;
$(this.dataset.checkTarget).map(function () { $(this.dataset.checkTarget).map(function () {
(this.checked = !!target.checked), $(this).trigger('change'); (this.checked = !!target.checked), $(this).trigger('change');
}); });
}); });
/*! 表单元素失去焦点时数字 */ /*! 表单元素失去焦点时数字 */
onEvent('blur', '[data-blur-number]', function () { $.base.onEvent('blur', '[data-blur-number]', function () {
var dset = this.dataset, min = dset.valueMin, max = dset.valueMax; let dset = this.dataset, min = dset.valueMin, max = dset.valueMax;
var value = parseFloat(this.value) || 0, fiexd = parseInt(dset.blurNumber || 0); let value = parseFloat(this.value) || 0, fiexd = parseInt(dset.blurNumber || 0);
if (typeof min !== 'undefined' && value < min) value = min; if (typeof min !== 'undefined' && value < min) value = min;
if (typeof max !== 'undefined' && value > max) value = max; if (typeof max !== 'undefined' && value > max) value = max;
this.value = parseFloat(value).toFixed(fiexd); this.value = parseFloat(value).toFixed(fiexd);
}); });
/*! 表单元素失焦时提交 */ /*! 表单元素失焦时提交 */
onEvent('blur', '[data-action-blur],[data-blur-action]', function () { $.base.onEvent('blur', '[data-action-blur],[data-blur-action]', function () {
var that = $(this), dset = this.dataset, data = {'_token_': dset.token || dset.csrf || '--'}; let that = $(this), dset = this.dataset, data = {'_token_': dset.token || dset.csrf || '--'};
var attrs = (dset.value || '').replace('{value}', that.val()).split(';'); let attrs = (dset.value || '').replace('{value}', that.val()).split(';');
for (var i in attrs) data[attrs[i].split('#')[0]] = attrs[i].split('#')[1]; for (let i in attrs) data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
onConfirm(dset.confirm, function () { $.base.onConfirm(dset.confirm, function () {
$.form.load(dset.actionBlur || dset.blurAction, data, dset.method || 'post', function (ret) { $.form.load(dset.actionBlur || dset.blurAction, data, dset.method || 'post', function (ret) {
return that.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red') && false; return that.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red') && false;
}, dset.loading !== 'false', dset.loading, dset.time); }, dset.loading !== 'false', dset.loading, dset.time);
@ -873,14 +876,14 @@ $(function () {
}); });
/*! 注册 data-href 事件行为 */ /*! 注册 data-href 事件行为 */
onEvent('click', '[data-href]', function () { $.base.onEvent('click', '[data-href]', function () {
if (this.dataset.href && this.dataset.href.indexOf('#') !== 0) { if (this.dataset.href && this.dataset.href.indexOf('#') !== 0) {
$.form.goto(this.dataset.href); $.form.goto(this.dataset.href);
} }
}); });
/*! 注册 data-open 事件行为 */ /*! 注册 data-open 事件行为 */
onEvent('click', '[data-open]', function () { $.base.onEvent('click', '[data-open]', function () {
layui.sessionData('pages', null); layui.sessionData('pages', null);
if (this.dataset.open.match(/^https?:/)) { if (this.dataset.open.match(/^https?:/)) {
$.form.goto(this.dataset.open); $.form.goto(this.dataset.open);
@ -890,27 +893,27 @@ $(function () {
}); });
/*! 注册 data-action 事件行为 */ /*! 注册 data-action 事件行为 */
onEvent('click', '[data-action]', function () { $.base.onEvent('click', '[data-action]', function () {
applyRuleValue(this, {}, function (data, elem, dset) { $.base.applyRuleValue(this, {}, function (data, elem, dset) {
Object.assign(data, {'_token_': dset.token || dset.csrf || '--'}) Object.assign(data, {'_token_': dset.token || dset.csrf || '--'})
var load = dset.loading !== 'false', tips = typeof load === 'string' ? load : undefined; let load = dset.loading !== 'false', tips = typeof load === 'string' ? load : undefined;
$.form.load(dset.action, data, dset.method || 'post', onConfirm.getLoadCallable(dset.tableId), load, tips, dset.time) $.form.load(dset.action, data, dset.method || 'post', $.base.onConfirm.getLoadCallable(dset.tableId), load, tips, dset.time)
}); });
}); });
/*! 注册 data-modal 事件行为 */ /*! 注册 data-modal 事件行为 */
onEvent('click', '[data-modal]', function () { $.base.onEvent('click', '[data-modal]', function () {
applyRuleValue(this, {open_type: 'modal'}, function (data, elem, dset) { $.base.applyRuleValue(this, {open_type: 'modal'}, function (data, elem, dset) {
return $.form.modal(dset.modal, data, dset.title || this.innerText || '编辑', undefined, undefined, undefined, dset.area || dset.width || '800px', dset.offset || 'auto', dset.full !== undefined); return $.form.modal(dset.modal, data, dset.title || this.innerText || '编辑', undefined, undefined, undefined, dset.area || dset.width || '800px', dset.offset || 'auto', dset.full !== undefined);
}); });
}); });
/*! 注册 data-iframe 事件行为 */ /*! 注册 data-iframe 事件行为 */
onEvent('click', '[data-iframe]', function () { $.base.onEvent('click', '[data-iframe]', function () {
applyRuleValue(this, {open_type: 'iframe'}, function (data, elem, dset) { $.base.applyRuleValue(this, {open_type: 'iframe'}, function (data, elem, dset) {
var name = dset.title || this.innerText || 'IFRAME 窗口'; let name = dset.title || this.innerText || 'IFRAME 窗口';
var area = dset.area || [dset.width || '800px', dset.height || '580px']; let area = dset.area || [dset.width || '800px', dset.height || '580px'];
var frame = dset.iframe + (dset.iframe.indexOf('?') > -1 ? '&' : '?') + $.param(data); let frame = dset.iframe + (dset.iframe.indexOf('?') > -1 ? '&' : '?') + $.param(data);
$(this).attr('data-index', $.form.iframe(frame + '&' + $.param(data), name, area, dset.offset || 'auto', function () { $(this).attr('data-index', $.form.iframe(frame + '&' + $.param(data), name, area, dset.offset || 'auto', function () {
typeof dset.refresh !== 'undefined' && $.layTable.reload(dset.tableId || true); typeof dset.refresh !== 'undefined' && $.layTable.reload(dset.tableId || true);
}, undefined, dset.full !== undefined)); }, undefined, dset.full !== undefined));
@ -918,7 +921,7 @@ $(function () {
}); });
/*! 注册 data-video-player 事件行为 */ /*! 注册 data-video-player 事件行为 */
onEvent('click', '[data-video-player]', function () { $.base.onEvent('click', '[data-video-player]', function () {
let idx = $.msg.loading(), url = this.dataset.videoPlayer, name = this.dataset.title || '媒体播放器', payer; let idx = $.msg.loading(), url = this.dataset.videoPlayer, name = this.dataset.title || '媒体播放器', payer;
require(['artplayer'], function () { require(['artplayer'], function () {
layer.open({ layer.open({
@ -937,27 +940,27 @@ $(function () {
}); });
/*! 注册 data-icon 事件行为 */ /*! 注册 data-icon 事件行为 */
onEvent('click', '[data-icon]', function () { $.base.onEvent('click', '[data-icon]', function () {
var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon'; let location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
$.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择', ['900px', '700px']); $.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择', ['900px', '700px']);
}); });
/*! 注册 data-copy 事件行为 */ /*! 注册 data-copy 事件行为 */
onEvent('click', '[data-copy]', function () { $.base.onEvent('click', '[data-copy]', function () {
var copy = this.dataset.copy || this.innerText; let copy = this.dataset.copy || this.innerText;
if (window.clipboardData) { if (window.clipboardData) {
window.clipboardData.setData('text', copy); window.clipboardData.setData('text', copy);
$.msg.tips('已复制到剪贴板!'); $.msg.tips('已复制到剪贴板!');
} else { } else {
var $input = $('<textarea readonly></textarea>'); let $input = $('<textarea readonly></textarea>');
$input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select(); $input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select();
$.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove(); $.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove();
} }
}); });
/*! 异步任务状态监听与展示 */ /*! 异步任务状态监听与展示 */
onEvent('click', '[data-queue]', function () { $.base.onEvent('click', '[data-queue]', function () {
applyRuleValue(this, {}, function (data, elem, dset) { $.base.applyRuleValue(this, {}, function (data, elem, dset) {
$.form.load(dset.queue, data, 'post', function (ret) { $.form.load(dset.queue, data, 'post', function (ret) {
if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) { if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) {
return $.loadQueue(ret.data, true, elem), false; return $.loadQueue(ret.data, true, elem), false;
@ -967,17 +970,17 @@ $(function () {
}); });
/*! 注册 data-tips-text 事件行为 */ /*! 注册 data-tips-text 事件行为 */
onEvent('mouseenter', '[data-tips-text]', function () { $.base.onEvent('mouseenter', '[data-tips-text]', function () {
var opts = {tips: [$(this).attr('data-tips-type') || 3, '#78BA32'], time: 0}; let opts = {tips: [$(this).attr('data-tips-type') || 3, '#78BA32'], time: 0};
var layidx = layer.tips($(this).attr('data-tips-text') || this.innerText, this, opts); let layidx = layer.tips($(this).attr('data-tips-text') || this.innerText, this, opts);
$(this).off('mouseleave').on('mouseleave', function () { $(this).off('mouseleave').on('mouseleave', function () {
setTimeout("layer.close('" + layidx + "')", 100); setTimeout("layer.close('" + layidx + "')", 100);
}); });
}); });
/*! 注册 data-tips-hover 事件行为 */ /*! 注册 data-tips-hover 事件行为 */
onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () { $.base.onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () {
var img = new Image(), ele = $(this); let img = new Image(), ele = $(this);
if ((img.src = this.dataset.tipsImage || this.dataset.lazySrc || this.src)) { if ((img.src = this.dataset.tipsImage || this.dataset.lazySrc || this.src)) {
img.layopt = {anim: 5, time: 0, skin: 'layui-layer-image', isOutAnim: false, scrollbar: false}; img.layopt = {anim: 5, time: 0, skin: 'layui-layer-image', isOutAnim: false, scrollbar: false};
img.referrerPolicy = 'no-referrer', img.style.maxWidth = '260px', img.style.maxHeight = '260px'; img.referrerPolicy = 'no-referrer', img.style.maxWidth = '260px', img.style.maxHeight = '260px';
@ -988,7 +991,7 @@ $(function () {
}); });
/*! 注册 data-tips-image 事件行为 */ /*! 注册 data-tips-image 事件行为 */
onEvent('click', '[data-tips-image]', function (event) { $.base.onEvent('click', '[data-tips-image]', function (event) {
(event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () { (event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src}); event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
}) && layer.photos({ }) && layer.photos({
@ -1000,18 +1003,18 @@ $(function () {
}); });
/*! 注册 data-phone-view 事件行为 */ /*! 注册 data-phone-view 事件行为 */
onEvent('click', '[data-phone-view]', function () { $.base.onEvent('click', '[data-phone-view]', function () {
$.previewPhonePage(this.dataset.phoneView || this.href); $.previewPhonePage(this.dataset.phoneView || this.href);
}); });
/*! 注册 data-target-submit 事件行为 */ /*! 注册 data-target-submit 事件行为 */
onEvent('click', '[data-target-submit]', function () { $.base.onEvent('click', '[data-target-submit]', function () {
$(this.dataset.targetSubmit || 'form:last').submit(); $(this.dataset.targetSubmit || 'form:last').submit();
}); });
/*! 表单编辑返回操作 */ /*! 表单编辑返回操作 */
onEvent('click', '[data-target-backup],[data-history-back]', function () { $.base.onEvent('click', '[data-target-backup],[data-history-back]', function () {
onConfirm(this.dataset.historyBack || this.dataset.targetBackup || '确定要返回上个页面吗?', function () { $.base.onConfirm(this.dataset.historyBack || this.dataset.targetBackup || '确定要返回上个页面吗?', function () {
history.back(); history.back();
}); });
}); });

View File

@ -30,14 +30,14 @@ define(function () {
/*! 绑定导出的事件 */ /*! 绑定导出的事件 */
Excel.prototype.bind = function (done, filename) { Excel.prototype.bind = function (done, filename) {
var that = this; let that = this;
this.options = {}; // {writeOpt: {bookSST: true}}; this.options = {}; // {writeOpt: {bookSST: true}};
$('body').off('click', '[data-form-export]').on('click', '[data-form-export]', function () { $('body').off('click', '[data-form-export]').on('click', '[data-form-export]', function () {
var form = $(this).parents('form'); let form = $(this).parents('form');
var name = this.dataset.filename || filename; let name = this.dataset.filename || filename;
var method = this.dataset.method || form.attr('method') || 'get'; let method = this.dataset.method || form.attr('method') || 'get';
var location = this.dataset.excel || this.dataset.formExport || form.attr('action') || ''; let location = this.dataset.excel || this.dataset.formExport || form.attr('action') || '';
var sortType = $(this).attr('data-sort-type') || '', sortField = $(this).attr('data-sort-field') || ''; let sortType = $(this).attr('data-sort-type') || '', sortField = $(this).attr('data-sort-field') || '';
if (sortField.length > 0 && sortType.length > 0) { if (sortField.length > 0 && sortType.length > 0) {
location += (location.indexOf('?') > -1 ? '&' : '?') + '_order_=' + sortType + '&_field_=' + sortField; location += (location.indexOf('?') > -1 ? '&' : '?') + '_order_=' + sortType + '&_field_=' + sortField;
} }
@ -56,7 +56,7 @@ define(function () {
return (lists = []), LoadNextPage(1, 1), defer; return (lists = []), LoadNextPage(1, 1), defer;
function LoadNextPage(curPage, maxPage, urlParams) { function LoadNextPage(curPage, maxPage, urlParams) {
var proc = (curPage / maxPage * 100).toFixed(2); let proc = (curPage / maxPage * 100).toFixed(2);
$('[data-upload-count]').html(proc > 100 ? '100.00' : proc); $('[data-upload-count]').html(proc > 100 ? '100.00' : proc);
if (curPage > maxPage) return $.msg.close(loaded), defer.resolve(lists); if (curPage > maxPage) return $.msg.close(loaded), defer.resolve(lists);
urlParams = (url.indexOf('?') > -1 ? '&' : '?') + 'output=json&not_cache_limit=1&limit=100&page=' + curPage; urlParams = (url.indexOf('?') > -1 ? '&' : '?') + 'output=json&not_cache_limit=1&limit=100&page=' + curPage;
@ -78,7 +78,7 @@ define(function () {
*/ */
Excel.prototype.withStyle = function (data, colsWidth, defaultWidth, defaultHeight) { Excel.prototype.withStyle = function (data, colsWidth, defaultWidth, defaultHeight) {
// 自动计算列序 // 自动计算列序
var idx, colN = 0, defaC = {}, lastCol; let idx, colN = 0, defaC = {}, lastCol;
for (idx in data[0]) defaC[lastCol = layui.excel.numToTitle(++colN)] = defaultWidth || 99; for (idx in data[0]) defaC[lastCol = layui.excel.numToTitle(++colN)] = defaultWidth || 99;
defaC[lastCol] = 160; defaC[lastCol] = 160;
@ -109,7 +109,7 @@ define(function () {
}); });
// 设置表格行宽高,需要设置最后的行或列宽高,否则部分不生效 // 设置表格行宽高,需要设置最后的行或列宽高,否则部分不生效
var rowsC = {1: 33}, colsC = Object.assign({}, defaC, {A: 60}, colsWidth || {}); let rowsC = {1: 33}, colsC = Object.assign({}, defaC, {A: 60}, colsWidth || {});
rowsC[data.length] = defaultHeight || 28, this.options.extend = { rowsC[data.length] = defaultHeight || 28, this.options.extend = {
'!cols': layui.excel.makeColConfig(colsC, defaultWidth || 99), '!cols': layui.excel.makeColConfig(colsC, defaultWidth || 99),
'!rows': layui.excel.makeRowConfig(rowsC, defaultHeight || 28), '!rows': layui.excel.makeRowConfig(rowsC, defaultHeight || 28),
@ -120,7 +120,7 @@ define(function () {
/*! 直接推送表格内容 */ /*! 直接推送表格内容 */
Excel.prototype.push = function (url, sheet, cols, filter) { Excel.prototype.push = function (url, sheet, cols, filter) {
var loaded, $input; let loaded, $input;
$input = $('<input class="layui-hide" type="file" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">'); $input = $('<input class="layui-hide" type="file" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">');
$input.appendTo($('body')).click().on('change', function (event) { $input.appendTo($('body')).click().on('change', function (event) {
if (!event.target.files || event.target.files.length < 1) return $.msg.tips('没有可操作文件'); if (!event.target.files || event.target.files.length < 1) return $.msg.tips('没有可操作文件');
@ -129,7 +129,7 @@ define(function () {
// 导入Excel数据并逐行上传处理 // 导入Excel数据并逐行上传处理
layui.excel.importExcel(event.target.files, {}, function (data) { layui.excel.importExcel(event.target.files, {}, function (data) {
if (!data[0][sheet]) return $.msg.tips('未读取到表[' + sheet + ']的数据'); if (!data[0][sheet]) return $.msg.tips('未读取到表[' + sheet + ']的数据');
var _cols = {}, _data = data[0][sheet], items = [], row, col, key, item; let _cols = {}, _data = data[0][sheet], items = [], row, col, key, item;
for (row in _data) if (parseInt(row) + 1 === parseInt(cols._ || '1')) { for (row in _data) if (parseInt(row) + 1 === parseInt(cols._ || '1')) {
for (col in _data[row]) for (key in cols) if (_data[row][col] === cols[key]) _cols[key] = col; for (col in _data[row]) for (key in cols) if (_data[row][col] === cols[key]) _cols[key] = col;
} else if (parseInt(row) + 1 > cols._ || 1) { } else if (parseInt(row) + 1 > cols._ || 1) {
@ -156,7 +156,7 @@ define(function () {
$.form.reload(); $.form.reload();
}); });
} else { } else {
var proc = (idx * 100 / total).toFixed(2); let proc = (idx * 100 / total).toFixed(2);
$('[data-load-count]').html((proc > 100 ? '100.00' : proc) + '% 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 '); $('[data-load-count]').html((proc > 100 ? '100.00' : proc) + '% 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 ');
/*! 单元数据过滤 */ /*! 单元数据过滤 */
data = item; data = item;

View File

@ -14,7 +14,7 @@
define(function () { define(function () {
var template = '<div class="padding-30 padding-bottom-0" data-queue-load="{{d.code}}"><div class="layui-elip notselect nowrap" data-message-title><b class="color-desc">...</b></div><div class="margin-top-15 layui-progress layui-progress-big" lay-showPercent="yes"><div class="layui-progress-bar transition" lay-percent="0.00%"></div></div>' + '<div class="margin-top-15"><code class="layui-textarea layui-bg-black border-0" style="resize:none;overflow:hidden;height:190px"></code></div></div>'; let template = '<div class="padding-30 padding-bottom-0" data-queue-load="{{d.code}}"><div class="layui-elip notselect nowrap" data-message-title><b class="color-desc">...</b></div><div class="margin-top-15 layui-progress layui-progress-big" lay-showPercent="yes"><div class="layui-progress-bar transition" lay-percent="0.00%"></div></div>' + '<div class="margin-top-15"><code class="layui-textarea layui-bg-black border-0" style="resize:none;overflow:hidden;height:190px"></code></div></div>';
return Queue; return Queue;
@ -30,7 +30,7 @@ define(function () {
} }
function Progress($elem, code, queue, doScript) { function Progress($elem, code, queue, doScript) {
var that = this; let that = this;
this.$box = $elem.find('[data-queue-load=' + code + ']'); this.$box = $elem.find('[data-queue-load=' + code + ']');
if (queue.doAjax === false || this.$box.length < 1) return false; if (queue.doAjax === false || this.$box.length < 1) return false;
@ -41,7 +41,7 @@ define(function () {
// 设置数据缓存 // 设置数据缓存
this.SetCache = function (code, index, value) { this.SetCache = function (code, index, value) {
var ckey = code + '_' + index, ctype = 'admin-queue-script'; let ckey = code + '_' + index, ctype = 'admin-queue-script';
return value !== undefined ? layui.data(ctype, {key: ckey, value: value}) : layui.data(ctype)[ckey] || 0; return value !== undefined ? layui.data(ctype, {key: ckey, value: value}) : layui.data(ctype)[ckey] || 0;
}; };
@ -72,9 +72,9 @@ define(function () {
if (queue.doAjax === false || that.$box.length < 1) return false; if (queue.doAjax === false || that.$box.length < 1) return false;
$.form.load(tapiRoot + '/api.queue/progress', {code: code}, 'post', function (ret) { $.form.load(tapiRoot + '/api.queue/progress', {code: code}, 'post', function (ret) {
if (ret.code) { if (ret.code) {
var lines = []; let lines = [];
for (var idx in ret.data.history) { for (let idx in ret.data.history) {
var line = ret.data.history[idx], percent = '[ ' + line.progress + '% ] '; let line = ret.data.history[idx], percent = '[ ' + line.progress + '% ] ';
if (line.message.indexOf('javascript:') === -1) { if (line.message.indexOf('javascript:') === -1) {
lines.push(line.message.indexOf('>>>') > -1 ? line.message : percent + line.message); lines.push(line.message.indexOf('>>>') > -1 ? line.message : percent + line.message);
} else if (!that.SetCache(code, idx) && doScript !== false) { } else if (!that.SetCache(code, idx) && doScript !== false) {

View File

@ -16,8 +16,8 @@ define(function () {
return Validate; return Validate;
function Validate(form, onConfirm) { function Validate(form) {
var that = this; let that = this;
// 绑定表单元素 // 绑定表单元素
this.form = $(form); this.form = $(form);
// 绑定元素事件 // 绑定元素事件
@ -48,7 +48,7 @@ define(function () {
return new RegExp(pattern, 'i').test(value); return new RegExp(pattern, 'i').test(value);
}; };
this.hasProp = function (el, prop) { this.hasProp = function (el, prop) {
var attrProp = el.getAttribute(prop); let attrProp = el.getAttribute(prop);
return typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false; return typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false;
}; };
this.hasCheck = function (el, type) { this.hasCheck = function (el, type) {
@ -57,7 +57,7 @@ define(function () {
return $.inArray(type, ['file', 'reset', 'image', 'radio', 'checkbox', 'submit', 'hidden']) < 0; return $.inArray(type, ['file', 'reset', 'image', 'radio', 'checkbox', 'submit', 'hidden']) < 0;
}; };
this.checkAllInput = function () { this.checkAllInput = function () {
var status = true; let status = true;
return this.form.find(this.tags).each(function () { return this.form.find(this.tags).each(function () {
!that.checkInput(this) && status && (status = !$(this).focus()); !that.checkInput(this) && status && (status = !$(this).focus());
}) && status; }) && status;
@ -103,12 +103,12 @@ define(function () {
/* 检查所有表单元素是否通过H5的规则验证 */ /* 检查所有表单元素是否通过H5的规则验证 */
if (that.checkAllInput() && that.dones.length > 0) { if (that.checkAllInput() && that.dones.length > 0) {
if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') { if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
for (var i in CKEDITOR.instances) CKEDITOR.instances[i].updateElement(); for (let i in CKEDITOR.instances) CKEDITOR.instances[i].updateElement();
} }
/* 触发表单提交后,锁定三秒不能再次提交表单 */ /* 触发表单提交后,锁定三秒不能再次提交表单 */
if (that.form.attr('submit-locked')) return false; if (that.form.attr('submit-locked')) return false;
evt.submit = that.form.find('button[type=submit],button:not([type=button])'); evt.submit = that.form.find('button[type=submit],button:not([type=button])');
onConfirm(evt.submit.attr('data-confirm'), function () { $.base.onConfirm(evt.submit.attr('data-confirm'), function () {
that.form.attr('submit-locked', 1) && evt.submit.addClass('submit-button-loading'); that.form.attr('submit-locked', 1) && evt.submit.addClass('submit-button-loading');
setTimeout(function () { setTimeout(function () {
that.form.removeAttr('submit-locked') && evt.submit.removeClass('submit-button-loading'); that.form.removeAttr('submit-locked') && evt.submit.removeClass('submit-button-loading');

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -15,9 +15,58 @@
// | github 代码仓库https://github.com/zoujingli/think-plugs-static // | github 代码仓库https://github.com/zoujingli/think-plugs-static
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
// 新样式
// .flex-x
// .flex-x-center
// .flex-y
// .flex-y-center
// .flex-center
// .flex-between
.flex { .flex {
#flex(); #flex();
each(range(5), {
&-@{value} {
flex: @value;
}
});
&-x {
#flex();
height: 100%;
#flexDirection(row);
&-center {
#flex();
height: 100%;
#flexAlign(center)
}
}
&-y {
#flex();
width: 100%;
#flexDirection(column);
&-center {
#flex();
width: 100%;
#flexJustify(center);
}
}
&-center {
#flex();
#flexAlign(center);
#flexJustify(center);
}
&-between {
#flex();
justify-content: space-between;
}
&-inline { &-inline {
display: inline-flex; display: inline-flex;
} }
@ -96,26 +145,6 @@
} }
} }
} }
&-1 {
flex: 1;
}
&-2 {
flex: 2;
}
&-3 {
flex: 3;
}
&-4 {
flex: 4;
}
&-5 {
flex: 5;
}
} }
.fixed { .fixed {
@ -956,7 +985,7 @@ input:not(.layui-hide,[type=hidden]) {
height: 240px; height: 240px;
} }
.layui-btn:not([type=button]) { button.layui-btn:not([type=button]) {
overflow: hidden; overflow: hidden;
position: relative; position: relative;
@ -1409,23 +1438,23 @@ label.think-checkbox {
.sub-span- { .sub-span- {
&red span { &red span {
color: #e44 !important color: #e44
} }
&blue span { &blue span {
color: #29f !important color: #29f
} }
&desc span { &desc span {
color: #999 !important color: #999
} }
&text span { &text span {
color: #333 !important color: #333
} }
&green span { &green span {
color: #090 !important color: #090
} }
} }
@ -1443,23 +1472,23 @@ label.think-checkbox {
} }
&red b { &red b {
color: #ec494e !important color: #ec494e
} }
&blue b { &blue b {
color: #2494f2 !important color: #2494f2
} }
&desc b { &desc b {
color: #999 !important color: #999
} }
&text b { &text b {
color: #333 !important color: #333
} }
&green b { &green b {
color: #090 !important color: #090
} }
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
@charset "UTF-8";@font-face{font-family:iconfont;src:url(./icon/iconfont.woff2?t=2021) format('woff2'),url(./icon/iconfont.woff?t=2021) format('woff'),url(./icon/iconfont.ttf?t=2021) format('truetype')}.iconfont{font-family:iconfont!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.iconfont-shoplight:before{content:"\e7b8"}.iconfont-wxapp:before{content:"\e63c"}.iconfont-yinliang:before{content:"\e87a"}.iconfont-pick:before{content:"\e823"}.iconfont-camerarotate:before{content:"\e6f9"}.iconfont-phone_light:before{content:"\e826"}.iconfont-light:before{content:"\e6fa"}.iconfont-barcode:before{content:"\e6fb"}.iconfont-change:before{content:"\e829"}.iconfont-searchlist:before{content:"\e6fe"}.iconfont-down:before{content:"\e703"}.iconfont-countdown:before{content:"\e708"}.iconfont-notice:before{content:"\e70a"}.iconfont-upstage:before{content:"\e70f"}.iconfont-brand:before{content:"\e713"}.iconfont-choiceness:before{content:"\e715"}.iconfont-warn_light:before{content:"\e841"}.iconfont-creative:before{content:"\e719"}.iconfont-new:before{content:"\e71e"}.iconfont-cameraadd:before{content:"\e724"}.iconfont-at:before{content:"\e853"}.iconfont-mark:before{content:"\e731"}.iconfont-file:before{content:"\e739"}.iconfont-community:before{content:"\e741"}.iconfont-calendar:before{content:"\e74a"}.iconfont-cut:before{content:"\e74b"}.iconfont-tag:before{content:"\e752"}.iconfont-group:before{content:"\e753"}.iconfont-all:before{content:"\e755"}.iconfont-hot:before{content:"\e758"}.iconfont-upload:before{content:"\e75d"}.iconfont-safe:before{content:"\e769"}.iconfont-sponsor:before{content:"\e77d"}.iconfont-goodsfavor:before{content:"\e794"}.iconfont-musicfill:before{content:"\e795"}.iconfont-emojilight:before{content:"\e7a1"}.iconfont-appreciate:before{content:"\e644"}.iconfont-edit:before{content:"\e649"}.iconfont-favor:before{content:"\e64c"}.iconfont-phone:before{content:"\e652"}.iconfont-circle:before{content:"\e7b1"}.iconfont-taxi:before{content:"\e65d"}.iconfont-time:before{content:"\e65f"}.iconfont-mail:before{content:"\e7bd"}.iconfont-warn:before{content:"\e663"}.iconfont-camera:before{content:"\e665"}.iconfont-comment:before{content:"\e667"}.iconfont-medal:before{content:"\e7c2"}.iconfont-like:before{content:"\e669"}.iconfont-notification:before{content:"\e66b"}.iconfont-news:before{content:"\e7c6"}.iconfont-ask:before{content:"\e7ca"}.iconfont-evaluate:before{content:"\e672"}.iconfont-wang:before{content:"\e678"}.iconfont-moneybag:before{content:"\e7d1"}.iconfont-cascades:before{content:"\e67c"}.iconfont-discover:before{content:"\e67e"}.iconfont-subscription:before{content:"\e7d4"}.iconfont-list:before{content:"\e682"}.iconfont-scan:before{content:"\e689"}.iconfont-community_light:before{content:"\e7d7"}.iconfont-question:before{content:"\e691"}.iconfont-pic:before{content:"\e69b"}.iconfont-we_fill_light:before{content:"\e7de"}.iconfont-skin_light:before{content:"\e7df"}.iconfont-refund:before{content:"\e6ac"}.iconfont-cart:before{content:"\e6af"}.iconfont-qrcode:before{content:"\e6b0"}.iconfont-remind:before{content:"\e6b2"}.iconfont-hot_light:before{content:"\e7eb"}.iconfont-profile:before{content:"\e6b7"}.iconfont-comment_light:before{content:"\e7ef"}.iconfont-appreciate_light:before{content:"\e7f0"}.iconfont-message:before{content:"\e6bc"}.iconfont-wang_light:before{content:"\e7f4"}.iconfont-vip:before{content:"\e6c3"}.iconfont-weibo:before{content:"\e6c4"}.iconfont-goods_favor_light:before{content:"\e7f8"}.iconfont-activity:before{content:"\e6c5"}.iconfont-goods_new_light:before{content:"\e7fa"}.iconfont-goods_light:before{content:"\e7fb"}.iconfont-medal_light:before{content:"\e7fd"}.iconfont-news_light:before{content:"\e801"}.iconfont-explore:before{content:"\e6d2"}.iconfont-present:before{content:"\e6d3"}.iconfont-global_light:before{content:"\e808"}.iconfont-game:before{content:"\e6df"}.iconfont-redpacket:before{content:"\e6e0"}.iconfont-similar:before{content:"\e6e2"}.iconfont-furniture:before{content:"\e814"}.iconfont-dress:before{content:"\e815"}.iconfont-sports:before{content:"\e817"}.iconfont-location:before{content:"\e819"}.iconfont-recharge:before{content:"\e6ed"}.iconfont-vipcard:before{content:"\e6ee"}.iconfont-voice:before{content:"\e6ef"}.iconfont-voicefill:before{content:"\e6f0"}.iconfont-wifi:before{content:"\e6f2"}.iconfont-wefill:before{content:"\e6f4"}.iconfont-we:before{content:"\e6f5"}/*# sourceMappingURL=iconfont.css.map */ @charset "UTF-8";@font-face{font-family:iconfont;src:url(./font/iconfont.woff2?t=2021) format('woff2'),url(./font/iconfont.woff?t=2021) format('woff'),url(./font/iconfont.ttf?t=2021) format('truetype')}.iconfont{font-family:iconfont,serif!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.iconfont-logo:before{content:"\e607"}.iconfont-x7:before{content:"\e606"}.iconfont-x2:before{content:"\e600"}.iconfont-x1:before{content:"\e601"}.iconfont-x5:before{content:"\e602"}.iconfont-x4:before{content:"\e603"}.iconfont-x6:before{content:"\e604"}.iconfont-x3:before{content:"\e605"}.iconfont-shoplight:before{content:"\e7b8"}.iconfont-wxapp:before{content:"\e63c"}.iconfont-yinliang:before{content:"\e87a"}.iconfont-pick:before{content:"\e823"}.iconfont-camerarotate:before{content:"\e6f9"}.iconfont-phone_light:before{content:"\e826"}.iconfont-light:before{content:"\e6fa"}.iconfont-barcode:before{content:"\e6fb"}.iconfont-change:before{content:"\e829"}.iconfont-searchlist:before{content:"\e6fe"}.iconfont-down:before{content:"\e703"}.iconfont-countdown:before{content:"\e708"}.iconfont-notice:before{content:"\e70a"}.iconfont-upstage:before{content:"\e70f"}.iconfont-brand:before{content:"\e713"}.iconfont-choiceness:before{content:"\e715"}.iconfont-warn_light:before{content:"\e841"}.iconfont-creative:before{content:"\e719"}.iconfont-new:before{content:"\e71e"}.iconfont-cameraadd:before{content:"\e724"}.iconfont-at:before{content:"\e853"}.iconfont-mark:before{content:"\e731"}.iconfont-file:before{content:"\e739"}.iconfont-community:before{content:"\e741"}.iconfont-calendar:before{content:"\e74a"}.iconfont-cut:before{content:"\e74b"}.iconfont-tag:before{content:"\e752"}.iconfont-group:before{content:"\e753"}.iconfont-all:before{content:"\e755"}.iconfont-hot:before{content:"\e758"}.iconfont-upload:before{content:"\e75d"}.iconfont-safe:before{content:"\e769"}.iconfont-sponsor:before{content:"\e77d"}.iconfont-goodsfavor:before{content:"\e794"}.iconfont-musicfill:before{content:"\e795"}.iconfont-emojilight:before{content:"\e7a1"}.iconfont-appreciate:before{content:"\e644"}.iconfont-edit:before{content:"\e649"}.iconfont-favor:before{content:"\e64c"}.iconfont-phone:before{content:"\e652"}.iconfont-circle:before{content:"\e7b1"}.iconfont-taxi:before{content:"\e65d"}.iconfont-time:before{content:"\e65f"}.iconfont-mail:before{content:"\e7bd"}.iconfont-warn:before{content:"\e663"}.iconfont-camera:before{content:"\e665"}.iconfont-comment:before{content:"\e667"}.iconfont-medal:before{content:"\e7c2"}.iconfont-like:before{content:"\e669"}.iconfont-notification:before{content:"\e66b"}.iconfont-news:before{content:"\e7c6"}.iconfont-ask:before{content:"\e7ca"}.iconfont-evaluate:before{content:"\e672"}.iconfont-wang:before{content:"\e678"}.iconfont-moneybag:before{content:"\e7d1"}.iconfont-cascades:before{content:"\e67c"}.iconfont-discover:before{content:"\e67e"}.iconfont-subscription:before{content:"\e7d4"}.iconfont-list:before{content:"\e682"}.iconfont-scan:before{content:"\e689"}.iconfont-community_light:before{content:"\e7d7"}.iconfont-question:before{content:"\e691"}.iconfont-pic:before{content:"\e69b"}.iconfont-we_fill_light:before{content:"\e7de"}.iconfont-skin_light:before{content:"\e7df"}.iconfont-refund:before{content:"\e6ac"}.iconfont-cart:before{content:"\e6af"}.iconfont-qrcode:before{content:"\e6b0"}.iconfont-remind:before{content:"\e6b2"}.iconfont-hot_light:before{content:"\e7eb"}.iconfont-profile:before{content:"\e6b7"}.iconfont-comment_light:before{content:"\e7ef"}.iconfont-appreciate_light:before{content:"\e7f0"}.iconfont-message:before{content:"\e6bc"}.iconfont-wang_light:before{content:"\e7f4"}.iconfont-vip:before{content:"\e6c3"}.iconfont-weibo:before{content:"\e6c4"}.iconfont-goods_favor_light:before{content:"\e7f8"}.iconfont-activity:before{content:"\e6c5"}.iconfont-goods_new_light:before{content:"\e7fa"}.iconfont-goods_light:before{content:"\e7fb"}.iconfont-medal_light:before{content:"\e7fd"}.iconfont-news_light:before{content:"\e801"}.iconfont-explore:before{content:"\e6d2"}.iconfont-present:before{content:"\e6d3"}.iconfont-global_light:before{content:"\e808"}.iconfont-game:before{content:"\e6df"}.iconfont-redpacket:before{content:"\e6e0"}.iconfont-similar:before{content:"\e6e2"}.iconfont-furniture:before{content:"\e814"}.iconfont-dress:before{content:"\e815"}.iconfont-sports:before{content:"\e817"}.iconfont-location:before{content:"\e819"}.iconfont-recharge:before{content:"\e6ed"}.iconfont-vipcard:before{content:"\e6ee"}.iconfont-voice:before{content:"\e6ef"}.iconfont-voicefill:before{content:"\e6f0"}.iconfont-wifi:before{content:"\e6f2"}.iconfont-wefill:before{content:"\e6f4"}.iconfont-we:before{content:"\e6f5"}/*# sourceMappingURL=iconfont.css.map */

View File

@ -1 +1 @@
{"version":3,"sources":["iconfont.less"],"names":[],"mappings":"iBAgBA,WACE,YAAA,SACA,IAAS,kCACL,gBAAA,iCACA,eAAA,gCAFJ,mBAKF,UACE,YAAA,mBACA,UAAA,KACA,WAAA,OACA,uBAAA,YACA,wBAAA,UAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGmB,6BACnB,QAAA,QAGa,uBACb,QAAA,QAGe,yBACf,QAAA,QAGc,wBACd,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGiB,2BACjB,QAAA,QAGU,oBACV,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGiB,2BACjB,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGa,uBACb,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGW,qBACX,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGuB,iCACvB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGqB,+BACrB,QAAA,QAGkB,4BAClB,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGc,wBACd,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGqB,+BACrB,QAAA,QAGwB,kCACxB,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGyB,mCACzB,QAAA,QAGgB,0BAChB,QAAA,QAGuB,iCACvB,QAAA,QAGmB,6BACnB,QAAA,QAGmB,6BACnB,QAAA,QAGkB,4BAClB,QAAA,QAGe,yBACf,QAAA,QAGe,yBACf,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGiB,2BACjB,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGU,oBACV,QAAA"} {"version":3,"sources":["iconfont.less"],"names":[],"mappings":"iBAgBA,WACE,YAAA,SACA,IAAS,kCAAqD,gBAAA,iCAAmD,eAAA,gCAAjH,mBAGF,UACE,YAAA,SAAA,gBACA,UAAA,KACA,WAAA,OACA,uBAAA,YACA,wBAAA,UAGY,sBACZ,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGmB,6BACnB,QAAA,QAGa,uBACb,QAAA,QAGe,yBACf,QAAA,QAGc,wBACd,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGiB,2BACjB,QAAA,QAGU,oBACV,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGiB,2BACjB,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGa,uBACb,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGW,qBACX,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGuB,iCACvB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGqB,+BACrB,QAAA,QAGkB,4BAClB,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGc,wBACd,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGqB,+BACrB,QAAA,QAGwB,kCACxB,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGyB,mCACzB,QAAA,QAGgB,0BAChB,QAAA,QAGuB,iCACvB,QAAA,QAGmB,6BACnB,QAAA,QAGmB,6BACnB,QAAA,QAGkB,4BAClB,QAAA,QAGe,yBACf,QAAA,QAGe,yBACf,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGiB,2BACjB,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGU,oBACV,QAAA"}

View File

@ -15,20 +15,50 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
@font-face { @font-face {
font-family: "iconfont"; font-family: iconfont;
src: url('./icon/iconfont.woff2?t=2021') format('woff2'), src: url('./font/iconfont.woff2?t=2021') format('woff2'), url('./font/iconfont.woff?t=2021') format('woff'), url('./font/iconfont.ttf?t=2021') format('truetype');
url('./icon/iconfont.woff?t=2021') format('woff'),
url('./icon/iconfont.ttf?t=2021') format('truetype');
} }
.iconfont { .iconfont {
font-family: "iconfont" !important; font-family: iconfont, serif !important;
font-size: 16px; font-size: 16px;
font-style: normal; font-style: normal;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.iconfont-logo:before {
content: "\e607";
}
.iconfont-x7:before {
content: "\e606";
}
.iconfont-x2:before {
content: "\e600";
}
.iconfont-x1:before {
content: "\e601";
}
.iconfont-x5:before {
content: "\e602";
}
.iconfont-x4:before {
content: "\e603";
}
.iconfont-x6:before {
content: "\e604";
}
.iconfont-x3:before {
content: "\e605";
}
.iconfont-shoplight:before { .iconfont-shoplight:before {
content: "\e7b8"; content: "\e7b8";
} }
@ -427,4 +457,4 @@
.iconfont-we:before { .iconfont-we:before {
content: "\e6f5"; content: "\e6f5";
} }