初始上传
This commit is contained in:
198
app/shop/view/express/add_template.html
Executable file
198
app/shop/view/express/add_template.html
Executable file
@@ -0,0 +1,198 @@
|
||||
<style>
|
||||
.add-distribution{cursor: pointer;}
|
||||
.area-modal{
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
padding: 25px 0;
|
||||
}
|
||||
.area-modal .area-list{
|
||||
width: 255px;
|
||||
height: 375px;
|
||||
align-items: center;
|
||||
border: 1px solid #ccc;
|
||||
}
|
||||
.area-modal .title{
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
text-align: center;
|
||||
background-color: #d7d7d7;
|
||||
}
|
||||
.area-modal .add{
|
||||
background-color: transparent;
|
||||
border: 1px solid #ccc;
|
||||
padding: 5px 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.area-modal .box{
|
||||
overflow-y: auto;
|
||||
padding: 10px 0;
|
||||
height: 340px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.modal-operation{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 50px;
|
||||
}
|
||||
.area-list .box{
|
||||
height: 314px;
|
||||
margin: 10px 0;
|
||||
overflow-y:auto;
|
||||
overflow-x:hidden;
|
||||
}
|
||||
.area-list .box ul li{
|
||||
line-height: 30px;
|
||||
cursor: pointer;
|
||||
background-color:#fff;
|
||||
}
|
||||
.area-list .box ul li .title-div{
|
||||
position:relative;
|
||||
padding-left:20px;
|
||||
}
|
||||
.area-list .box ul li[data-level='2'] .title-div{
|
||||
margin-left:10px;
|
||||
}
|
||||
.area-list .box ul li[data-level='3'] .title-div{
|
||||
margin-left:20px;
|
||||
}
|
||||
.area-list .box ul li[data-level='4'] .title-div{
|
||||
margin-left:30px;
|
||||
}
|
||||
.area-list.all-area .box ul li.selected{
|
||||
background: #d7d7d7;
|
||||
}
|
||||
.area-list .area-btn,.area-list .area-btn-null,.area-list .area-delete{
|
||||
position:absolute;
|
||||
top:9px;
|
||||
display:block;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-radius: 50%;
|
||||
background-color: #d7d7d7;
|
||||
color: #fff;
|
||||
line-height: 15px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
}
|
||||
.area-list .area-btn{
|
||||
left:3px;
|
||||
}
|
||||
.area-list .area-btn-null{
|
||||
background-color:transparent;
|
||||
left:3px;
|
||||
}
|
||||
.area-list .area-delete{
|
||||
right:6px;
|
||||
}
|
||||
.area-list.all-area .area-delete{
|
||||
display:none;
|
||||
}
|
||||
.area-list.all-area .area-btn.selected{
|
||||
background-color: #fff;
|
||||
color: #d7d7d7;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="layui-form form-wrap">
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label"><span class="required">*</span>模版名称:</label>
|
||||
<div class="layui-input-block">
|
||||
<input name="template_name" type="text" placeholder="请输入模版名称" lay-verify="required" class="layui-input len-long" autocomplete="off">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">计费方式:</label>
|
||||
<div class="layui-input-block">
|
||||
{foreach $fee_type_obj as $fee_type_k => $fee_type_v}
|
||||
<input type="radio" lay-filter="fee_type" name="json" value="{$fee_type_k}" title="{$fee_type_v.name}" {if $fee_type_k == 1} checked {/if}>
|
||||
{/foreach}
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">是否默认:</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="checkbox" name="is_default" lay-filter="is_default" value="1" lay-skin="switch" checked/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label"><span class="required">*</span>配送区域:</label>
|
||||
<div class="layui-input-block">
|
||||
<table id="distributionArea" class="layui-table">
|
||||
<colgroup>
|
||||
<col width="40%">
|
||||
<col width="15%">
|
||||
<col width="15%">
|
||||
<col width="15%">
|
||||
<col width="15%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>可配送区域</th>
|
||||
<th data-name="snum">首重(Kg)</th>
|
||||
<th >运费(元)</th>
|
||||
<th data-name="xnum">续件重(Kg)</th>
|
||||
<th >续费(元)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="5" class="text-color add-distribution js-add-record">指定可配送区域和运费</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">指定包邮:</label>
|
||||
<div class="layui-input-block">
|
||||
<input type="checkbox" name="appoint_free_shipping" lay-filter="appoint_free_shipping" value="1" lay-skin="switch" checked/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item free-shipping">
|
||||
<label class="layui-form-label"><span class="required">*</span>包邮地区:</label>
|
||||
<div class="layui-input-block">
|
||||
<table id="shippingArea" class="layui-table">
|
||||
<colgroup>
|
||||
<col width="50%">
|
||||
<col width="25%">
|
||||
<col width="25%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>选择地区</th>
|
||||
<th >包邮件数</th>
|
||||
<th >包邮金额(元)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="5" class="text-color add-distribution js-add-record">指定包邮区域</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="word-aux">达到包邮条件需包邮件数和包邮金额都达到设置的数值。包邮优先级高于其他运费计算方式</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<button class="layui-btn" lay-submit lay-filter="save">保存</button>
|
||||
<button class="layui-btn layui-btn-primary" onclick=" window.history.go(-1);">返回</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="hidden" value='{$area_level}' id="area_level"/><!-- 配送地区等级 -->
|
||||
<input type="hidden" value='{$fee_type_json}' id="fee_type_json"/><!-- 计费方式相关数据 -->
|
||||
<input type="hidden" value="" id="surplus_area_ids">
|
||||
<input type="hidden" value="" id="shipping_surplus_area_ids">
|
||||
<input type="hidden" value="" id="template_id">
|
||||
<input type="hidden" value="1" id="is_default">
|
||||
|
||||
|
||||
<script type='text/javascript' src='SHOP_JS/express_add_template.js?time=20250110'></script>
|
||||
|
||||
Reference in New Issue
Block a user