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"}
- - | -消息编号 | -延迟时间 | -消息类型 | -预览 | -添加时间 | -状态 | -- |
---|---|---|---|---|---|---|---|
- - | -{$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} | -- - - 编 辑 - - - - 禁 用 - - 激 活 - - - - 删 除 - - - | -