diff --git a/app/wechat/controller/Auto.php b/app/wechat/controller/Auto.php index f546e6534..33d71a99f 100644 --- a/app/wechat/controller/Auto.php +++ b/app/wechat/controller/Auto.php @@ -42,13 +42,18 @@ class Auto extends Controller * 关注自动回复 * @auth true * @menu true + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException */ public function index() { - $this->title = '关注自动回复'; - WechatAuto::mQuery(null, function (QueryHelper $query) { - $query->like('code,type')->equal('status'); - $query->dateBetween('create_at')->order('time asc')->page(); + $this->type = input('get.type', 'index'); + WechatAuto::mQuery()->layTable(function () { + $this->title = '关注自动回复'; + }, function (QueryHelper $query) { + $query->like('code,type#mtype')->dateBetween('create_at'); + $query->where(['status' => intval($this->type === 'index')]); }); } diff --git a/app/wechat/model/WechatAuto.php b/app/wechat/model/WechatAuto.php index e04c29904..11802dab3 100644 --- a/app/wechat/model/WechatAuto.php +++ b/app/wechat/model/WechatAuto.php @@ -25,4 +25,13 @@ use think\admin\Model; */ class WechatAuto extends Model { + /** + * 格式化创建时间 + * @param string $value + * @return string + */ + public function getCreateAtAttr(string $value): string + { + return format_datetime($value); + } } \ No newline at end of file diff --git a/app/wechat/view/auto/index.html b/app/wechat/view/auto/index.html index ae0448155..74fb2b764 100644 --- a/app/wechat/view/auto/index.html +++ b/app/wechat/view/auto/index.html @@ -1,86 +1,112 @@ -{extend name="../../admin/view/main"} +{extend name="../../admin/view/table"} {block name="button"} - - + + - - + + + + + + + + + + {/block} -{block name='content'} +{block name="content"}
- 特别注意:关注自动回复使用微信客服消息接口发送,因此多图文只能发送每组图文的第一篇文章,另外还需要开启系统任务功能。 + 特别注意:关注自动回复使用微信客服消息接口发送,因此多图文只能发送每组图文的第一篇文章,另外还需要开启系统任务功能。
-
- {include file='auto/index_search'} - - {notempty name='list'} - - - - - - - - - - - - - {/notempty} - - {foreach $list as $key=>$vo} - - - - - - - - - - - {/foreach} - -
- - 消息编号延迟时间消息类型预览添加时间状态
- - {$vo.code}{$vo.time}{$vo.type} - {if $vo.type eq '音乐'} - 预览 - {elseif in_array($vo.type,['文字','转客服'])} - 预览 - {elseif $vo.type eq '图片'} - 预览 - {elseif $vo.type eq '图文'} - 预览 - {elseif $vo.type eq '视频'} - 预览 - {elseif $vo.type eq '语音'} - 预览 - {else} {$vo.content} {/if} - {$vo.create_at|format_datetime}{if $vo.status eq 0}已禁用{elseif $vo.status eq 1}已激活{/if} - - - 编 辑 - - - - 禁 用 - - 激 活 - - - - 删 除 - - -
- {empty name='list'}没有记录哦{else}{$pagehtml|raw|default=''}{/empty} +
+ +
+ {include file='auto/index_search'} +
+
+{/block} + +{block name='script'} + + + + + + + + + {/block} \ No newline at end of file diff --git a/app/wechat/view/auto/index_search.html b/app/wechat/view/auto/index_search.html index 2840e4447..6b6ceb84f 100644 --- a/app/wechat/view/auto/index_search.html +++ b/app/wechat/view/auto/index_search.html @@ -12,9 +12,9 @@
- - {foreach $types as $k => $v}{if $k.'' eq input('type')} + {foreach $types as $k => $v}{if $k.'' eq input('mtype')} {else}