getPageValue(); $list = $this->dao->getTemplateList($where, $page, $limit); foreach ($list as &$item) { if ($item['content']) $item['content'] = explode("\n", $item['content']); } $count = $this->dao->count($where); return compact('list', 'count'); } /** * 获取模板消息id * @param string $templateId * @param int $type * @return mixed */ public function getTempId(string $templateId, int $type = 0) { return $this->dao->value(['type' => $type, 'tempkey' => $templateId, 'status' => 1], 'tempid'); } }