商品管理
This commit is contained in:
parent
a631133b4c
commit
c6aba8f397
@ -119,6 +119,7 @@ class StoreProduct extends BaseController
|
||||
$detail = $this->model->getStoreProductById($product_id);
|
||||
if (!empty($detail)) {
|
||||
$detail['content'] = Db::table('cms_store_product_content')->where('product_id',$detail['product_id'])->value('content');
|
||||
$detail['slider_image_arr'] = explode(',',$detail['slider_image']);
|
||||
View::assign('detail', $detail);
|
||||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||||
->select();
|
||||
|
@ -60,9 +60,9 @@
|
||||
<td class="layui-td-gray" style="vertical-align:top;">商品封面图</td>
|
||||
<td>
|
||||
<div class="layui-upload">
|
||||
<button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb">
|
||||
上传缩略图(尺寸:428x270)
|
||||
</button>
|
||||
<!-- <button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb">-->
|
||||
<!-- 上传缩略图(尺寸:428x270)-->
|
||||
<!-- </button>-->
|
||||
<div class="layui-upload-list" id="upload_box_thumb"
|
||||
style="width: 428px; height:270px; overflow: hidden;">
|
||||
<img src="{$detail.image}"
|
||||
@ -78,14 +78,18 @@
|
||||
<td class="layui-td-gray" style="vertical-align:top;">商品轮播图</td>
|
||||
<td>
|
||||
<div class="layui-upload">
|
||||
<button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb2">
|
||||
上传缩略图(尺寸:428x270)
|
||||
</button>
|
||||
<!-- <button type="button" class="layui-btn layui-btn-sm" id="upload_btn_thumb2">-->
|
||||
<!-- 上传缩略图(尺寸:428x270)-->
|
||||
<!-- </button>-->
|
||||
<div class="layui-upload-list" id="upload_box_thumb2"
|
||||
style="width: 428px; height:270px; overflow: hidden;">
|
||||
<img src="{$detail.slider_image}"
|
||||
{volist name='detail.slider_image_arr' id='vo'}
|
||||
{if $vo}
|
||||
<img src="{$vo}"
|
||||
onerror="javascript:this.src='{__GOUGU__}/gougu/images/nonepic600x360.jpg';this.onerror=null;"
|
||||
width="100" style="max-width: 100%; height:66px;"/>
|
||||
width="100" style="max-width: 100%; height:66px;" onclick="delMultipleImgs(this)"/>
|
||||
{/if}
|
||||
{/volist}
|
||||
<input type="hidden" name="slider_image" value="{$detail.slider_image}">
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user