search($where)->field($filed)->find(); } else { return $this->getModel()->where($where)->find(); } } /** * 获取模板消息列表 * @param array $where * @param int $page * @param int $limit * @return \think\Collection * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function getTemplateList(array $where, int $page, int $limit) { return $this->getModel()->when(isset($where['name']) && $where['name'] != '', function ($query) use ($where) { $query->where('name', 'LIKE', "%$where[name]%"); })->when(isset($where['status']) && $where['status'] != '', function ($query) use ($where) { $query->where('status', $where['status']); })->where('type', $where['type'])->page($page, $limit)->select()->toArray(); } }