欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

人人商城-数据选择器

程序员文章站 2022-04-21 20:05:38
...

下图中的地址:
营销—基本功能—全返管理—添加商品—添加页面
人人商城-数据选择器在代码中取到下面的代码即可使用这个组件
这个是单选商品选择器
代码如下

<div class="form-group">
                    <label class="col-lg control-label must">选择商品</label>
                    <div class="col-sm-9 col-xs-12">
                        <div>
                            <?php echo tpl_selector_new('goodsid',array('preview'=>true,
                            'readonly'=>true,
                            'required'=>true,
                            'type'=>'fullback',
                            'value'=>$item['title'],
                            'url'=>webUrl('sale/fullback/query'),
                            'optionurl'=>'sale.fullback.hasoption',
                            'items'=>$item,
                            'nokeywords'=>1,
                            'autosearch'=>1,
                            'buttontext'=>'选择商品',
                            'placeholder'=>'请选择商品')
                            )
                            ?>
                        </div>
                    </div>
                </div>

获取到商品id和商品名称 致此 我需要的东西就拿到了 效果图如下
人人商城-数据选择器

选择后:
人人商城-数据选择器

相关标签: 人人商城 php