self::$AccessKeyId, 'AccessKeySecret' => self::$accessKeySecret, 'OssEndpoint' => self::$end_point, 'OssBucket' => self::$OssBucket, 'uploadUrl' => self::$uploadUrl ]); } /** * 附件列表 * @return \think\response\Json */ public function index() { $pid = request()->param('pid'); if ($pid === NULL) { $pid = session('pid') ? session('pid') : 0; } session('pid', $pid); $this->assign('pid', $pid); $this->assign('maxLength', $this->request->get('max_count', 0)); $this->assign('fodder', $this->request->param('fodder', $this->request->get('fodder', ''))); return $this->fetch('widget/images'); } /** * 获取图片列表 */ public function get_image_list() { $where = parent::getMore([ ['page', 1], ['limit', 18], ['pid', 0], ['title', ''] ]); $where['agent_id'] = $this->merchantId; return Json::successful(SystemAttachmentModel::getImageList($where)); } /**获取分类 * @param string $name */ public function get_image_cate() { $mer_id = $this->merchantId; return Json::successful(Category::getAll($mer_id)); } /** * 图片管理上传图片 * @return \think\response\Json */ public function upload() { $pid = input('pid') != NULL ? input('pid') : session('pid'); $title = input('title') != NULL ? input('title') : ''; $mer_id = $this->merchantId; try { $aliyunOss = $this->init(); $res = $aliyunOss->upload('file'); if ($res) { SystemAttachmentModel::attachmentAdd($mer_id, $res['key'], $title, 0, 'image/jpg', $res['url'], $res['url'], $pid, 1, time()); return Json::successful(['url' => $res]); } else { return Json::fail($aliyunOss->getErrorInfo()['msg']); } } catch (\Exception $e) { return Json::fail('上传失败:' . $e->getMessage()); } } /** * ajax 提交删除 */ public function delete() { $post = $this->request->post(); if (empty($post['imageid'])) Json::fail('还没选择要删除的图片呢?'); foreach ($post['imageid'] as $v) { if ($v) self::deleteimganddata($v); } Json::successful('删除成功'); } /**删除图片和数据记录 * @param $att_id */ public function deleteimganddata($att_id) { $attinfo = SystemAttachmentModel::get($att_id); if ($attinfo) { try { $this->init()->delOssFile($attinfo->name); } catch (\Throwable $e) { } $attinfo->delete(); } } /** * 修改图片名称 */ public function updateImageTitle() { $data = parent::postMore([ ['att_id', 0], ['title', ''] ]); $res = SystemAttachmentModel::attachmentTitle($data); if ($res) Json::successful('修改成功'); else Json::fail('修改失败!'); } /** * 移动图片分类显示 */ public function moveimg($imgaes) { $formbuider = []; $formbuider[] = Form::hidden('imgaes', $imgaes); $formbuider[] = Form::select('pid', '选择分类')->setOptions(function () { $mer_id = $this->merchantId; $list = Category::getCateList('', $mer_id); $options = [['value' => 0, 'label' => '所有分类']]; foreach ($list as $id => $cateName) { $options[] = ['label' => $cateName['html'] . $cateName['name'], 'value' => $cateName['id']]; } return $options; })->filterable(1); $form = Form::make_post_form('编辑分类', $formbuider, Url::build('moveImgCecate'), 5); $this->assign(compact('form')); return $this->fetch('public/form-builder'); } /** * 移动图片分类操作 */ public function moveImgCecate() { $data = parent::postMore([ 'pid', 'imgaes' ]); if ($data['imgaes'] == '') return Json::fail('请选择图片'); if (!$data['pid']) return Json::fail('请选择分类'); $res = SystemAttachmentModel::where('att_id', 'in', $data['imgaes'])->update(['pid' => $data['pid']]); if ($res) Json::successful('移动成功'); else Json::fail('移动失败!'); } /** * ajax 添加分类 */ public function addcate($id = 0) { $formbuider = []; $formbuider[] = Form::select('pid', '上级分类', (string)$id)->setOptions(function () { $mer_id = $this->merchantId; $list = Category::getCateList(0, $mer_id); $options = [['value' => 0, 'label' => '所有分类']]; foreach ($list as $id => $cateName) { $options[] = ['label' => $cateName['html'] . $cateName['name'], 'value' => $cateName['id']]; } return $options; })->filterable(1); $formbuider[] = Form::input('name', '分类名称')->maxlength(6); $jsContent = <<