123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <style type="text/css">
- .n-default .msg-wrap{
- top:3px;
- right: 24px;
- z-index:33;
- }
- .rec_ul{
- display: block;
- overflow: hidden;
- list-style: none;
- margin: 0;
- padding: 0;
- width: 600px;
- }
- .rec_ul li{
- float: left;
- overflow: hidden;
- display: inline;
- margin: 10px;
- width: 260px;
- border-radius: 3px;
- }
- .recl_tit{
- position: absolute;
- right: 0;
- bottom: 6px;
- padding: 0 10px;
- height: 22px;
- background-color: #f2f2f2;
- font-size: 14px;
- font-weight: bold;
- color: #333333;
- line-height: 22px;
- border-radius: 22px 0 0 22px;
- }
- .recl_info{
- overflow: hidden;
- }
- .recl_box{
- margin: 20px auto 0;
- padding: 8px 0 0 13px;
- position: relative;
- left: 0;
- top: 0;
- height: 70px;
- background-color: #ffffff;
- border: 1px solid #dcdcdc;
- box-sizing: border-box;
- }
- .recl_mark{
- overflow: hidden;
- padding: 0 9px;
- position: absolute;
- top: 13px;
- right: 0;
- height: 22px;
- background-color: #fa2a2d;
- border-radius: 22px 0 0 22px;
- font-size: 12px;
- color: #ffffff;
- line-height: 22px;
- }
- .recl_money{
- height: 32px;
- font-size: 22px;
- color: #3a4a5a;
- text-align: left;
- line-height: 32px;
- }
- .recl_des{
- overflow: hidden;
- height: 22px;
- text-align: left;
- font-size: 0;
- white-space: nowrap;
- }
- .recl_des strong,
- .recl_des span{
- display: inline-block;
- height: 22px;
- font-size: 14px;
- font-weight: normal;
- line-height: 22px;
- }
- .recl_des strong{
- color: #3a4a5a;
- }
- .recl_des span{
- color: #fa2a2d;
- }
- .recl_operate{
- text-align: right;
- }
- .js_add_goods{
- margin-right: 13px;
- height: 48px;
- font-size: 40px;
- color: #ccc;
- text-align: center;
- line-height: 48px;
- }
- .js_goods_item{
- border: 1px solid #fff;
- }
- .js_goods_item.js_goods_border {
- border: 1px solid blue;
- }
- </style>
- <div class="panel panel-default panel-intro">
- <div class="panel-body">
- <div class="btn-group btn-group-lg" style="margin-bottom:15px;">
- <a href="{:url('admin/defaultcustomgoods/index')}?addtabs=1&business_line=0" class="btn btn-default {if isset($business_line) && $business_line == '0'}active{/if}">自定义商品</a>
- {if condition="$show_app_set == true"}
- <a href="{:url('admin/defaultcustomgoods/index')}?addtabs=1&business_line=1" class="btn btn-default {if isset($business_line) && $business_line == '1'}active{/if}">APP自定义商品</a>
- {/if}
- </div>
- <div class="panel panel-default">
- <div class="panel-heading">
- <h3 class="panel-title">商品设置</h3>
- </div>
- <div class="panel-body">
- <form role="form" class="form-horizontal nice-validator n-default" method="post">
- <input type="hidden" name="row[fun]" value="custom_goods">
- <input type="hidden" name="row[business_line]" value="{$business_line}">
- <div>
- <ul class="rec_ul js_goods_list">
- <li class="js_goods_item js_add_goods_item">
- <div class="recl_info">
- <div class="recl_box">
- <div class="js_add_goods">+</div>
- </div>
- </div>
- </li>
- </ul>
- </div>
- <div class="form-group">
- <div class="col-sm-offset-4 col-sm-4">
- <button type="submit" class="btn btn-default">提交</button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
|