<?php
namespace app\index\controller;
use app\index\controller\Common;
use app\service\ApiService;
use app\service\FormTableService;
* 动态表单
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class FormTable extends Common
{
* 构造方法
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-03T12:39:08+0800
*/
public function __construct()
{
parent::__construct();
IsUserLogin();
}
* 字段选择保存
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-10-08
* @desc description
*/
public function FieldsSelectSave()
{
$params = $this->data_request;
$params['user_id'] = $this->user['id'];
$params['user_type'] = 1;
return ApiService::ApiDataReturn(FormTableService::FieldsSelectSave($params));
}
* 字段选择重置
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2020-10-08
* @desc description
*/
public function FieldsSelectReset()
{
$params = $this->data_request;
$params['user_id'] = $this->user['id'];
$params['user_type'] = 1;
return ApiService::ApiDataReturn(FormTableService::FieldsSelectReset($params));
}
}
?>