getList($search); return $this->fetch('index', compact('list')); } /** * 取消同步 * @param $id * @return array|bool * @throws \app\common\exception\BaseException * @throws \think\exception\DbException */ public function delete($id) { // 删除微信好物圈收藏 $WechatWow = new WowService($this->getWxappId()); $WechatWow->delete($id); return $this->renderSuccess('操作成功'); } }