diff --git a/.gitignore b/.gitignore
index c7f0ca4..b67d79c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,11 +1,7 @@
/.idea
/.vscode
/.gitee
-/vendor/*
*.log
/.env
-/public/storage/*
-/runtime
/public/.user.ini
-/public/backup/*
/config/install.lock
diff --git a/app/admin/controller/Slide.php b/app/admin/controller/Slide.php
index 7011208..0892e42 100644
--- a/app/admin/controller/Slide.php
+++ b/app/admin/controller/Slide.php
@@ -111,10 +111,13 @@ class Slide extends BaseController
{
$param = get_params();
$where = array();
- $where[] = ['slide_id','=',$param['id']];
+ $where[] = ['s.slide_id','=',$param['id']];
$rows = empty($param['limit']) ? get_config(app . page_size) : $param['limit'];
$slideInfoList = SlideInfo::where($where)
- ->order('sort desc, id desc')
+ ->alias('s')
+ ->join('file f', 's.img=f.id', 'LEFT')
+ ->field('s.*,f.filepath')
+ ->order('s.sort desc, s.id desc')
->paginate($rows, false, ['query' => $param]);
return table_assign(1, '', $slideInfoList);
}
diff --git a/app/admin/view/conf/email.html b/app/admin/view/conf/email.html
index fb6f539..6dbfd17 100644
--- a/app/admin/view/conf/email.html
+++ b/app/admin/view/conf/email.html
@@ -68,8 +68,9 @@
+
-
发送测试
+
{/block}
@@ -102,7 +103,7 @@
return false;
});
- $('#emailto').click(function () {
+ $('.body-content').on('click', '[lay-event="email"]', function () {
layer.prompt({
formType: 0,
value: '',
@@ -131,6 +132,11 @@
})
});
})
+ //监听返回
+ $('.body-content').on('click', '[lay-event="back"]', function () {
+ history.back(-1);
+ return false;
+ });
}
diff --git a/app/admin/view/conf/other.html b/app/admin/view/conf/other.html
index df1092a..c5c6242 100644
--- a/app/admin/view/conf/other.html
+++ b/app/admin/view/conf/other.html
@@ -23,6 +23,7 @@
+
{/block}
@@ -57,6 +58,11 @@
})
return false;
});
+ //监听返回
+ $('.body-content').on('click', '[lay-event="back"]', function () {
+ history.back(-1);
+ return false;
+ });
}
{include file="common/layui" base='base' extend="[]" use="['form']" callback="init" /}
diff --git a/app/admin/view/conf/web.html b/app/admin/view/conf/web.html
index 2819ad0..dcd2cdd 100644
--- a/app/admin/view/conf/web.html
+++ b/app/admin/view/conf/web.html
@@ -83,6 +83,7 @@
+
{/block}
@@ -135,6 +136,11 @@
})
return false;
});
+ //监听返回
+ $('.body-content').on('click', '[lay-event="back"]', function () {
+ history.back(-1);
+ return false;
+ });
}
{include file="common/layui" base='base' extend="[]" use="['upload','form']" callback="init" /}
diff --git a/app/admin/view/conf/wechat.html b/app/admin/view/conf/wechat.html
index ad67c44..09e8766 100644
--- a/app/admin/view/conf/wechat.html
+++ b/app/admin/view/conf/wechat.html
@@ -5,52 +5,63 @@
微信配置
+
{/block}
@@ -85,6 +96,11 @@
})
return false;
});
+ //监听返回
+ $('.body-content').on('click', '[lay-event="back"]', function () {
+ history.back(-1);
+ return false;
+ });
}
{include file="common/layui" base='base' extend="[]" use="['upload','form']" callback="init" /}
diff --git a/app/admin/view/slide/slide_info.html b/app/admin/view/slide/slide_info.html
index aba5e04..f9d2f27 100644
--- a/app/admin/view/slide/slide_info.html
+++ b/app/admin/view/slide/slide_info.html
@@ -51,11 +51,21 @@
}, {
field: 'sort',
title: '排序',
+ align: 'center',
width: 80
}, {
field: 'title',
title: '标题',
width: 300
+ }, {
+ field: 'img',
+ title: '图片',
+ width: 136,
+ align: 'center',
+ templet:function(d){
+ var html='
';
+ return html;
+ }
}, {
field: 'desc',
title: '描述'
diff --git a/app/admin/view/slide/slide_info_add.html b/app/admin/view/slide/slide_info_add.html
index 12c123b..28b6623 100644
--- a/app/admin/view/slide/slide_info_add.html
+++ b/app/admin/view/slide/slide_info_add.html
@@ -4,39 +4,33 @@