Blame view

code/apps/goods/views/netsale/partials/add-info.html 3.43 KB
weiqingting authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<div class="panel panel-default">
    <div class="panel-heading">
        
        <div class="panel-btns" style="display: none;">

            <a href="" class="panel-minimize tooltips" data-toggle="tooltip" title=""><i class="fa fa-minus"></i></a>
        </div>
        <h2 class="panel-title">补全信息</h2>
    </div>
    <div id="addinfo-wrap" class="panel-body addinfo-wrap">
        
    </div>
    <div class="panel-footer">
        <a id="saveAddInfo" href="javascript:;" class="btn btn-primary">保存</a>
    </div>
</div>

<script type="text/template" id="addInfoTemp">
    [[each data as b index]]
        <div class="attribute-group form-group">
            <label>[[b.attributeName]]</label>
            [[if b.inputType=='select']]
                <div style="display: inline-block;width: 280px;">
                    <select class="form-control" id="[[b.attributeId]]" value="[[b.selectedValues||'']]">
25
                        <option value="">请选择</option>
weiqingting authored
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
                        [[each b.idNameList as c index]]
                        <option value="[[c.id]]">[[c.text]]</option>
                        [[/each]]
                    </select>
                </div>
            [[else]]
                <span>
                [[each b.idNameList as c index]]
                <label style="cursor: pointer;"><input name="[[b.attributeId]]" type="[[b.inputType]]" value="[[c.id]]">[[c.text]]</label>
                [[/each]]
                </span>
                <input id="[[b.attributeId]]" type="hidden" for="[[b.inputType]]" value="[[b.selectedValues||'']]">
            [[/if]]
            
        </div>
    [[/each]]
    <div id="brandModelWrap" class="form-group">
        <label>品牌款型:</label>
        <div style="display: inline-block;width: 280px;">
            <select name="brandModelSelect" id="brandModelSelect" tabindex="-1" title="" class="form-control" >
                [[if brandModelText]]
                <option value="[[brandModel]]">[[brandModelText]]</option>
                [[else]]
                <option value="">请选择品牌款型</option>
                [[/if]]
            </select>
        </div>
        <input type="hidden" id="brandModel" value="[[brandModel]]"> 
    </div>
    <div id="brandSeriesWrap" class="form-group">
        <label>品牌系列:</label>
        <div style="display: inline-block;width: 280px;">
            <select name="brandSeriesSelect" id="brandSeriesSelect"  tabindex="-1" title="" class="form-control">
                [[if brandSeriesText]]
                <option value="[[brandSeries]]">[[brandSeriesText]]</option> 
                [[else]]
                <option value="">请选择品牌系列</option>
                [[/if]]        
            </select>
        </div>
        <input type="hidden" id="brandSeries" value="[[brandSeries]]"> 
    </div>

    <div class="form-group">
        <label>促销短语:</label>
        <input id="salesPhrase" class="form-control" type="text" value="[[salesPhrase]]" style="display: inline-block;width: 280px;">
    </div>
linlong authored
73
   <!--
weiqingting authored
74 75 76 77 78 79 80 81
    <div class="form-group">
        <label>是否热销:</label>
        <span>
            <label class="radio-inline"><input type="radio" name="isHostsell" value="Y"></label>
            <label class="radio-inline"><input type="radio" name="isHostsell" value="N"></label>
            <input id="isHostsell" type="hidden" for="radio" value="[[isHostsell]]">
        </span>
    </div>
linlong authored
82
      -->
weiqingting authored
83
</script>