外卖人商品库上传产品图片窗口打开慢,主要是因为<{ofunc type=img link="<{$goodsinfo['img']}>"这行代码加载默认的网站logo,并且在logo前面加上了域名,导致图片加载不到。如http://www.xxx.com/http://www.xxx.com//images/370300/other/xxx.png,解决方法如下:
打开templates/adminpage/shop/goodsone.html 搜索<div id="newimg">
将
<img <{ofunc type=img link="<{$goodsinfo['img']}>" }> width="136" height="130" id="imgshow" <{if empty($goodsinfo['img'])}> style="display:none;"<{/if}>>
改为
<{if empty($goodsinfo['img'])}><img <{ofunc type=img link="<{$goodlogo}>"}> width="136" height="130" id="imgshow" style="display:none;"><{else}><img <{ofunc type=img link="<{$goodsinfo['img']}>" }> width="136" height="130" id="imgshow"><{/if}>
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
相关文章
外卖人商品库列表增加产品缩略图2019-12-18
外卖人后台商品标题长度不能大于50小于2 的修改办法2019-12-16
外卖人商品库商品排序无效的解决办法2019-12-16