You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.9 KiB
76 lines
1.9 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\controller\store\system\form;
|
|
|
|
|
|
use app\controller\store\AuthController;
|
|
use app\services\system\form\SystemFormServices;
|
|
use think\facade\App;
|
|
|
|
/**
|
|
*
|
|
* Class SystemForm
|
|
* @package app\controller\store\system\form
|
|
*/
|
|
class SystemForm extends AuthController
|
|
{
|
|
|
|
/**
|
|
* Diy constructor.
|
|
* @param App $app
|
|
* @param SystemFormServices $services
|
|
*/
|
|
public function __construct(App $app, SystemFormServices $services)
|
|
{
|
|
parent::__construct($app);
|
|
$this->services = $services;
|
|
}
|
|
|
|
|
|
/*
|
|
* 所有系统表单
|
|
*/
|
|
public function allSystemForm()
|
|
{
|
|
$data = $this->services->getFormList([], ['id', 'name']);
|
|
return $this->success($data['list'] ?? []);
|
|
}
|
|
|
|
/**
|
|
* 获取一条数据
|
|
* @param int $id
|
|
* @return mixed
|
|
*/
|
|
public function getInfo(int $id)
|
|
{
|
|
if (!$id) return $this->fail('数据不存在');
|
|
[$type] = $this->request->postMore([
|
|
['type', 0],
|
|
], true);
|
|
$info = $this->services->get($id);
|
|
if ($info) {
|
|
$info = $info->toArray();
|
|
} else {
|
|
return $this->fail('数据不存在');
|
|
}
|
|
$info['value'] = json_decode($info['value'], true);
|
|
if ($type == 1) {//处理表单数据
|
|
$value = $info['value'] ?? [];
|
|
$info = $this->services->handleForm($value);
|
|
}
|
|
return $this->success(compact('info'));
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|