1
This commit is contained in:
@@ -730,6 +730,20 @@ class Datebase extends Controller
|
||||
}
|
||||
|
||||
|
||||
public function dataPushForLx(){
|
||||
$data = $this->request->post();
|
||||
$rule = new Validate([
|
||||
"article_id"=>"require"
|
||||
]);
|
||||
if(!$rule->check($data)){
|
||||
return jsonError($rule->getError());
|
||||
}
|
||||
|
||||
$article_info = $this->article_obj->where("article_id",$data['article_id'])->find();
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function Mycreate(){
|
||||
$data = $this->request->post();
|
||||
$url = $this->ts_base_url."api/dataApi/createTemplate";
|
||||
|
||||
Reference in New Issue
Block a user