| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-03-30
- *
- *
- */
- namespace app\common\repositories\system\groupData;
- use app\common\dao\BaseDao;
- use app\common\dao\system\groupData\GroupDataDao;
- use app\common\repositories\BaseRepository;
- use FormBuilder\Exception\FormBuilderException;
- use FormBuilder\Factory\Elm;
- use FormBuilder\Form;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\facade\Route;
- use think\Model;
- /**
- * Class GroupDataRepository
- * @package app\common\repositories\system\groupData
- * @mixin GroupDataDao
- * @author xaboy
- * @day 2020-03-30
- */
- class GroupDataRepository extends BaseRepository
- {
- /**
- * GroupDataRepository constructor.
- * @param GroupDataDao $dao
- */
- public function __construct(GroupDataDao $dao)
- {
- $this->dao = $dao;
- }
- /**
- * @param int $merId
- * @param array $data
- * @return BaseDao|Model
- * @author xaboy
- * @day 2020-03-30
- */
- public function create(int $merId, array $data)
- {
- $data['mer_id'] = $merId;
- return $this->dao->create($data);
- }
- /**
- * @param int $merId
- * @param int $groupId
- * @param int $page
- * @param int $limit
- * @return array
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-03-30
- */
- public function getGroupDataLst(int $merId, int $groupId, int $page, int $limit): array
- {
- $query = $this->dao->getGroupDataWhere($merId, $groupId);
- $count = $query->count();
- $list = $query->field('group_data_id,value,sort,status,create_time')->page($page, $limit)->select()->toArray();
- foreach ($list as $k => $data) {
- $data['status']=(int)$data['status'];
- $value = $data['value'];
- unset($data['value']);
- $data += $value;
- $list[$k] = $data;
- }
- return compact('count', 'list');
- }
- /**
- * @param int $groupId
- * @param int|null $id
- * @param array $formData
- * @return Form
- * @throws FormBuilderException
- * @author xaboy
- * @day 2020-04-02
- */
- public function form_mer(int $groupId, ?int $id = null, array $formData = []): Form
- {
- $fields = app()->make(GroupRepository::class)->fields($groupId);
- $form = Elm::createForm(is_null($id) ? Route::buildUrl('groupDataCreate', compact('groupId'))->build() : Route::buildUrl('groupDataUpdate', compact('groupId', 'id'))->build());
- $rules = [];
- foreach ($fields as $field) {
- if ($field['type'] == 'image') {
- $rules[] = Elm::frameImage($field['field'], $field['name'], '/' . config('admin.merchant_prefix') . '/setting/uploadPicture?field=' . $field['field'] . '&type=1')->modal(['modal' => false])->width('896px')->height('480px')->props(['footer' => false]);
- continue;
- } else if (in_array($field['type'], ['select', 'checkbox', 'radio'])) {
- $options = array_map(function ($val) {
- [$value, $label] = explode(':', $val, 2);
- return compact('value', 'label');
- }, explode("\n", $field['param']));
- $rules[] = Elm::{$field['type']}($field['field'], $field['name'])->options($options);
- continue;
- }
- if ($field['type'] == 'file') {
- $rules[] = Elm::uploadFile($field['field'], $field['name'], Route::buildUrl('configUpload', ['field' => 'file'])->build())->headers(['X-Token' => request()->token()]);
- continue;
- }
- $rules[] = Elm::{$field['type']}($field['field'], $field['name'], '');
- }
- $rules[] = Elm::number('sort', '排序', 0);
- $rules[] = Elm::switches('status', '是否显示', 1)->activeValue(1)->inactiveValue(0)->inactiveText('关闭')->activeText('开启');
- $form->setRule($rules);
- return $form->setTitle(is_null($id) ? '添加数据' : '编辑数据')->formData($formData);
- }
- public function form(int $groupId, ?int $id = null, array $formData = []): Form
- {
- $fields = app()->make(GroupRepository::class)->fields($groupId);
- $form = Elm::createForm(is_null($id) ? Route::buildUrl('groupDataCreate', compact('groupId'))->build() : Route::buildUrl('groupDataUpdate', compact('groupId', 'id'))->build());
- $rules = [];
- foreach ($fields as $field) {
- if ($field['type'] == 'image') {
- $rules[] = Elm::frameImage($field['field'], $field['name'], '/' . config('admin.admin_prefix') . '/setting/uploadPicture?field=' . $field['field'] . '&type=1')->modal(['modal' => false])->width('896px')->height('480px')->props(['footer' => false]);
- continue;
- } else if (in_array($field['type'], ['select', 'checkbox', 'radio'])) {
- $options = array_map(function ($val) {
- [$value, $label] = explode(':', $val, 2);
- return compact('value', 'label');
- }, explode("\n", $field['param']));
- $rules[] = Elm::{$field['type']}($field['field'], $field['name'])->options($options);
- continue;
- }
- if ($field['type'] == 'file') {
- $rules[] = Elm::uploadFile($field['field'], $field['name'], Route::buildUrl('configUpload', ['field' => 'file'])->build())->headers(['X-Token' => request()->token()]);
- continue;
- }
- $rules[] = Elm::{$field['type']}($field['field'], $field['name'], '');
- }
- $rules[] = Elm::number('sort', '排序', 0);
- $rules[] = Elm::switches('status', '是否显示', 1)->activeValue(1)->inactiveValue(0)->inactiveText('关闭')->activeText('开启');
- $form->setRule($rules);
- return $form->setTitle(is_null($id) ? '添加数据' : '编辑数据')->formData($formData);
- }
- /**
- * @param int $groupId
- * @param int $merId
- * @param int $id
- * @return Form
- * @throws DataNotFoundException
- * @throws DbException
- * @throws FormBuilderException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-04-02
- */
- public function updateForm_mer(int $groupId, int $merId, int $id)
- {
- $data = $this->dao->getGroupDataWhere($merId, $groupId)->where('group_data_id', $id)->find()->toArray();
- $value = $data['value'];
- unset($data['value']);
- $data += $value;
- if(isset($data['status'])){
- $data['status']=(int)$data['status'];
- }
- return $this->form_mer($groupId, $id, $data);
- }
- public function updateForm(int $groupId, int $merId, int $id)
- {
- $data = $this->dao->getGroupDataWhere($merId, $groupId)->where('group_data_id', $id)->find()->toArray();
- $value = $data['value'];
- unset($data['value']);
- $data += $value;
- if(isset($data['status'])){
- $data['status']=(int)$data['status'];
- }
- return $this->form($groupId, $id, $data);
- }
- /**
- * @param string $key
- * @param int $merId
- * @param int|null $page
- * @param int|null $limit
- * @return array
- * @author xaboy
- * @day 2020/5/27
- */
- public function groupData(string $key, int $merId, ?int $page = null, ?int $limit = 10)
- {
- /** @var GroupRepository $make */
- $make = app()->make(GroupRepository::class);
- $groupId = $make->keyById($key);
- if (!$groupId) return [];
- return $this->dao->getGroupData($merId, $groupId, $page, $limit);
- }
- /**
- * @param int $id
- * @param int $merId
- * @return mixed|void
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020/6/2
- */
- public function idByData(int $id, int $merId)
- {
- $data = $this->dao->merGet($id, $merId);
- if (!$data) return;
- return json_decode($data['value']);
- }
- /**
- * @param string $key
- * @param int $merId
- * @param int|null $page
- * @param int|null $limit
- * @return array
- * @author xaboy
- * @day 2020/6/3
- */
- public function groupDataId(string $key, int $merId, ?int $page = null, ?int $limit = 10)
- {
- $make = app()->make(GroupRepository::class);
- $groupId = $make->keyById($key);
- if (!$groupId) return [];
- return $this->dao->getGroupDataId($merId, $groupId, $page, $limit);
- }
- }
|