全栈小学生 e6c822aa8e up niucloud
2025-06-26 15:07:17 +08:00

93 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\api\controller\diy;
use app\service\api\diy_form\DiyFormService;
use core\base\BaseApiController;
use think\Response;
class DiyForm extends BaseApiController
{
/**
* 万能表单详情
* @return Response
*/
public function info()
{
$data = $this->request->params([
[ 'form_id', '' ],
]);
return success(( new DiyFormService() )->getInfo($data[ 'form_id' ]));
}
/**
* 提交填表记录
* @return Response
*/
public function addRecord()
{
$data = $this->request->params([
[ 'form_id', '' ],
[ 'value', [] ],
[ 'relate_id', '' ],
]);
return success('SUCCESS', ( new DiyFormService() )->addRecord($data));
}
/**
* 编辑填表记录
* @return Response
*/
public function editRecord()
{
$data = $this->request->params([
[ 'record_id', '' ],
[ 'value', [] ],
[ 'relate_id', '' ],
]);
return success('SUCCESS', ( new DiyFormService() )->editRecord($data));
}
/**
* 获取表单填写结果信息
* @return Response
*/
public function getResult()
{
$data = $this->request->params([
[ 'record_id', '' ],
]);
return success('SUCCESS', ( new DiyFormService() )->getResult($data));
}
/**
* 获取表单填写记录
* @return Response
*/
public function getRecord()
{
$data = $this->request->params([
[ 'record_id', '' ],
]);
return success('SUCCESS', ( new DiyFormService() )->getFormRecordInfo($data));
}
/**
* 获取个人资料表单填写记录
* @return Response
*/
public function getMemberInfoRecord()
{
return success('SUCCESS', ( new DiyFormService() )->getMemberInfoFormRecordInfo());
}
}