中文字幕天堂-中文字幕丝袜-亚洲日本国产-亚洲日本成人-天天综合久久-天天综合精品-日韩两性视频-日韩理论在线观看-欧美日韩性生活视频-欧美日韩性生活-另类专区欧美-另类在线视频-黄色字幕网-黄色自拍网站-国产精品久久777777毛茸茸-国产精品久久777777换脸

?

DedeCMS織夢圖集Flash控件停用無法上傳圖片修改方法

2021-05-30 14:48?來源 綜合

我們知道由于Flash控件與2020年停用,導(dǎo)致DedeCMS織夢圖集無法上傳圖片,雖然flash已經(jīng)退出舞臺了,而織夢的圖集上傳功能仍然使用的是flash控件,目前不僅無法正常上傳圖像而且也不支持多實例多圖集,我們來把它換一換,換成現(xiàn)在比較流行的layui前端框架 - layui上傳模塊。

整合教程

第一步、下載額外所需文件,根據(jù)自己網(wǎng)站編碼

把下載得到的文件解壓嗎,然后找到 layui上傳模塊 文件夾,然后選擇自己DedeCMS編碼對應(yīng)的文件夾,然后把"layui"文件夾和"taglib"文件夾放到你網(wǎng)站include文件夾里去。

第二步、為后臺圖片集模型添加layui上傳模塊,官方原來的圖集上傳功能保留不動

伸手黨 可以直接把下載解壓后的文件夾 圖集模型上傳模塊 下的4個文件替換即可使用(替換之前建議你備份你自己的這4個文件)

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1.     /dede/templets/album_add.htm
  2.     /dede/templets/album_edit.htm
  3.     /dede/album_add.php
  4.     /dede/album_edit.php

覆蓋文件后刷新后臺即可使用。

如果您使用的是默認(rèn)單個圖集,沒有對DedeCMS圖集進(jìn)行開發(fā)過,下面的教程可略過無需理會【注意,二開的后臺請根據(jù)教程來操作】。

二開教程

1、打開 /dede/templets/album_add.htm 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. < id="thumbnails"></>

在它所在的tr標(biāo)簽下面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. <link href="../include/layui/css/layui.css" rel="stylesheet" media="all">
  2. <script src="../include/layui/layui.js" type="text/javascript"></script>
  3. <tr>
  4.     <td width="100%" height="24" colspan="4" class="bline">
  5.         <table width="800" border="0" cellspacing="0" cellpadding="0">
  6.             <tr>
  7.                 <td width="80" height="40">&nbsp;<b>默認(rèn)圖集:</b></td>
  8.                 <td><button type="button" class="layui-btn layui-btn-sm layui-btn-normal imgurls"><i class="layui-icon layui-icon-upload"></i>上傳圖片</button></td>
  9.             </tr>
  10.         </table>
  11.     </td>
  12. </tr>
  13. <tr>
  14.     <td colspan="4" class="bline">
  15.         <table width='100%'>
  16.             <tr>
  17.                 <td>< class="layui-upload-img"><ul class="layui-upload-list" id="imgurls"></ul></></td>
  18.             </tr>
  19.         </table>
  20.     </td>
  21. </tr>
  22. <script type="text/javascript">
  23.     layui.use('upload', function(){
  24.         var $ = layui.jquery
  25.             ,upload = layui.upload;
  26.  
  27.         // imgurls 圖片上傳
  28.         var uploadInst = upload.render({
  29.             elem: '.imgurls'
  30.             ,url: '../include/layui/layuiupload.php'
  31.             ,multiple: true
  32.             ,accept: 'images'
  33.             ,acceptMime: 'image/*'
  34.             ,done: function(res){
  35.                 if(res.code == 0){
  36.                     return layer.msg(res.msg);
  37.                 }
  38.                 $('#imgurls').append('<li class="item_img">< class="operate"><i class="toleft layui-icon layui-icon-left"></i><i class="toright layui-icon layui-icon-right"></i><i class="close layui-icon layui-icon-close-fill" data-id="' + res.id + '"></i></><img src="' + res.img + '" class="img" ><input type="text" name="imgurls[alt][]" value="" class="layui-input" /><input type="hidden" name="imgurls[url][]" value="' + res.img + '" /><input type="hidden" name="imgurls[uaid][]" value="' + res.id + '" /></li>');
  39.             }
  40.             ,error: function(){
  41.  
  42.             }
  43.         });
  44.  
  45.         $("body").on("click",".close",function(){
  46.             var id = $(this).data('id');
  47.             $.get('../include/layui/layuiupload.php',{'dopost':'del','id':id},function(res){})
  48.             $(this).closest("li").remove();
  49.         });
  50.  
  51.         $("body").on("click",".layui-upload-img ul li .toleft",function(){
  52.             var li_index = $(this).closest("li").index();
  53.             if(li_index >= 1){
  54.                 $(this).closest("li").insertBefore($(this).closest("ul").find("li").eq(Number(li_index)-1));
  55.             }
  56.         });
  57.         $("body").on("click",".layui-upload-img ul li .toright",function(){
  58.             var li_index = $(this).closest("li").index();
  59.             $(this).closest("li").insertAfter($(this).closest("ul").find("li").eq(Number(li_index)+1));
  60.         });
  61.  
  62.     });
  63. </script>

2、打開 /dede/templets/album_edit.htm 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. < id="thumbnails"></>

在它所在的tr標(biāo)簽下面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. <link href="../include/layui/css/layui.css" rel="stylesheet" media="all">
  2. <script src="../include/layui/layui.js" type="text/javascript"></script>
  3. <tr>
  4.     <td width="100%" height="24" colspan="4" class="bline">
  5.         <table width="800" border="0" cellspacing="0" cellpadding="0">
  6.             <tr>
  7.                 <td width="80" height="40">&nbsp;<b>默認(rèn)圖集:</b></td>
  8.                 <td><button type="button" class="layui-btn layui-btn-sm layui-btn-normal imgurls"><i class="layui-icon layui-icon-upload"></i>上傳圖片</button></td>
  9.             </tr>
  10.         </table>
  11.     </td>
  12. </tr>
  13. <tr>
  14.     <td colspan="4" class="bline">
  15.         <table width='100%'>
  16.             <tr>
  17.                 <td>< class="layui-upload-img"><ul class="layui-upload-list" id="imgurls"></ul></></td>
  18.             </tr>
  19.         </table>
  20.     </td>
  21. </tr>
  22. <script type="text/javascript">
  23.     layui.use('upload', function(){
  24.         var $ = layui.jquery
  25.             ,upload = layui.upload;
  26.  
  27.         // imgurls 圖片上傳
  28.         var uploadInst = upload.render({
  29.             elem: '.imgurls'
  30.             ,url: '../include/layui/layuiupload.php'
  31.             ,multiple: true
  32.             ,accept: 'images'
  33.             ,acceptMime: 'image/*'
  34.             ,done: function(res){
  35.                 if(res.code == 0){
  36.                     return layer.msg(res.msg);
  37.                 }
  38.                 $('#imgurls').append('<li class="item_img">< class="operate"><i class="toleft layui-icon layui-icon-left"></i><i class="toright layui-icon layui-icon-right"></i><i class="close layui-icon layui-icon-close-fill" data-id="' + res.id + '"></i></><img src="' + res.img + '" class="img" ><input type="text" name="imgurls[alt][]" value="" class="layui-input" /><input type="hidden" name="imgurls[url][]" value="' + res.img + '" /><input type="hidden" name="imgurls[uaid][]" value="' + res.id + '" /></li>');
  39.             }
  40.             ,error: function(){
  41.                 //失敗重傳
  42.  
  43.             }
  44.         });
  45.  
  46.         $("body").on("click",".close",function(){
  47.             var id = $(this).data('id');
  48.             $.get('../include/layui/layuiupload.php',{'dopost':'del','id':id},function(res){})
  49.             $(this).closest("li").remove();
  50.         });
  51.  
  52.         $("body").on("click",".layui-upload-img ul li .toleft",function(){
  53.             var li_index = $(this).closest("li").index();
  54.             if(li_index >= 1){
  55.                 $(this).closest("li").insertBefore($(this).closest("ul").find("li").eq(Number(li_index)-1));
  56.             }
  57.         });
  58.         $("body").on("click",".layui-upload-img ul li .toright",function(){
  59.             var li_index = $(this).closest("li").index();
  60.             $(this).closest("li").insertAfter($(this).closest("ul").find("li").eq(Number(li_index)+1));
  61.         });
  62.  
  63.     });
  64. </script>

3、打開 /dede/album_add.php 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. //加入附加表

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. //圖集字段 imgurls
  2. if(is_array($_POST['imgurls']['url']))
  3. {
  4.     $my_imgurls = "";
  5.     foreach($_POST['imgurls']['url'] as $key => $val)
  6.     {
  7.         $my_imgurls .= "{dede:img ddimg='$val' text='{$_POST['imgurls']['alt'][$key]}' width='' height='' uaid='{$_POST['imgurls']['uaid'][$key]}'}$val{/dede:img}\r\n";
  8.     }
  9. }
  10. $imgurls .= addslashes($my_imgurls);

4、打開 /dede/album_edit.php 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. //更新附加表

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. //圖集字段 imgurls
  2. if(is_array($_POST['imgurls']['url']))
  3. {
  4.     $my_imgurls = "";
  5.     foreach($_POST['imgurls']['url'] as $key => $val)
  6.     {
  7.         $my_imgurls .= "{dede:img ddimg='$val' text='{$_POST['imgurls']['alt'][$key]}' width='' height='' uaid='{$_POST['imgurls']['uaid'][$key]}'}$val{/dede:img}\r\n";
  8.     }
  9. }
  10. $imgurls .= addslashes($my_imgurls);

第三步、內(nèi)容頁模板調(diào)用圖集標(biāo)簽新寫法

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. <h2>默認(rèn)圖集</h2>
  2.     <ul>
  3.     {dede:imagelist}
  4.     <li>
  5.         <img src="[field:imgsrc/]" alt="[field:text/]" width="220" height="150">
  6.         <p>[field:text/]</p>
  7.     </li>
  8.     {/dede:imagelist}
  9. </ul>
  10.  
  11. <h2>戶型圖片</h2>
  12. <ul>
  13.     {dede:imagelist field="huxing"}
  14.     <li>
  15.         <img src="[field:imgsrc/]" alt="[field:text/]" width="220" height="150">
  16.         <p>[field:text/]</p>
  17.     </li>
  18.     {/dede:imagelist}
  19. </ul>

特別說明

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. {dede:imagelist field="huxing"}

field='圖片集字段'

不填的話就是調(diào)用圖集默認(rèn),織夢多個圖集多實例教程

在操作下面的教程之前必須確定你已經(jīng)完成上面第一、第二、第三步

第一步、附加表里添加多個圖集字段,例如 戶型圖片 字段

后臺-系統(tǒng)-SQL工具-SQL命令行工具

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="bash">
  1. ALTER TABLE dede_addonimages ADD `huxing` text;

dede_addonimages 是我的圖集模型附加表,注意自己的附加表,千萬別寫錯了

第二步、打開 /dede/templets/album_add.htm 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. id="imgurls"

在它所在的tr下面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="html4strict">
  1. <tr>
  2.     <td width="100%" height="24" colspan="4" class="bline">
  3.         <table width="800" border="0" cellspacing="0" cellpadding="0">
  4.             <tr>
  5.                 <td width="80" height="40">&nbsp;<b>戶型圖片:</b></td>
  6.                 <td>
  7.                     <button type="button" class="layui-btn layui-btn-sm layui-btn-normal huxing">
  8.                         <i class="layui-icon layui-icon-upload"></i>上傳圖片
  9.                     </button>
  10.                 </td>
  11.             </tr>
  12.         </table>
  13.     </td>
  14. </tr>
  15. <tr>
  16.     <td colspan="4" class="bline">
  17.         <table width='100%'>
  18.             <tr>
  19.                 <td>
  20.                     < class="layui-upload-img">
  21.                         <ul class="layui-upload-list" id="huxing"></ul>
  22.                     </>
  23.                 </td>
  24.             </tr>
  25.         </table>
  26.     </td>
  27. </tr>

如圖,注意標(biāo)注的地方

繼續(xù)找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. // imgurls 圖片上傳

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. // huxing 圖片上傳
  2. var uploadInst = upload.render({
  3.     elem: '.huxing'
  4.     ,url: '../include/layui/layuiupload.php'
  5.     ,multiple: true
  6.     ,accept: 'images'
  7.     ,acceptMime: 'image/*'
  8.     ,done: function(res){
  9.         if(res.code == 0){
  10.             return layer.msg(res.msg);
  11.         }
  12.         $('#huxing').append('<li class="item_img">< class="operate"><i class="toleft layui-icon layui-icon-left"></i><i class="toright layui-icon layui-icon-right"></i><i class="close layui-icon layui-icon-close-fill" data-id="' + res.id + '"></i></><img src="' + res.img + '" class="img" ><input type="text" name="huxing[alt][]" value="" class="layui-input" /><input type="hidden" name="huxing[url][]" value="' + res.img + '" /><input type="hidden" name="huxing[uaid][]" value="' + res.id + '" /></li>');
  13.     }
  14.     ,error: function(){
  15.         //失敗重傳
  16.  
  17.     }
  18. });

如圖,注意標(biāo)注的地方

第三步、打開 /dede/templets/album_edit.htm 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. id="imgurls"

在它所在的tr下面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. <tr>
  2.     <td width="100%" height="24" colspan="4" class="bline">
  3.         <table width="800" border="0" cellspacing="0" cellpadding="0">
  4.             <tr>
  5.                 <td width="80" height="40">&nbsp;<b>戶型圖片:</b></td>
  6.                 <td>
  7.                     <button type="button" class="layui-btn layui-btn-sm layui-btn-normal huxing">
  8.                         <i class="layui-icon layui-icon-upload"></i>上傳圖片
  9.                     </button>
  10.                 </td>
  11.             </tr>
  12.         </table>
  13.     </td>
  14. </tr>
  15. <tr>
  16.     <td colspan="4" class="bline">
  17.         <table width='100%'>
  18.             <tr>
  19.                 <td>
  20.                     < class="layui-upload-img">
  21.                         <ul class="layui-upload-list" id="huxing">
  22.                             <?php
  23.                             if($addRow['huxing']!="")
  24.                             {
  25.                                 $dtp = new DedeTagParse();
  26.                                 $dtp->LoadSource($addRow['huxing']);
  27.                                 if(is_array($dtp->CTags))
  28.                                 {
  29.                                     $fhtml = '';
  30.                                     foreach($dtp->CTags as $ctag)
  31.                                     {
  32.                                         if($ctag->GetName()=="img")
  33.                                         {
  34.                                             $bigimg = trim($ctag->GetInnerText());
  35.                                             $text = trim($ctag->GetAtt('text'),'‘');
  36.                                             $uaid = trim($ctag->GetAtt('uaid'),'‘');
  37.                                             $fhtml .= "<li class=\"item_img\">< class=\"operate\"><i class=\"toleft layui-icon layui-icon-left\"></i><i class=\"toright layui-icon layui-icon-right\"></i><i class=\"close layui-icon layui-icon-close-fill\" data-id=\"{$uaid}\"></i></><img src=\"{$bigimg}\" class=\"img\" ><input type=\"text\" name=\"huxing[alt][]\" value=\"{$text}\" class=\"layui-input\" /><input type=\"hidden\" name=\"huxing[url][]\" value=\"{$bigimg}\" /><input type=\"hidden\" name=\"huxing[uaid][]\" value=\"{$uaid}\" /></li>";
  38.                                         }
  39.                                     }
  40.                                     echo $fhtml;
  41.                                 }
  42.                                 $dtp->Clear();
  43.                             }
  44.                             ?>
  45.                         </ul>
  46.                     </>
  47.                 </td>
  48.             </tr>
  49.         </table>
  50.     </td>
  51. </tr>

如圖,注意標(biāo)注的字段部分

繼續(xù)找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. // imgurls 圖片上傳

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. // huxing 圖片上傳
  2. var uploadInst = upload.render({
  3.     elem: '.huxing'
  4.     ,url: '../include/layui/layuiupload.php'
  5.     ,multiple: true
  6.     ,accept: 'images'
  7.     ,acceptMime: 'image/*'
  8.     ,done: function(res){
  9.         if(res.code == 0){
  10.             return layer.msg(res.msg);
  11.         }
  12.         $('#huxing').append('<li class="item_img">< class="operate"><i class="toleft layui-icon layui-icon-left"></i><i class="toright layui-icon layui-icon-right"></i><i class="close layui-icon layui-icon-close-fill" data-id="' + res.id + '"></i></><img src="' + res.img + '" class="img" ><input type="text" name="huxing[alt][]" value="" class="layui-input" /><input type="hidden" name="huxing[url][]" value="' + res.img + '" /><input type="hidden" name="huxing[uaid][]" value="' + res.id + '" /></li>');
  13.     }
  14.     ,error: function(){
  15.         //失敗重傳
  16.  
  17.     }
  18. });

如圖,注意標(biāo)注的字段

第四步、打開 /dede/album_add.php 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. //生成HTML

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. //新增圖集字段 huxing
  2. if(is_array($_POST['huxing']['url']))
  3. {
  4.     $huxing = "";
  5.     foreach($_POST['huxing']['url'] as $key => $val)
  6.     {
  7.         $huxing .= "{dede:img ddimg='$val' text='{$_POST['huxing']['alt'][$key]}' width='' height='' uaid='{$_POST['huxing']['uaid'][$key]}'}$val{/dede:img}\r\n";
  8.     }
  9.     if($huxing)
  10.     {
  11.         $huxing = addslashes($huxing);
  12.         $upquery = "UPDATE `$addtable` SET `huxing`='$huxing' WHERE aid='$arcID' ";
  13.         $dsql->ExecuteNoneQuery($upquery);
  14.     }
  15. }

如圖,注意標(biāo)注的字段

第五步、打開 /dede/album_edit.php 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. //生成HTML

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. //新增圖集字段 huxing
  2. $huxing = "";
  3. if(is_array($_POST['huxing']['url']))
  4. {
  5.     foreach($_POST['huxing']['url'] as $key => $val)
  6.     {
  7.         $huxing .= "{dede:img ddimg='$val' text='{$_POST['huxing']['alt'][$key]}' width='' height='' uaid='{$_POST['huxing']['uaid'][$key]}'}$val{/dede:img}\r\n";
  8.     }
  9. }
  10. $huxing = addslashes($huxing);
  11. $upquery = "UPDATE `$addtable` SET `huxing`='$huxing' WHERE aid='$id' ";
  12. $dsql->ExecuteNoneQuery($upquery);

如圖,注意標(biāo)注的字段

第六步、內(nèi)容頁標(biāo)簽新寫法參考上面,使用layui第一張圖作為縮略圖,打開 /dede/album_add.php 找到

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="text">
  1. 生成文檔ID

在它上面加入

< class="wp-geshi-highlight-wrap5"> < class="wp-geshi-highlight-wrap4"> < class="wp-geshi-highlight-wrap3"> < class="wp-geshi-highlight-wrap2"> < class="wp-geshi-highlight-wrap"> < class="wp-geshi-highlight"> < class="php">
  1. //使用layui第一張圖作為縮略圖
  2. if($ddisfirst==1 && $litpic=='')
  3. {
  4.     if(isset($_POST['imgurls']['url'][0]))
  5.     {
  6.         $litpic = $_POST['imgurls']['url'][0];
  7.     }
  8. }

如圖,注意標(biāo)注的字段

  本文“”來源:http://www.3150000.cn/keji/intel/zzzj/rumen/75773.html,轉(zhuǎn)載必須保留網(wǎng)址。

編輯: yujeu


    ?
    聯(lián)系方法 - 招聘信息 - 隱私政策 網(wǎng)站地圖
    溫州在線WENZHOUZX.COM版權(quán)所有
    主站蜘蛛池模板: 诸城市铭威食品机械有限公司| 青岛昌佳机械有限公司| 江苏卫东机械有限公司| 珠海市机械有限公司| 江苏双友重型机械有限公司| 山东淄博机械制造有限公司| 宝鸡 机械有限公司| 常熟神马机械有限公司| 武汉格瑞拓机械有限公司| 河钢钢铁贸易有限公司| 丽驰精密机械有限公司| 威埃姆输送机械有限公司| 广州园林机械有限公司| 宁波园林机械有限公司| 衢州巨鑫机械有限公司| 华普机械制造有限公司| 宁波海江机械制造有限公司| 济南力帆机械有限公司| 华亿机械制造有限公司| 沈阳维用精密机械有限公司| 台州食品机械有限公司| 山东 工程机械有限公司| 宁波特艾科机械制造有限公司| 青岛华瑞机械有限公司| 宜兴市机械有限公司| 贵州机械制造有限公司| 四川开拓建筑机械租赁有限公司| 宁波良波机械有限公司| 江苏精密机械有限公司| 无锡伊诺特石化机械设备有限公司| 青岛华鑫克斯顿机械有限公司| 巨航机械制造有限公司| 重工机械制造有限公司| 江苏医疗机械有限公司| 宁波汉博机械有限公司| 广州德晟机械有限公司| 西安兄弟机械有限公司| 华东动力机械有限公司| 宁波民盛机械有限公司| 洛阳中冶重工有限公司| 烟台飞达机械设备有限公司| 济南章力机械有限公司| 昆山来运机械设备有限公司| 威海柳道机械有限公司| 宏压机械制造有限公司| 郑州三和水工机械有限公司| 成都西联钢铁有限公司| 山东九环石油机械有限公司| 大连卓远重工有限公司| 常州浦发机械有限公司| 临沂盖氏机械有限公司| 上海先德机械工程有限公司| 无锡塑料机械有限公司| 芜湖富鑫钢铁有限公司| 联信塑料机械有限公司| 浙江宏华机械塑胶有限公司| 唐山宝泰钢铁有限公司| 林氏玻璃机械有限公司| 上海纽荷兰农业机械有限公司| 秦皇岛 机械设备有限公司| 合肥起重机械有限公司| 济南力帆机械有限公司| 宏祥机械制造有限公司| 万通机械制造有限公司| 济宁鑫宏工矿机械设备有限公司| 无锡开普机械有限公司| 北京大森包装机械有限公司| 河北机械设备有限公司| 申锡建筑机械有限公司| 宁波德霖机械有限公司| 德阳机械制造有限公司| 川源机械工程有限公司| 沈阳华扬机械有限公司| 常州宝菱重工机械有限公司| 航星洗涤机械(泰州)有限公司| 苏州亿泛精密机械有限公司| 德昌机械制造有限公司| 东莞力顺源机械有限公司| 广州易鸿机械有限公司| 青岛国森机械有限公司| 广州凯诺机械有限公司| 浙江上洋机械有限公司| 新乡市东振机械制造有限公司| 绵阳新晨动力机械有限公司招聘| 国机重工洛阳有限公司| 临沂盛德机械有限公司| 漳州市机械有限公司| 东莞 机械有限公司| 昆山裕邦机械有限公司| 江阴万恒机械制造有限公司| 上海瑞派机械有限公司| 恒昌机械制造有限公司| 青岛科尼乐机械设备有限公司| 杭州富朗机械有限公司| 山东 石化机械 有限公司| 浙江四和机械有限公司| 北京环保机械有限公司| 无锡澳美机械有限公司| 河南广泰机械有限公司| 上海斯特克沃森重工设备有限公司| 密佳达机械有限公司| 南平市 机械 有限公司| 温州宇英机械有限公司| 日照机械制造有限公司| 江苏恒械机械设备有限公司| 佛山海之力机械有限公司| 青州神工机械有限公司| 上海与鑫机械有限公司| 苏州苏鹰机械制造有限公司| 人科机械设备有限公司| 上海岭申机械有限公司| 金达机械制造有限公司| 机械设备有限公司官网| 兴虎动力机械有限公司| 邢台德龙钢铁有限公司| 昆山吉精密机械有限公司| 上海板换机械设备有限公司| 长沙聚邦机械设备有限公司| 苏州斗山工程机械有限公司| 绍兴纺织机械有限公司| 重庆中容石化机械制造有限公司| 江苏银华春翔机械制造有限公司| 江阴福鑫机械有限公司| 徐州东岳工程机械有限公司| 天津 机械制造有限公司| 隆达机械设备有限公司| 济南工程机械有限公司| 兴业机械设备有限公司| 浙江瑞大机械有限公司| 泰兴机械设备有限公司| 杭州杭南机械有限公司| 宁波五金机械有限公司| 纸箱机械设备有限公司| 济南迅捷机械设备有限公司| 张家港市旺巴巴机械有限公司| 中山市机械设备有限公司| 万则盛机械有限公司| 郑州市长城重工机械有限公司| 英格索兰机械有限公司| 山东 机械制造有限公司| 广东 机械设备有限公司| 珠海华亚机械有限公司| 南通恒力重工机械有限公司| 台州瑞达机械有限公司| 东莞伟机械有限公司| 巨力工程机械有限公司| 江苏润山机械有限公司| 豪利机械苏州有限公司| 上海善佳机械设备有限公司| 山东萨丁重工有限公司| 太仓纺织机械有限公司| 南京阿特拉斯机械设备有限公司| 上海太阳机械有限公司| 浙江中意机械有限公司| 温州华印机械有限公司| 扬州 机械 有限公司| 上海取祥机械有限公司| 重庆春仁机械有限公司| 昆山施耐特机械有限公司| 东莞市锋机械有限公司| 广东华冠钢铁有限公司| 郑州市昌利机械制造有限公司| 山东愚公工程机械有限公司| 青岛北船重工有限公司| 北斗星机械有限公司| 东方重型机械有限公司| 重庆机械工程有限公司| 湖南嘉龙机械设备贸易有限公司| 常州辉机械有限公司| 常州华威起重工具有限公司| 广州甲宝机械有限公司| 吉林牧神机械有限公司| 山东博精化工机械有限公司| 佛山市鹏轩机械制造有限公司| 郑州龙阳重型机械设备有限公司| 郑州博源机械有限公司| 华星机械制造有限公司| 唐山佳鑫机械配件有限公司| 河南信联重工机械有限公司| 机械生产制造有限公司| 江 诚机械有限公司| 包装机械设备有限公司| 杭州春江制药机械有限公司| 昆山机械制造有限公司| 山东曲阜机械有限公司| 河南永威起重机有限公司| 宁波瑞铭机械有限公司| 上海全众机械有限公司| 江西台鑫钢铁有限公司| 章丘明天机械有限公司| 徐工重型机械有限公司| 广州化工机械有限公司| 东莞市泽源机械有限公司| 常州起重机械有限公司| 广州市佳速精密机械有限公司| 东莞市三米通用机械有限公司| 青岛中船重工轨道装备有限公司| 轧三友发钢铁有限公司| 恒生机械制造有限公司| 青岛液压机械有限公司| 上海轶鹰起重机械有限公司| 河南启瀚机械设备有限公司| 阳煤化工机械有限公司| 苏州恒升机械有限公司| 广濑精密机械有限公司| 上海与鑫机械有限公司| 张家港海狮洗涤机械有限公司| 山东翔工机械有限公司| 烟台精越达机械设备有限公司| 华通机械设备有限公司| 扬州扬宝机械有限公司| 易锻精密机械有限公司| 徐州成日钢铁有限公司| 济南恒铭钢铁有限公司| 石家庄美迪机械有限公司| 上海住友重机械有限公司| 宜兴永康机械有限公司| 台州瑞达机械有限公司| 小松工程机械有限公司| 湖南机械工程有限公司| 温州印刷机械有限公司| 温州正雄机械有限公司| 神工机械制造有限公司| 山东天路重工有限公司| 山东滨州机械制造有限公司| 郑州鑫宇机械制造有限公司| 盐城市鑫益达精密机械有限公司| 威海行雨化工机械有限公司| 台州启运机械有限公司| 济宁立派工程机械有限公司| 天津科建机械有限公司| 上海世邦机械有限公司| 象山机械制造有限公司| 常州艾隆精密机械有限公司| 上海精密机械配件有限公司| 南通太和机械有限公司| 嘉兴格鲁博机械有限公司| 宜昌 机械有限公司| 厦门升正机械有限公司| 苏拉纺织机械有限公司| 常州倍安特动力机械有限公司| 通达机械设备有限公司| 上海服装机械有限公司| 迁安九江钢铁有限公司| 浙江鼎力机械有限公司| 浙江超洋机械有限公司| 浙江德鹏机械有限公司| 宝钢湛江钢铁有限公司招聘| 浙江佶龙机械有限公司| 苏州动力机械有限公司| 柳州中源机械有限公司| 河北航天振邦精密机械有限公司| 成都大华路面机械有限公司| 新沂市机械有限公司| 有限公司 印刷机械| 泉州 南方 机械有限公司| 温州佳诚机械有限公司| 河北燕山钢铁有限公司| 上海板换机械设备有限公司| 山东鲁丽钢铁有限公司| 晶元精密机械有限公司| 三和重工机械有限公司| 陕西 机械有限公司怎么样| 东莞市机械设备有限公司| 国义特种钢铁有限公司| 宁波迈拓斯数控机械有限公司| 法斯特机械有限公司| 浙江胜祥机械有限公司| 山东巨力机械有限公司| 徐工重型机械有限公司| 山东隆盛钢铁有限公司| 佛山精密机械有限公司| 郑州市机械有限公司| 江苏双轮泵业机械制造有限公司| 湖南工程机械制造有限公司| 保定 机械有限公司| 江阴锦澄钢铁有限公司| 江阴市药化机械有限公司| 纽科伦新乡起重机有限公司| 台州欧玮机械有限公司| 重庆晨翔机械有限公司| 安徽中科光电色选机械有限公司| 广州惠德机械有限公司| 山东瀚业机械有限公司| 施维英机械有限公司| 广州园林机械有限公司| 广州市旭朗机械设备有限公司| 宁波机械配件有限公司| 东莞市金峥机械有限公司| 阿博格机械有限公司| 嘉兴 精密机械有限公司| 东方液压机械有限公司| 唐山龙泉机械有限公司| 台州瑞达机械有限公司| 张家口煤矿机械制造有限公司| 沈阳西城钢铁有限公司| 河南东盈机械设备有限公司| 青岛日佳机械有限公司| 南京竣业过程机械设备有限公司| 天津华信机械有限公司| 优力精密机械有限公司| 事必得精密机械有限公司| 沧州铁狮磨浆机械有限公司| 南通 机械有限公司| 韶瑞重工有限公司招聘| 杭州冠浩机械设备有限公司| 东辰机械制造有限公司| 新疆重工机械有限公司| 合肥市春晖机械制造有限公司| 创鑫机械设备有限公司| 合肥机械设备有限公司| 三莲机械制造有限公司| 加藤工程机械有限公司| 东莞市合辉精密机械设备有限公司| 嘉泰数控机械有限公司| 聚力特机械有限公司| 物资有限公司起名大全| 济宁山矿机械有限公司| 昆山乙盛机械工业有限公司电话| 德阳 机械有限公司| 苏州程泰机械有限公司| 斯特精密机械有限公司| 启英机械设备有限公司| 湖南机械设备有限公司| 青岛德维机械制造有限公司| 创鼎机械设备有限公司| 新乡天丰机械有限公司| 临海正大机械有限公司| 山东宁联机械制造有限公司| 泰安煤矿机械有限公司| 潍坊钰兴机械有限公司| 新乡振动机械有限公司| 纽科伦起重有限公司| 杭州起重机械有限公司| 济南建筑机械有限公司| 三木机械制造实业有限公司| 北京恒机械设备有限公司| 张家港市饮料机械有限公司| 宁波中能连通机械有限公司| 浙江森工木工机械有限公司| 美特达机械 苏州 有限公司| 舒勒大连锻压机械有限公司| 博山华翔机械制造有限公司| 新进精密机械有限公司| 新盛机械设备有限公司| 临海机械有限公司招聘| 江苏登福机械有限公司| 山东贝特起重机有限公司| 大连孚德机械有限公司| 日照机械制造有限公司| 安宁市永昌钢铁有限公司| 双龙机械设备有限公司| 青岛顺德塑料机械有限公司| 青岛农业机械有限公司| 邦贝机械制造有限公司| 广州而众机械有限公司| 无锡建筑机械有限公司| 温州威特机械有限公司| 广东仕诚塑料机械有限公司| 山东天力液压机械有限公司| 福建鼎盛钢铁有限公司| 江苏无锡机械有限公司| 深圳龙润彩印机械设备有限公司| 合肥华运机械有限公司| 苏州日拓机械有限公司| 群韵饮料机械有限公司| 青岛山森机械有限公司| 瑞安市科机械有限公司| 上海注塑机械有限公司| 南京利德盛机械有限公司| 山西 机械设备有限公司| 恒隆机械设备有限公司| 首钢凯西钢铁有限公司| 宁波东力机械制造有限公司| 深圳市奥德机械有限公司| 山东鲁一机械有限公司| 上海巨远塑料机械有限公司| 太原重工轨道交通设备有限公司| 湖北农业机械有限公司| 河南瑞峰机械有限公司| 河南耿力机械有限公司| 东莞达成机械设备制造有限公司| 上海钢铁实业有限公司| 建科机械(天津)有限公司| 青岛顺德塑料机械有限公司| 艾莎钢铁天津有限公司| 杭州双金机械有限公司| 苏州机械制造有限公司| 南通力威机械有限公司| 莱州弘宇机械有限公司| 常州机械进出口有限公司| 江苏力威机械有限公司| 佰源机械有限公司欠款| 兴源精密机械有限公司| 山东大汉机械有限公司| 威埃姆输送机械有限公司| 新麦机械无锡有限公司| 成都机械实业有限公司| 上海轻工机械有限公司| 木工机械设备有限公司| 奥通机械制造有限公司| 北京明日之星玻璃机械有限公司| 浙江安驰机械有限公司| 上海启秀机械设备有限公司| 浙江富龙钢铁有限公司| 东莞迅得机械有限公司| 青岛数控机械有限公司| 上海 冷冻机械有限公司| 河北冠能石油机械制造有限公司| 上海齐耀螺杆机械有限公司| 无锡振华机械有限公司| 天津亨旺机械有限公司| 陕西恒德精密机械有限公司| 无锡凯希迪斯机械有限公司| 南通的机械有限公司| 浙江中兴机械制造有限公司| 济南艺高数控机械有限公司| 杭盛机械设备有限公司| 钦州力顺机械有限公司| 麻阳金湘钢铁有限公司| 济南 机械 有限公司| 广州市机械有限公司| 甘肃机械化建设工程有限公司| 联德机械杭州有限公司| 青岛软控重工有限公司| 佛山市机械设备有限公司| 湛江恒润机械有限公司| 杭州 机械有限公司| 山东兴华机械有限公司| 无纺布机械有限公司| 宣城市 机械 有限公司| 淄博张钢钢铁有限公司| 新进精密机械有限公司| 河北农哈哈机械有限公司| 浙江五一机械有限公司| 东莞市欧机械有限公司| 东莞市业佳精密机械有限公司| 河南昌申钢铁有限公司| 苏州拓博机械设备有限公司| 新乡市威远机械有限公司| 天津市机械设备有限公司| 河北冠能石油机械制造有限公司| 常州机械进出口有限公司| 河南万合机械有限公司| 沈阳东泰机械有限公司| 上海板换机械设备有限公司| 江苏医疗机械有限公司| 河南省起重机有限公司| 台湾正河源机械配件有限公司| 烟台拓伟机械有限公司| 永嘉机械制有限公司| 粮油机械设备有限公司| 温州海翔机械有限公司| 合肥华运机械制造有限公司| 重庆恒科机械制造有限公司| 翼虎动力机械有限公司| 昆山美和机械有限公司| 太原重型机械有限公司| 常州经编机械有限公司| 重庆宝汇跨搏机械制造有限公司| 苏州锐豪机械制造有限公司| 山东章晃机械工业有限公司| 兰州兴元钢铁有限公司| 河北水利机械有限公司| 化工有限公司起名大全| 北方环保机械有限公司| 黄山三佳谊华精密机械有限公司| 泰兴石油机械有限公司| 哈尔滨恒力达机械有限公司| 杭州亿安机械设备有限公司| 亿德隆机械有限公司| 洛阳矿山机械有限公司| 济南金梭机械制造有限公司| 湖南德邦重工机械有限公司| 德国arku机械制造有限公司| 泰兴机械设备有限公司| 昆明机械设备有限公司| 常州儒邦机械有限公司| 友联机械制造有限公司| 卡斯特机械有限公司| 三门峡机械有限公司| 浙江五环机械有限公司| 新乡市矿山起重机械有限公司| 上海丰禾精密机械有限公司| 郑州郑瑞机械有限公司| 宝捷精密机械有限公司| 上海万铂起重机械有限公司| 石家庄瑞辉机械设备有限公司| 华联包装机械有限公司| 波鹰机械制造有限公司| 宁波久力数控机械有限公司| 佛山市钲昌机械设备有限公司| 上海纽荷兰机械有限公司| 首钢京唐钢铁有限公司| 浙江建达机械有限公司| 宝德机械国际有限公司| 安徽包装机械有限公司| 红星机械制造有限公司| 广东力丰机械制造有限公司| 河南德润钢铁有限公司| 江苏苏东机械有限公司| 江阴起重机械有限公司| 东莞市柯达机械有限公司| 山西新泰钢铁有限公司| 新乡市威远机械有限公司| 滁州富达机械电子有限公司| 重庆川凯机械有限公司| 桂林中天机械有限公司| 厦门宇龙机械有限公司| 沈阳 机械设备有限公司| 北京通达机械有限公司| 葛洲坝能源重工有限公司| 特威尔机械有限公司| 保定东利机械制造有限公司| 潍坊润鑫机械有限公司| 艺达精密机械有限公司| 诸城海宝环保机械有限公司| 浩胜食品机械有限公司| 莱州市鲁樽机械有限公司| 瑞安 机械有限公司| 常州药化机械有限公司| 河北晓进机械制造有限公司| 上海塑料机械 有限公司| 苏州宏呈祥机械有限公司| 佛山市松川机械设备有限公司| 广州农业机械有限公司| 江苏新瑞机械有限公司| 邢台 机械有限公司| 苏州金德纬机械有限公司| 临沂华立机械有限公司| 东远机械昆山有限公司| 圣达机械制造有限公司| 郑州市建新机械制造有限公司| 浩强精密机械有限公司| 山东华伟重工机械有限公司| 金隆机械制造有限公司| 徐州液压机械有限公司| 沈阳木工机械有限公司| 潍坊广德机械有限公司| 潍坊圣旋机械有限公司| 浙江雷克机械工业有限公司| 上海合劲传动机械有限公司| 财益机械工业有限公司| 西安金力特机械设备有限公司| 广州市日富包装机械有限公司| 久保田农业机械苏州有限公司| 河北天冠环保机械有限公司| 柳州丹顺机械有限公司| 杭州博创机械有限公司| 山东源泉机械有限公司| 浙江省机械有限公司| 中农丰茂植保机械有限公司| 杭州山虎机械有限公司| 南京寿旺机械设备有限公司| 诺曼艾索机械技术(北京)有限公司| 合肥中达机械制造有限公司| 苏州精雕精密机械工程有限公司| 日照机械制造有限公司| 通宇变速机械有限公司| 湖南星邦重工有限公司| 甘肃机械化建设工程有限公司| 登福机械上海有限公司| 上海田村机械有限公司| 华北机械制造有限公司| 大连 重工有限公司| 东莞迅得机械有限公司| 南京工程机械有限公司| 青岛宏达机械有限公司| 上海超精密机械有限公司| 苏州阔泽精密机械有限公司| 江苏双箭输送机械有限公司| 巨涛机械设备有限公司| 无锡通灵机械有限公司| 成都弘邦机械有限公司| 海诺机械制造有限公司| 上海爱德夏机械有限公司| 北京欧力源机械有限公司| 山鑫矿山机械有限公司| 顺德富华工程机械制造有限公司| 潍坊中迪机械有限公司| 马鞍山 机械制造有限公司| 威海豪威机械有限公司| 重村钢模机械工业苏州有限公司| 上海鑫越包装机械有限公司| 东营石油机械有限公司| 安特精密机械有限公司| 台州瑞达机械有限公司| 洛阳中冶重工有限公司| 企鹅粮油机械有限公司| 瑞辉机械制造有限公司| 广东华鼎机械有限公司| 安机械发展有限公司| 东莞市途锐机械有限公司| 沂南中天机械有限公司| 上海贝得尔石化机械设备有限公司| 咸阳联合机械有限公司| 合肥 机械有限公司| 启东丰顺重工有限公司| 平湖英厚机械有限公司| 河南康迪机械有限公司| 潍坊中迪机械有限公司| 沈阳六合机械有限公司| 南京旭众机械有限公司| 陕西金奇机械电器制造有限公司| 上海特凯机械有限公司| 河南一重起重机有限公司| 博兴县钢铁有限公司| 宁波科鼎钢铁有限公司| 杭州春江制药机械有限公司| 永鑫机械制造有限公司| 东阳市佳先机械制造有限公司| 德玛克机械有限公司| 青岛给力机械有限公司| 珠海市中鑫隆机械化建设工程有限公司| 唐山鑫达钢铁有限公司| 台州华达机械有限公司| 鼎盛机械设备有限公司| 北京市政中燕工程机械制造有限公司| 济南食品机械有限公司| 烟台工程机械有限公司| 三麦机械(珠海)有限公司| 郑州双狮粮油机械有限公司| 山西立恒钢铁有限公司| 台州市四海机械有限公司| 上海申虎包装机械设备有限公司| 上海舜锋机械制造有限公司| 台祥机械设备有限公司| 苏州机械制造有限公司| 青岛日川精密机械有限公司| 昆山东新力特精密机械有限公司| 江苏华粮机械有限公司| 哈尔滨纳诺机械设备有限公司| 太原重工轨道交通设备有限公司| 远兴机械制造有限公司| 江苏百德机械有限公司| 无锡市光彩机械制造有限公司| 青岛华雷重工设备有限公司| 大连正丰机械有限公司| 浙江立洋机械有限公司| 北京精机机械有限公司| 服装有限公司起名大全| 力马化工机械有限公司| 博思格钢铁有限公司| 顺德机械设备有限公司| 浙江建机起重机械有限公司| 恩特机械制造有限公司| 天津蓝科机械有限公司| 河北输送机械有限公司| 无锡杨佳机械有限公司| 肇庆机械设备有限公司| 苏州伟鼎机械设备有限公司| 无锡市锡恒机械有限公司| 江山重工机械有限公司| 常州铭盈包装机械有限公司| 耐普罗机械苏州有限公司| 新疆金特钢铁有限公司| 恒海机械制造有限公司| 广州竞和机械有限公司| 洛阳金诺机械工程有限公司| 山东钢铁济南有限公司| 起帆电缆有限公司上市| 广州合成机械有限公司| 新乐华宝塑料机械有限公司| 广州西力机械有限公司| 湖南运想重工有限公司|