moshaorui 2 달 전
부모
커밋
894101338e
10개의 변경된 파일188개의 추가작업 그리고 74개의 파일을 삭제
  1. 15 0
      app/Exceptions/Form/TradFile.php
  2. 74 0
      app/Exceptions/Form/TradImage.php
  3. 2 1
      app/Libraries/CommonHelper.php
  4. 13 0
      config/admin.php
  5. 7 70
      config/dictionary.php
  6. 5 1
      lang/en/admin.php
  7. 30 0
      lang/en/global.php
  8. 8 2
      lang/zh_CN/admin.php
  9. 30 0
      lang/zh_CN/global.php
  10. 4 0
      lang/zh_CN/menu.php

+ 15 - 0
app/Exceptions/Form/TradFile.php

@@ -0,0 +1,15 @@
+<?php
+
+namespace App\Exceptions\Form;
+
+use Dcat\Admin\Support\Helper;
+use Dcat\Admin\Form\Field\File;
+use Symfony\Component\HttpFoundation\File\UploadedFile;
+
+class TradFile extends File
+{
+    protected $view = 'admin.form_custom.trad-file';
+
+
+
+}

+ 74 - 0
app/Exceptions/Form/TradImage.php

@@ -0,0 +1,74 @@
+<?php
+
+namespace App\Exceptions\Form;
+
+use Dcat\Admin\Form\Field\File;
+use Dcat\Admin\Form\Field\ImageField;
+use Symfony\Component\HttpFoundation\File\UploadedFile;
+
+class TradImage extends File
+{
+    use ImageField;
+    protected $view = 'admin.form_custom.trad-image';
+
+    protected $rules = ['nullable', 'image'];
+
+    public function __construct($column, $arguments = [])
+    {
+        parent::__construct($column, $arguments);
+
+        $this->setupImage();
+    }
+
+
+
+    protected function setupImage()
+    {
+        if (! isset($this->options['accept'])) {
+            $this->options['accept'] = [];
+        }
+
+        $this->options['accept']['mimeTypes'] = 'image/*';
+        $this->options['isImage'] = true;
+    }
+
+    public function dimensions(array $options)
+    {
+        if (! $options) {
+            return $this;
+        }
+
+        $this->mergeOptions(['dimensions' => $options]);
+
+        foreach ($options as $k => &$v) {
+            $v = "$k=$v";
+        }
+
+        return $this->rules('dimensions:'.implode(',', $options));
+    }
+
+    /**
+     * Set ratio constraint.
+     *
+     * @param  float  $ratio  width/height
+     * @return $this
+     */
+    public function ratio($ratio)
+    {
+        if ($ratio <= 0) {
+            return $this;
+        }
+
+        return $this->dimensions(['ratio' => $ratio]);
+    }
+
+    /**
+     * @param  UploadedFile  $file
+     */
+    protected function prepareFile(UploadedFile $file)
+    {
+        $this->callInterventionMethods($file->getRealPath(), $file->getMimeType());
+
+        $this->uploadAndDeleteOriginalThumbnail($file);
+    }
+}

+ 2 - 1
app/Libraries/CommonHelper.php

@@ -15,7 +15,8 @@ class CommonHelper
     public static function displayImage($images,$boxSize=60,$imgSize=1024)
     {
         if (empty($images) || empty($images[0])) {
-            $html = "";
+            $largeUrl = $thumbnailUrl = '/static/images/no-image.jpg';
+            $html = "<a href='$largeUrl' target='_blank'><img src='$thumbnailUrl' style='height:{$boxSize}px; margin-right:5px; border: 1px solid #ececf1;'></a>";
         } else {
 
 

+ 13 - 0
config/admin.php

@@ -280,6 +280,8 @@ return [
         // Image and file upload path under the disk above.
         'directory' => [
             'image' => 'images',
+            'video' => 'videos',
+            'pdf'   => 'pdfs',
             'file'  => 'files',
         ],
         //editor tinyMCE上传路径
@@ -293,6 +295,17 @@ return [
             'limit' => 20, // 上传文件数量限制
         ],
 
+
+        'oss_video' => [
+            'accept' => 'mp4',//允许上传的文件类型
+            'max_size' => 50000, // 上传文件大小限制,单位kB
+            'limit' => 20, // 上传文件数量限制
+        ],
+        'oss_pdf' => [
+            'accept' => 'pdf,dpf,doc,docx,xls,xlsx,ppt,pptx',//允许上传的文件类型
+            'max_size' => 50000, // 上传文件大小限制,单位kB
+            'limit' => 20, // 上传文件数量限制
+        ],
     ],
 
     /*

+ 7 - 70
config/dictionary.php

@@ -16,85 +16,22 @@ return [
     //默认语言
     'default_language' => 'en',
 
-    //分销商角色ID
-    'dist_role_id' => '2',
 
-    //基础分销商ID,默认为1,此分销商为测试用,模版与变量为基础版本,用于复制给其他分销商用
-    'base_dist_id' => '1',
-
-    //用户配置
-    'users_settings' => [
-        'visibility' => '1',//可见性,默认值0不可见,1可见
-    ],
 
     //是否启用
     'enabled' => [
-        '1' => 'Yes',
-        '0' => 'No',
-    ],
-    //是否
-    'whether' => [
-        '1' => 'Yes',
-        '0' => 'No',
-    ],
-    //询价状态
-    'inquiryStatus' => [
-        '0' => 'new',
-        '1' => 'pending',
-        '2' => 'processed',
-    ],
-    //菜单类型
-    'menu_type' => [
-        '0' => 'home_page',
-        '1' => 'collections',
-        '2' => 'products',
-        '3' => 'pages',
-        '4' => 'landing_page',
-        '5' => 'videos',
-        '10' => 'url',
+        '1' => 'yes',
+        '0' => 'no',
     ],
 
-    'collections_type' => [
-        '0' => 'product_category',
-        '1' => 'pages_tag',
-        '2' => 'video_category',
-    ],
-    //文章状态
-    'pages_status' => [
-        '0' => 'draft',
-        '1' => 'published',
-    ],
-    //
-    'visibility' => [
-        '1' => 'visible',
-        '0' => 'hidden',
-    ],
-    //站点URL配置
-    'site_url' => [
-        'pages' => '/pages',
-        'tags' => '/collections',
-        'products' => '/products',
-        'product_category' => '/products/categories',
-        'video' => '/videos',
-        'video_category' => '/videos/categories',
-        'contact' => '/contact'
-    ],
 
-    //临时变量
-    'temp_value' => [
-        'location' => 0, //用于SiteMenuController中location变量
-    ],
-    'freight_forwarder' => [
-        0 => 'No',
-        1 => 'Yes',
-    ],
-    'domain_type' => [
-        0 => 'secondary_domain',
-        1 => 'custom_domain',
+    //文件夹类型
+    'folder_type' => [
+        '0' => 'product',//产品
+        '1' => 'other',//其他
     ],
 
-    'landing_page_default_template' => 'pages_detail.liquid',
-    'landing_page_contact_us_template' => 'pages_sp_contact.liquid',
+
 
 
 ];

+ 5 - 1
lang/en/admin.php

@@ -43,7 +43,7 @@ return [
         '401' => 'Unauthorized !',
         '419' => 'Page expired !',
     ],
-    'site_name'             => 'Mietubl Online Marketing System',
+    'site_name'             => 'Mietubl Album System',
     'online'                => 'Online',
     'login'                 => 'Login',
     'logout'                => 'Logout',
@@ -258,4 +258,8 @@ return [
     'inquiry_list' => 'Inquiry List',
     'banner_list' => 'Banner List',
     'crop_the_image' => 'Crop the Image',
+
+    #相册模块
+    'folder'=>'Folder',
+    'album' => 'Album',
 ];

+ 30 - 0
lang/en/global.php

@@ -93,6 +93,22 @@ return [
         'target_type'           => 'Type',
         'target_ids'            => 'Target Ids',
         'message_title'         => 'Message Title',
+
+        #相册模块
+        'folder_type'           => 'Folder Type',
+        'show_tabs'             => 'Show Tabs',
+        'model'                 => 'Model',
+        'folder_id'             => 'Folder',
+        'cover'                 => 'Cover',
+        'en_detail'             => 'English Detail',
+        'cn_detail'             => 'Chinese Detail',
+        'video'                 => 'Video',
+        'poster'                => 'Poster',
+        'cert'                  => 'Cert',
+        'pdf'                   => 'PDF',
+        'pdf_title'             => 'PDF Title',
+        'pdf_src'               => 'PDF Src',
+        'video_src'             => 'Video Src',
     ],
     'labels' => [
         'list'                  => 'List',
@@ -189,6 +205,20 @@ return [
         'visual_edit'           => 'Visual Edit',
         'top_menu'              => 'Top Menu',
         'bottom_menu'           => 'Bottom Menu',
+
+        //相册模块
+        'product'               => 'Product',
+        'other'                 => 'Other',
+        'cover'                 => 'Cover',
+        'en_detail'             => 'English Detail',
+        'cn_detail'             => 'Chinese Detail',
+        'video'                 => 'Video',
+        'poster'                => 'Poster',
+        'cert'                  => 'Cert',
+        'pdf'                   => 'PDF',
+        'basic_info'            => 'Basic Info',
+        'image_preview'         => 'Image Preview',
+        'video_cover'           => 'Video Cover',
     ],
     'options' => [
         //

+ 8 - 2
lang/zh_CN/admin.php

@@ -44,7 +44,7 @@ return [
         '401' => '请登录!',
         '419' => '对不起,当前页面已失效,请刷新浏览器。',
     ],
-    'site_name'             => '美特柏建站营销系统',
+    'site_name'             => '美特柏相册系统',
     'home'                  => '主页',
     'online'                => '在线',
     'login'                 => '登录',
@@ -258,5 +258,11 @@ return [
     'banner_list' => '轮播图列表',
     'landing_page' => '独立页',
     'messages' => '消息',
-    'crop_the_image' => '裁剪图片'
+    'crop_the_image' => '裁剪图片',
+
+
+
+    #相册模块
+    'folder'  => '文件夹',
+    'album'  => '相册',
 ];

+ 30 - 0
lang/zh_CN/global.php

@@ -99,6 +99,23 @@ return [
         'video_category' => '视频分类',
         'is_read' => '是否已读',
         'time' => '时间',
+
+        #相册模块
+        'folder_type'           => '文件夹类型',
+        'show_tabs'             => '显示标签',
+        'model'                 => '型号',
+        'folder_id'             => '文件夹',
+        'cover'                 => '主图',
+        'en_detail'             => '英文详情',
+        'cn_detail'             => '中文详情',
+        'video'                 => '视频',
+        'poster'                => '海报',
+        'cert'                  => '证书',
+        'pdf'                   => 'PDF',
+        'pdf_title'             => 'PDF标题',
+        'pdf_src'               => 'PDF文件',
+        'video_src'             => '视频文件',
+
     ],
     'labels' => [
         'list'         => '列表',
@@ -196,6 +213,19 @@ return [
         'visual_edit'           => '可视化编辑',
         'top_menu'              => '顶部菜单',
         'bottom_menu'           => '底部菜单',
+        //相册模块
+        'product'               => '产品',
+        'other'                 => '其他',
+        'cover'                 => '主图',
+        'en_detail'             => '英文详情',
+        'cn_detail'             => '中文详情',
+        'video'                 => '视频',
+        'poster'                => '海报',
+        'cert'                  => '证书',
+        'pdf'                   => 'PDF',
+        'basic_info'            => '基本信息',
+        'image_preview'         => '图片预览',
+        'video_cover'           => '视频封面',
     ],
     'options' => [
         //

+ 4 - 0
lang/zh_CN/menu.php

@@ -53,5 +53,9 @@ return [
         'landing_page' => '独立页',
         'messages' => '消息',
         'banner'  =>'轮播图',
+
+        #相册
+        'folder' => '文件夹',
+        'album' => '相册',
     ],
 ];