| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\controller\wxapp;
- use app\api\controller\Controller;
- use app\api\model\wxapp\Formid as FormidModel;
- /**
- * form_id 管理
- * Class Formid
- * @package app\api\controller\wxapp
- */
- class Formid extends Controller
- {
- /**
- * 新增form_id
- * @param $formId
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\exception\DbException
- */
- public function save($formId)
- {
- if (!$user = $this->getUser(false)) {
- return $this->renderSuccess();
- }
- if (FormidModel::add($user['user_id'], $formId)) {
- return $this->renderSuccess();
- }
- return $this->renderError();
- }
- }
|