mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
优化管理样式
This commit is contained in:
parent
7e8e721883
commit
b4d3be8785
@ -597,7 +597,7 @@ $(function () {
|
||||
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>');
|
||||
var $in = $(this).on('change', function () {
|
||||
if (this.value) $bt.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');
|
||||
$bt.on('click', 'i.layui-icon-search', function (event) {
|
||||
event.stopPropagation(), $in.val() && $.form.iframe(encodeURI($in.val()), '视频预览');
|
||||
@ -907,7 +907,6 @@ $(function () {
|
||||
|
||||
/*! 注册 data-file 事件行为 */
|
||||
onEvent('click', '[data-file]', function () {
|
||||
console.log('data-file')
|
||||
this.id = this.dataset.id = this.id || (function (date) {
|
||||
return (date + Math.random()).replace('0.', '');
|
||||
})(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-'));
|
||||
|
@ -27,4 +27,14 @@ $(function () {
|
||||
// });
|
||||
|
||||
/*! 其他 javascript 脚本代码 */
|
||||
|
||||
// 显示表格图片
|
||||
window.showTableImage = function (image, circle, size, title) {
|
||||
if (typeof image !== 'string' || image.length < 5) {
|
||||
return '<span class="color-desc">-</span>' + (title ? laytpl('<span class="margin-left-5">{{d.title}}</span>').render({title: title}) : '');
|
||||
}
|
||||
return laytpl('<div class="headimg {{d.class}} headimg-{{d.size}}" data-tips-image data-tips-hover data-lazy-src="{{d.image}}" style="{{d.style}}"></div>').render({
|
||||
size: size || 'ss', class: circle ? 'shadow-inset' : 'headimg-no', image: image, style: 'background-image:url(' + image + ');margin-right:0'
|
||||
}) + (title ? laytpl('<span class="margin-left-5">{{d.title}}</span>').render({title: title}) : '');
|
||||
};
|
||||
});
|
@ -829,6 +829,7 @@ input:not(.layui-hide,[type=hidden]) {
|
||||
box-shadow: @ShadowOuterMin;
|
||||
|
||||
&.uploadvideo {
|
||||
background-color: #223;
|
||||
background-image: url('../img/upvideo.png');
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user