1142 lines
88 KiB
PHP
1142 lines
88 KiB
PHP
@extends('layouts.base')
|
||
@section('title', trans('面单管理'))
|
||
@section('content')
|
||
<!-- <div class="w1200 m0a"> -->
|
||
<form action="" method="post" class="form-horizontal form" enctype="multipart/form-data">
|
||
<div class="panel panel-default">
|
||
<div class="panel-heading">编辑信息</div>
|
||
<div class="panel-body">
|
||
<div class="form-group">
|
||
<p> <b>快递公司支持情况</b>: 顺丰速运、宅急送、圆通速递、百世快递、中通快递、韵达速递、申通快递、德邦快递、优速快递、京东快递、信丰物流、安能快递、国通快递、天天快递、跨越速运、邮政快递包裹、中铁快运、邮政国内标快、远成快运、全一快递、速尔快递、品骏快递。 <br> <b>快运公司支持情况</b>: 德邦快运、安能快运、京东快运、龙邦快运。</p>
|
||
<p><b>无需申请直接打单</b>: 顺丰(SF)、宅急送(ZJS)、中铁快运(ZTKY)、全一快递(UAPEX)</p>
|
||
<p><b>月结账号直接打单</b>: 德邦(DBL)</p>
|
||
<p><b>快递鸟后台申请账号</b>: 优速(UC)、韵达(YD)、圆通(YTO)、远成(YCWL)、安能(ANE)、百世快递(HTKY)</p>
|
||
<p><b>线下(网点)申请账号</b>:
|
||
EMS(广东省内发件不需要, 广东省外EMS发货,需联系当地EMS网点,在85系统里面申请大客户和APP_SECRET)、中通(ZTO)、申通(STO)、德邦(DBL)、京东(JD)、信丰(XFEX)、国通(GTO)、天天快递(HHTT)、速尔快递(SURE)、品骏快递(PJ)</p>
|
||
<p><b>快运电子面单</b>: 京东快运(JDKY),安能快运(ANEKY),德邦快运(DBLKY),龙邦快运(LB) </p>
|
||
<p><b>顺丰、宅急送等直营型的可以直接使用快递鸟的账户请求电子面单接口。中通,圆通,申通,百世快递,韵达,优速等加盟型的需要客户去当地物流快递网点申请电子面单账户,将相应的参数传入快递鸟电子面单接口进行电子面单请求。</b> </p>
|
||
<p><b>将订单号、收寄件地址等信息通过电子面单API传递给快递公司,快递公司会通过接口返回物流单号给到用户端,打印在面单上,就是面单上的运单号。加盟快递公司需要预先充值单号,请联系当地合作网点办理。直营类快递公司,如顺丰、宅急送等,审核后无需预充值,随用随取。</b>
|
||
</p>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'>*</span> 电子面单名称</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="text" name="user[panel_name]" class="form-control" value="@if($item) {{$item->panel_name}} @endif" />
|
||
<!-- <span class="help-block">如小张,xx商城</span> -->
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'></span> 电子面单客户账号</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="text" name="user[panel_no]" class="form-control" value="@if($item) {{$item->panel_no}} @endif"/>
|
||
<span class="help-block">可输入商家ID、客户简称、商家编码、客户平台ID、客户帐号、客户号、操作编码、商家代码、客户编号、商家cp、大客户号中的一种</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'></span> 电子面单密码</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="text" name="user[panel_pass]" class="form-control" value="@if($item) {{$item->panel_pass}} @endif" />
|
||
<span class="help-block">可输入客户平台验证码、客户密码、接口联调密码、ERP秘钥、客户平台验证码、APP_SECRET中的一种</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'>*</span>快递类型</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<select id="exhelper_style" name="user[exhelper_style]" class="form-group">
|
||
<option value="0">------</option>
|
||
@foreach($company as $k=>$v)
|
||
<option value={{$k}} @if ($item->exhelper_style == $k) selected @endif>---{{$v}}---</option>
|
||
@endforeach
|
||
</select>
|
||
<span class="help-block">
|
||
<p>
|
||
顺丰、宅急送可以直接使用快递鸟的账户请求电子面单接口。
|
||
</p>
|
||
<p>
|
||
京东,德邦,中通,圆通,申通,百世快递,韵达,安能,优速,快捷等需要客户去当地物流快递网点申请电子面单账户,将相应的参数传入快递鸟电子面单接口进行电子面单请求。
|
||
</p>
|
||
</span>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'>*</span>快递/快运业务类型</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<select id="exhelper_type" name="user[exhelper_type]" class="form-group">
|
||
<option value="0">------</option>
|
||
</select>
|
||
<span class="help-block">
|
||
<p>
|
||
不选或没有选项则使用默认类型
|
||
</p>
|
||
</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label">模板样式</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<select id="panel_style" name="user[panel_style]" class="form-group">
|
||
{{--<option value="@if($item) {{$item->panel_style}} @endif">@if($item) {{$item->panel_style}} @endif</option>--}}
|
||
</select>
|
||
<span class="help-block">除品骏快递(PJ)为一联宽80mm、佳吉快运(CNEX)为一联宽90mm、德邦快运(DBLKY)为三联宽100mm,其余快递公司模板样式均为二联,宽100mm,展示的为模板高度</span>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'></span> 月结编码</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="text" name="user[panel_sign]" class="form-control" value="@if($item) {{$item->panel_sign}} @endif" />
|
||
<!-- <span class="help-block"></span> -->
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"><span style='color:red'></span>收件网点标识</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="text" name="user[panel_code]" class="form-control" value="@if($item) {{$item->panel_code}} @endif" />
|
||
<span class="help-block">可输入仓库ID、网点名称、网点编号(仓库号)中的一种</span>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label">是否为默认模板</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name='user[isdefault]' value="1" @if($item->isdefault == 1) checked @endif /> 是
|
||
</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name='user[isdefault]' value="0" @if($item->isdefault == 0) checked @endif /> 否
|
||
</label>
|
||
</div>
|
||
</div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label">是否通知快递员上门揽件</label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name='user[isself]' value="1" @if($item->isself == 1) checked @endif /> 是
|
||
</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" id="no" name='user[isself]' value="0" @if($item->isself == 0) checked @endif /> 否
|
||
</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="time_save" class="form-group"
|
||
@if (empty($item) || $item->isself != 1 ) style="display: none;"
|
||
@endif>
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label">通知快递员上门揽件时间</label>'
|
||
<div class="col-sm-6 col-xs-6">
|
||
<div class="input-group">
|
||
<select name="user[date]" id="date">
|
||
<option value="{{date('Y-m-d')}}" @if(explode(' ', $item['begin_time'])[0] == date('Y-m-d') ) selected @endif>{{date('Y-m-d')}}</option>
|
||
<option value="{{date('Y-m-d', strtotime('-1 day'))}}" @if(explode(' ', $item['begin_time'])[0] == date('Y-m-d', strtotime('-1 day'))) selected @endif>{{date('Y-m-d', strtotime('-1 day'))}}</option>
|
||
<option value="{{date('Y-m-d', strtotime('+1 day'))}}" @if(explode(' ', $item['begin_time'])[0] == date('Y-m-d', strtotime('+1 day'))) selected @endif>{{date('Y-m-d', strtotime('+1 day'))}}</option>
|
||
</select>'
|
||
<select name="user[begin_time]" id="user[begin_time]">
|
||
<option value="08:00" @if(explode(" ", $item["begin_time"])[1] == "08:00:00") selected="selected" @endif>08:00</option>
|
||
<option value="09:00" @if(explode(" ", $item["begin_time"])[1] == "09:00:00") selected="selected" @endif>09:00</option>
|
||
<option value="10:00" @if(explode(" ", $item["begin_time"])[1] == "10:00:00") selected="selected" @endif>10:00</option>
|
||
<option value="11:00" @if(explode(" ", $item["begin_time"])[1] == "11:00:00") selected="selected" @endif>11:00</option>
|
||
<option value="12:00" @if(explode(" ", $item["begin_time"])[1] == "12:00:00") selected="selected" @endif>12:00</option>
|
||
<option value="13:00" @if(explode(" ", $item["begin_time"])[1] == "13:00:00") selected="selected" @endif>13:00</option>
|
||
<option value="14:00" @if(explode(" ", $item["begin_time"])[1] == "14:00:00") selected="selected" @endif>14:00</option>
|
||
<option value="15:00" @if(explode(" ", $item["begin_time"])[1] == "15:00:00") selected="selected" @endif>15:00</option>
|
||
<option value="16:00" @if(explode(" ", $item["begin_time"])[1] == "16:00:00") selected="selected" @endif>16:00</option>
|
||
<option value="17:00" @if(explode(" ", $item["begin_time"])[1] == "17:00:00") selected="selected" @endif>17:00</option>
|
||
</select> ---
|
||
<select name="user[end_time]" id="user[end_time]">
|
||
<option value="08:00" @if(explode(" ", $item["end_time"])[1] == "08:00:00") selected="selected" @endif>08:00</option>
|
||
<option value="09:00" @if(explode(" ", $item["end_time"])[1] == "09:00:00") selected="selected" @endif>09:00</option>
|
||
<option value="10:00" @if(explode(" ", $item["end_time"])[1] == "10:00:00") selected="selected" @endif>10:00</option>
|
||
<option value="11:00" @if(explode(" ", $item["end_time"])[1] == "11:00:00") selected="selected" @endif>11:00</option>
|
||
<option value="12:00" @if(explode(" ", $item["end_time"])[1] == "12:00:00") selected="selected" @endif>12:00</option>
|
||
<option value="13:00" @if(explode(" ", $item["end_time"])[1] == "13:00:00") selected="selected" @endif>13:00</option>
|
||
<option value="14:00" @if(explode(" ", $item["end_time"])[1] == "14:00:00") selected="selected" @endif>14:00</option>
|
||
<option value="15:00" @if(explode(" ", $item["end_time"])[1] == "15:00:00") selected="selected" @endif>15:00</option>
|
||
<option value="16:00" @if(explode(" ", $item["end_time"])[1] == "16:00:00") selected="selected" @endif>16:00</option>
|
||
<option value="17:00" @if(explode(" ", $item["end_time"])[1] == "17:00:00") selected="selected" @endif>17:00</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class='panel-body'>
|
||
<div class="form-group"></div>
|
||
<div class="form-group">
|
||
<label class="col-xs-12 col-sm-3 col-md-2 control-label"></label>
|
||
<div class="col-sm-9 col-xs-12">
|
||
<input type="submit" name="submit" value="提交" class="btn btn-primary col-lg-1" />
|
||
<input type="button" name="back" onclick='history.back()' style='margin-left:10px;' value="返回列表" class="btn btn-default col-lg" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
<!-- </div> -->
|
||
<script type="text/javascript">
|
||
$(function(){
|
||
// var html = '';
|
||
let company = {!! json_encode($company) !!};
|
||
let item = {!! json_encode($item) !!};
|
||
|
||
console.log(company)
|
||
console.log(item)
|
||
if(!item){
|
||
return;
|
||
}
|
||
if(item.exhelper_style == 'SF') {
|
||
let html = `<option value='150' @if ($item->panel_style == '150') selected @endif>二联 150 新</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>二联 180 新</option>`;
|
||
html += `<option value='210' @if ($item->panel_style == '210') selected @endif>三联 210 新</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>顺丰标快</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>顺丰标快</option>`;
|
||
{{--distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>电商特惠</option>`;--}}
|
||
{{--distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>四日件</option>`;--}}
|
||
{{--distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>顺丰次晨</option>`;--}}
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>顺丰即日</option>`;
|
||
{{--distribution += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>电商速配</option>`;--}}
|
||
distribution += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>国际小包平邮</option>`;
|
||
distribution += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>国际小包挂号</option>`;
|
||
{{--distribution += `<option value='11' @if ($item->exhelper_type == '11') selected @endif>医药常温</option>`;--}}
|
||
{{--distribution += `<option value='12' @if ($item->exhelper_type == '12') selected @endif>医药温控</option>`;--}}
|
||
{{--distribution += `<option value='13' @if ($item->exhelper_type == '13') selected @endif>物流普运</option>`;--}}
|
||
{{--distribution += `<option value='14' @if ($item->exhelper_type == '14') selected @endif>冷运到家</option>`;--}}
|
||
{{--distribution += `<option value='15' @if ($item->exhelper_type == '15') selected @endif>生鲜速配</option>`;--}}
|
||
{{--distribution += `<option value='16' @if ($item->exhelper_type == '16') selected @endif>大闸蟹专递</option>`;--}}
|
||
{{--distribution += `<option value='17' @if ($item->exhelper_type == '17') selected @endif>汽配吉运</option>`;--}}
|
||
{{--distribution += `<option value='18' @if ($item->exhelper_type == '18') selected @endif>重货快运</option>`;--}}
|
||
{{--distribution += `<option value='20' @if ($item->exhelper_type == '20') selected @endif>行邮专列</option>`;--}}
|
||
{{--distribution += `<option value='21' @if ($item->exhelper_type == '21') selected @endif>医药专运(常温)</option>`;--}}
|
||
{{--distribution += `<option value='22' @if ($item->exhelper_type == '22') selected @endif>医药专运(温控)</option>`;--}}
|
||
distribution += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>顺丰国际特惠(文件)</option>`;
|
||
{{--distribution += `<option value='28' @if ($item->exhelper_type == '28') selected @endif>电商专配</option>`;--}}
|
||
distribution += `<option value='29' @if ($item->exhelper_type == '29') selected @endif>国际电商专递-标准</option>`;
|
||
distribution += `<option value='31' @if ($item->exhelper_type == '31') selected @endif>便利封/袋(标快)</option>`;
|
||
distribution += `<option value='33' @if ($item->exhelper_type == '33') selected @endif>岛内件(80CM)</option>`;
|
||
{{--distribution += `<option value='34' @if ($item->exhelper_type == '34') selected @endif>即日2200</option>`;--}}
|
||
{{--distribution += `<option value='35' @if ($item->exhelper_type == '35') selected @endif>物资配送</option>`;--}}
|
||
{{--distribution += `<option value='36' @if ($item->exhelper_type == '36') selected @endif>汇票专送</option>`;--}}
|
||
distribution += `<option value='53' @if ($item->exhelper_type == '53') selected @endif>高铁站配</option>`;
|
||
{{--distribution += `<option value='110' @if ($item->exhelper_type == '110') selected @endif>证照专递产品</option>`;--}}
|
||
distribution += `<option value='111' @if ($item->exhelper_type == '111') selected @endif>顺丰干配</option>`;
|
||
distribution += `<option value='112' @if ($item->exhelper_type == '112') selected @endif>顺丰空配</option>`;
|
||
{{--distribution += `<option value='125' @if ($item->exhelper_type == '125') selected @endif>专线普运</option>`;--}}
|
||
{{--distribution += `<option value='134' @if ($item->exhelper_type == '134') selected @endif>夜配</option>`;--}}
|
||
distribution += `<option value='153' @if ($item->exhelper_type == '153') selected @endif>整车直达</option>`;
|
||
distribution += `<option value='154' @if ($item->exhelper_type == '154') selected @endif>重货包裹</option>`;
|
||
distribution += `<option value='155' @if ($item->exhelper_type == '155') selected @endif>标准零担</option>`;
|
||
distribution += `<option value='174' @if ($item->exhelper_type == '174') selected @endif>重货包裹B</option>`;
|
||
{{--distribution += `<option value='195' @if ($item->exhelper_type == '195') selected @endif>医药常温(陆)</option>`;--}}
|
||
distribution += `<option value='199' @if ($item->exhelper_type == '199') selected @endif>极速包裹</option>`;
|
||
distribution += `<option value='201' @if ($item->exhelper_type == '201') selected @endif>冷运标快</option>`;
|
||
distribution += `<option value='202' @if ($item->exhelper_type == '202') selected @endif>顺丰微小件</option>`;
|
||
{{--distribution += `<option value='203' @if ($item->exhelper_type == '203') selected @endif>医药快运</option>`;--}}
|
||
{{--distribution += `<option value='204' @if ($item->exhelper_type == '204') selected @endif>陆运微小件</option>`;--}}
|
||
distribution += `<option value='208' @if ($item->exhelper_type == '208') selected @endif>特惠专配</option>`;
|
||
distribution += `<option value='209' @if ($item->exhelper_type == '209') selected @endif>高铁专送</option>`;
|
||
distribution += `<option value='215' @if ($item->exhelper_type == '215') selected @endif>大票零担</option>`;
|
||
distribution += `<option value='221' @if ($item->exhelper_type == '221') selected @endif>香港冷运到家(≤60厘米)</option>`;
|
||
distribution += `<option value='229' @if ($item->exhelper_type == '229') selected @endif>精温专递</option>`;
|
||
distribution += `<option value='231' @if ($item->exhelper_type == '231') selected @endif>陆运包裹</option>`;
|
||
distribution += `<option value='233' @if ($item->exhelper_type == '233') selected @endif>精温专递(样本陆)</option>`;
|
||
distribution += `<option value='235' @if ($item->exhelper_type == '235') selected @endif>极效前置</option>`;
|
||
distribution += `<option value='238' @if ($item->exhelper_type == '238') selected @endif>纯重特配</option>`;
|
||
distribution += `<option value='242' @if ($item->exhelper_type == '242') selected @endif>丰网速运</option>`;
|
||
distribution += `<option value='243' @if ($item->exhelper_type == '243') selected @endif>同城即日</option>`;
|
||
distribution += `<option value='247' @if ($item->exhelper_type == '247') selected @endif>电商标快</option>`;
|
||
distribution += `<option value='250' @if ($item->exhelper_type == '250') selected @endif>极置店配</option>`;
|
||
distribution += `<option value='251' @if ($item->exhelper_type == '251') selected @endif>极置店配(专线)</option>`;
|
||
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
|
||
if(item.exhelper_style == 'YMDD') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>二联 180</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>港到门</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>港到港</option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>门到门</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>门到港</option>`;
|
||
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
|
||
if(item.exhelper_style == 'EMS') {
|
||
let html = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
html += `<option value='1501' @if ($item->panel_style == '1501') selected @endif>二联 150 新</option>`;
|
||
html += `<option value='1801' @if ($item->panel_style == '1801') selected @endif>三联 180 新</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
distribution += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>代收到付 </option>`;
|
||
distribution += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>快递包裹 </option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'ZJS') {
|
||
let html = `<option value='120mm' @if ($item->panel_style == '120mm') selected @endif>120mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html += `<option value='120' @if ($item->panel_style == '120') selected @endif>120mm(新二联)</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'YTO') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(三联)</option>`;
|
||
html += `<option value='18001' @if ($item->panel_style == '18001') selected @endif>180mm(新二联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>上门揽收</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'HTKY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>130mm(一联)</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'ZTO') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 1301 尊享</option>`;
|
||
html += `<option value='1801' @if ($item->panel_style == '1801') selected @endif>二联 180 隐私</option>`;
|
||
html += `<option value='1302' @if ($item->panel_style == '1302') selected @endif>一联 130 隐私</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>普通订单</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>线下订单 </option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>COD订单 </option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>限时物流 </option>`;
|
||
distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>快递保障订单 </option>`;
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>星联服务 </option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'YD') {
|
||
let html = `<option value='203mm' @if ($item->panel_style == '203mm') selected @endif>203mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
|
||
$("#panel_style").append($(html))
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'STO') {
|
||
let html = `<option value='150' @if ($item->panel_style == '150') selected @endif>150mm</option>`;
|
||
html += `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html += `<option value='18003' @if ($item->panel_style == '18003') selected @endif>180mm(新三联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>生鲜 </option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'DBL') {
|
||
let html = `<option value='177mm' @if ($item->panel_style == '177mm') selected @endif>二联 177</option>`;
|
||
html += `<option value='18001' @if ($item->panel_style == '18001') selected @endif>177mm(新二联)</option>`;
|
||
html += `<option value='18002' @if ($item->panel_style == '18002') selected @endif>177mm(新三联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
|
||
let distributions = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
distributions += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>微小件特惠 </option>`;
|
||
distributions += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>电商尊享</option>`;
|
||
distributions += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>特准快件 </option>`;
|
||
distributions += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>大件快递360 </option>`;
|
||
distributions += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>重包入户</option>`;
|
||
distributions += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>同城件 </option>`;
|
||
distributions += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>重包特惠 </option>`;
|
||
distributions += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>经济大件</option>`;
|
||
distributions += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>航空大件次日达</option>`;
|
||
distributions += `<option value='11' @if ($item->exhelper_type == '11') selected @endif>航空大件隔日达</option>`;
|
||
|
||
$("#exhelper_type").append($(distributions));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'UC') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html))
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'JD') {
|
||
let html = `<option value='110mm' @if ($item->panel_style == '110mm') selected @endif>110mm</option>`;
|
||
html += `<option value='110' @if ($item->panel_style == '110') selected @endif>110mm(新二联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130 新</option>`;
|
||
html += `<option value='1101' @if ($item->panel_style == '1101') selected @endif>二联 110 隐私</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 隐私</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>订单来源:京东商城</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>订单来源:天猫 </option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>订单来源:苏宁</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>订单来源:亚马逊中国 </option>`;
|
||
distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>订单来源:ChinaSkin </option>`;
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>默认选择:其他销售平台</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html))
|
||
}
|
||
if(item.exhelper_style == 'XFEX') {
|
||
let html = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
$("#panel_style").append($(html))
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'ANE') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
|
||
let distribution = `<option value='24' @if ($item->exhelper_type == '24') selected @endif>标准快运</option>`;
|
||
distribution += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>定时达</option>`;
|
||
distribution += `<option value='95' @if ($item->exhelper_type == '95') selected @endif>Mini小包</option>`;
|
||
distribution += `<option value='270' @if ($item->exhelper_type == '270') selected @endif>普惠达</option>`;
|
||
distribution += `<option value='211' @if ($item->exhelper_type == '211') selected @endif>易碎品(标准快运)</option>`;
|
||
distribution += `<option value='212' @if ($item->exhelper_type == '212') selected @endif>易碎品(定时达)</option>`;
|
||
distribution += `<option value='213' @if ($item->exhelper_type == '213') selected @endif>易碎品(Mini小包)</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'HHTT') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'KYSY') {
|
||
let html = `<option value='137mm' @if ($item->panel_style == '137mm') selected @endif>137mm</option>`;
|
||
html += `<option value='210' @if ($item->panel_style == '210') selected @endif>210mm</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>当天达</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>次日达 </option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>隔日达</option>`;
|
||
distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>同城即日 </option>`;
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>同城次日</option>`;
|
||
distribution += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>陆运件 </option>`;
|
||
distribution += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>省内次日</option>`;
|
||
distribution += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>省内即日 </option>`;
|
||
distribution += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>空运</option>`;
|
||
distribution += `<option value='11' @if ($item->exhelper_type == '11') selected @endif>专运 </option>`;
|
||
distribution += `<option value='12' @if ($item->exhelper_type == '12') selected @endif>次晨达</option>`;
|
||
distribution += `<option value='13' @if ($item->exhelper_type == '13') selected @endif>航空件 </option>`;
|
||
distribution += `<option value='14' @if ($item->exhelper_type == '14') selected @endif>早班件</option>`;
|
||
distribution += `<option value='15' @if ($item->exhelper_type == '15') selected @endif>中班件 </option>`;
|
||
distribution += `<option value='16' @if ($item->exhelper_type == '16') selected @endif>晚班件</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'YZPY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联130</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'YZBK') {
|
||
let html = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'YCWL') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'UAPEX') {
|
||
let html = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>推荐物流业务</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>当日达 </option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>次晨达</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>次日达 </option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
|
||
$("#panel_style").append($(html));
|
||
}
|
||
if(item.exhelper_style == 'SURE') {
|
||
let html = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html += `<option value='150' @if ($item->panel_style == '150') selected @endif>150mm(新二联)</option>`;
|
||
html += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
|
||
}
|
||
if(item.exhelper_style == 'PJ') {
|
||
let html = `<option value='120mm' @if ($item->panel_style == '120mm') selected @endif>120mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'DBLKY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>精准城运/卡航</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>精准汽运</option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>精准空运</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>汽运偏线</option>`;
|
||
distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>精准大票-经济件</option>`;
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>精准大票-标准件</option>`;
|
||
distribution += `<option value='20' @if ($item->exhelper_type == '20') selected @endif>精准包裹</option>`;
|
||
|
||
$("#panel_style").append($(html));
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'ANEKY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
$("#panel_style").append($(html1));
|
||
let ANE = `<option value='24' @if ($item->exhelper_type == '24') selected @endif>标准快运</option>`;
|
||
ANE += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>定时达</option>`;
|
||
ANE += `<option value='95' @if ($item->exhelper_type == '95') selected @endif>Mini小包</option>`;
|
||
ANE += `<option value='270' @if ($item->exhelper_type == '270') selected @endif>普惠达</option>`;
|
||
ANE += `<option value='211' @if ($item->exhelper_type == '211') selected @endif>易碎品(标准快运)</option>`;
|
||
ANE += `<option value='212' @if ($item->exhelper_type == '212') selected @endif>易碎品(定时达)</option>`;
|
||
ANE += `<option value='213' @if ($item->exhelper_type == '213') selected @endif>易碎品(Mini小包)</option>`;
|
||
|
||
$("#exhelper_type").append($(ANE));
|
||
}
|
||
if(item.exhelper_style == 'JDKY') {
|
||
let html = `<option value='110mm' @if ($item->panel_style == '110mm') selected @endif>110mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>订单来源:京东商城</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>订单来源:天猫 </option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>订单来源:苏宁</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>订单来源:亚马逊中国 </option>`;
|
||
distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>订单来源:ChinaSkin </option>`;
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>默认选择:其他销售平台</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'LB') {
|
||
let html = `<option value='104mm' @if ($item->panel_style == '104mm') selected @endif>104mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'CND') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'HTKYKY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'ZTOKY') {
|
||
let html = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'SX') {
|
||
let html = `<option value='105mm' @if ($item->panel_style == '105mm') selected @endif>105mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
if(item.exhelper_style == 'SX') {
|
||
let html = `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
html += `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html));
|
||
let distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(distribution));
|
||
}
|
||
});
|
||
$(":radio[name='user[isself]']").click(function () {
|
||
if ($(this).val() == 1) {
|
||
console.log('3');
|
||
//追加元素
|
||
$('#time_save').show();
|
||
}
|
||
else {
|
||
console.log('4');
|
||
$("#time_save").hide();
|
||
}
|
||
});
|
||
|
||
$('#exhelper_style').change(function(){
|
||
|
||
var expressCode = $('#exhelper_style option:selected').val();
|
||
console.log(expressCode);
|
||
var panel_style = $('#panel_style').children();
|
||
console.log(panel_style.text());
|
||
let html1 = '';
|
||
let distribution = '';
|
||
$("#exhelper_type").empty();
|
||
switch(expressCode) {
|
||
case 'SF' :
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150' @if ($item->panel_style == '150') selected @endif>二联 150 新</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>二联 180 新</option>`;
|
||
html1 += `<option value='210' @if ($item->panel_style == '210') selected @endif>三联 210 新</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
$("#panel_style").append($(html1));
|
||
|
||
distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>顺丰标快</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>顺丰标快</option>`;
|
||
{{--distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>电商特惠</option>`;--}}
|
||
{{--distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>四日件</option>`;--}}
|
||
{{--distribution += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>顺丰次晨</option>`;--}}
|
||
distribution += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>顺丰即日</option>`;
|
||
{{--distribution += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>电商速配</option>`;--}}
|
||
distribution += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>国际小包平邮</option>`;
|
||
distribution += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>国际小包挂号</option>`;
|
||
{{--distribution += `<option value='11' @if ($item->exhelper_type == '11') selected @endif>医药常温</option>`;--}}
|
||
{{--distribution += `<option value='12' @if ($item->exhelper_type == '12') selected @endif>医药温控</option>`;--}}
|
||
{{--distribution += `<option value='13' @if ($item->exhelper_type == '13') selected @endif>物流普运</option>`;--}}
|
||
{{--distribution += `<option value='14' @if ($item->exhelper_type == '14') selected @endif>冷运到家</option>`;--}}
|
||
{{--distribution += `<option value='15' @if ($item->exhelper_type == '15') selected @endif>生鲜速配</option>`;--}}
|
||
{{--distribution += `<option value='16' @if ($item->exhelper_type == '16') selected @endif>大闸蟹专递</option>`;--}}
|
||
{{--distribution += `<option value='17' @if ($item->exhelper_type == '17') selected @endif>汽配吉运</option>`;--}}
|
||
{{--distribution += `<option value='18' @if ($item->exhelper_type == '18') selected @endif>重货快运</option>`;--}}
|
||
{{--distribution += `<option value='20' @if ($item->exhelper_type == '20') selected @endif>行邮专列</option>`;--}}
|
||
{{--distribution += `<option value='21' @if ($item->exhelper_type == '21') selected @endif>医药专运(常温)</option>`;--}}
|
||
{{--distribution += `<option value='22' @if ($item->exhelper_type == '22') selected @endif>医药专运(温控)</option>`;--}}
|
||
distribution += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>顺丰国际特惠(文件)</option>`;
|
||
{{--distribution += `<option value='28' @if ($item->exhelper_type == '28') selected @endif>电商专配</option>`;--}}
|
||
distribution += `<option value='29' @if ($item->exhelper_type == '29') selected @endif>国际电商专递-标准</option>`;
|
||
distribution += `<option value='31' @if ($item->exhelper_type == '31') selected @endif>便利封/袋(标快)</option>`;
|
||
distribution += `<option value='33' @if ($item->exhelper_type == '33') selected @endif>岛内件(80CM)</option>`;
|
||
{{--distribution += `<option value='34' @if ($item->exhelper_type == '34') selected @endif>即日2200</option>`;--}}
|
||
{{--distribution += `<option value='35' @if ($item->exhelper_type == '35') selected @endif>物资配送</option>`;--}}
|
||
{{--distribution += `<option value='36' @if ($item->exhelper_type == '36') selected @endif>汇票专送</option>`;--}}
|
||
distribution += `<option value='53' @if ($item->exhelper_type == '53') selected @endif>高铁站配</option>`;
|
||
{{--distribution += `<option value='110' @if ($item->exhelper_type == '110') selected @endif>证照专递产品</option>`;--}}
|
||
distribution += `<option value='111' @if ($item->exhelper_type == '111') selected @endif>顺丰干配</option>`;
|
||
distribution += `<option value='112' @if ($item->exhelper_type == '112') selected @endif>顺丰空配</option>`;
|
||
{{--distribution += `<option value='125' @if ($item->exhelper_type == '125') selected @endif>专线普运</option>`;--}}
|
||
{{--distribution += `<option value='134' @if ($item->exhelper_type == '134') selected @endif>夜配</option>`;--}}
|
||
distribution += `<option value='153' @if ($item->exhelper_type == '153') selected @endif>整车直达</option>`;
|
||
distribution += `<option value='154' @if ($item->exhelper_type == '154') selected @endif>重货包裹</option>`;
|
||
distribution += `<option value='155' @if ($item->exhelper_type == '155') selected @endif>标准零担</option>`;
|
||
distribution += `<option value='174' @if ($item->exhelper_type == '174') selected @endif>重货包裹B</option>`;
|
||
{{--distribution += `<option value='195' @if ($item->exhelper_type == '195') selected @endif>医药常温(陆)</option>`;--}}
|
||
distribution += `<option value='199' @if ($item->exhelper_type == '199') selected @endif>极速包裹</option>`;
|
||
distribution += `<option value='201' @if ($item->exhelper_type == '201') selected @endif>冷运标快</option>`;
|
||
distribution += `<option value='202' @if ($item->exhelper_type == '202') selected @endif>顺丰微小件</option>`;
|
||
{{--distribution += `<option value='203' @if ($item->exhelper_type == '203') selected @endif>医药快运</option>`;--}}
|
||
{{--distribution += `<option value='204' @if ($item->exhelper_type == '204') selected @endif>陆运微小件</option>`;--}}
|
||
distribution += `<option value='208' @if ($item->exhelper_type == '208') selected @endif>特惠专配</option>`;
|
||
distribution += `<option value='209' @if ($item->exhelper_type == '209') selected @endif>高铁专送</option>`;
|
||
distribution += `<option value='215' @if ($item->exhelper_type == '215') selected @endif>大票零担</option>`;
|
||
distribution += `<option value='221' @if ($item->exhelper_type == '221') selected @endif>香港冷运到家(≤60厘米)</option>`;
|
||
distribution += `<option value='229' @if ($item->exhelper_type == '229') selected @endif>精温专递</option>`;
|
||
distribution += `<option value='231' @if ($item->exhelper_type == '231') selected @endif>陆运包裹</option>`;
|
||
distribution += `<option value='233' @if ($item->exhelper_type == '233') selected @endif>精温专递(样本陆)</option>`;
|
||
distribution += `<option value='235' @if ($item->exhelper_type == '235') selected @endif>极效前置</option>`;
|
||
distribution += `<option value='238' @if ($item->exhelper_type == '238') selected @endif>纯重特配</option>`;
|
||
distribution += `<option value='242' @if ($item->exhelper_type == '242') selected @endif>丰网速运</option>`;
|
||
distribution += `<option value='243' @if ($item->exhelper_type == '243') selected @endif>同城即日</option>`;
|
||
distribution += `<option value='247' @if ($item->exhelper_type == '247') selected @endif>电商标快</option>`;
|
||
distribution += `<option value='250' @if ($item->exhelper_type == '250') selected @endif>极置店配</option>`;
|
||
distribution += `<option value='251' @if ($item->exhelper_type == '251') selected @endif>极置店配(专线)</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
|
||
// $('#panel_style').children().val('150mm');
|
||
// $('#panel_style').children().text('150mm');
|
||
// $('#no').parent().hide();
|
||
$("input[name='user[isself]']").attr('checked', true);
|
||
$('#time_save').show();
|
||
// $("input[name='user[isself]']").parent().parent().parent().hide();
|
||
break;
|
||
|
||
case 'YMDD' :
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>二联 180</option>`;
|
||
$("#panel_style").append($(html1));
|
||
|
||
distribution = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>港到门</option>`;
|
||
distribution += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>港到港</option>`;
|
||
distribution += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>门到门</option>`;
|
||
distribution += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>门到港</option>`;
|
||
|
||
$("#exhelper_type").append($(distribution));
|
||
$("input[name='user[isself]']").attr('checked', true);
|
||
$('#time_save').show();
|
||
|
||
break;
|
||
|
||
case 'DBL' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='177mm' @if ($item->panel_style == '177mm') selected @endif>二联 177</option>`;
|
||
html1 += `<option value='18001' @if ($item->panel_style == '18001') selected @endif>177mm(新二联)</option>`;
|
||
html1 += `<option value='18002' @if ($item->panel_style == '18002') selected @endif>177mm(新三联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let distributions = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
distributions += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>微小件特惠 </option>`;
|
||
distributions += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>电商尊享</option>`;
|
||
distributions += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>特准快件 </option>`;
|
||
distributions += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>大件快递360 </option>`;
|
||
distributions += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>重包入户</option>`;
|
||
distributions += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>同城件 </option>`;
|
||
distributions += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>重包特惠 </option>`;
|
||
distributions += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>经济大件</option>`;
|
||
distributions += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>航空大件次日达</option>`;
|
||
distributions += `<option value='11' @if ($item->exhelper_type == '1') selected @endif>航空大件隔日达</option>`;
|
||
|
||
$("#exhelper_type").append($(distributions));
|
||
break;
|
||
case 'ZTO' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('130mm');
|
||
// $('#panel_style').children().text('130mm');
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 1301 尊享</option>`;
|
||
html1 += `<option value='1801' @if ($item->panel_style == '1801') selected @endif>二联 180 隐私</option>`;
|
||
html1 += `<option value='1302' @if ($item->panel_style == '1302') selected @endif>一联 130 隐私</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let ZTO = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>普通订单</option>`;
|
||
ZTO += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>线下订单 </option>`;
|
||
ZTO += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>COD订单 </option>`;
|
||
ZTO += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>限时物流 </option>`;
|
||
ZTO += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>快递保障订单 </option>`;
|
||
ZTO += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>星联服务 </option>`;
|
||
$("#exhelper_type").append($(ZTO));
|
||
break;
|
||
case 'ANE' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let ANE = `<option value='24' @if ($item->exhelper_type == '24') selected @endif>标准快运</option>`;
|
||
ANE += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>定时达</option>`;
|
||
ANE += `<option value='95' @if ($item->exhelper_type == '95') selected @endif>Mini小包</option>`;
|
||
ANE += `<option value='270' @if ($item->exhelper_type == '270') selected @endif>普惠达</option>`;
|
||
ANE += `<option value='211' @if ($item->exhelper_type == '211') selected @endif>易碎品(标准快运)</option>`;
|
||
ANE += `<option value='212' @if ($item->exhelper_type == '212') selected @endif>易碎品(定时达)</option>`;
|
||
ANE += `<option value='213' @if ($item->exhelper_type == '213') selected @endif>易碎品(Mini小包)</option>`;
|
||
|
||
$("#exhelper_type").append($(ANE));
|
||
|
||
break;
|
||
case 'EMS' :
|
||
// $('#panel_style').children().val('150mm');
|
||
// $('#panel_style').children().text('150mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130</option>`;
|
||
html1 += `<option value='1501' @if ($item->panel_style == '1501') selected @endif>二联 150 新</option>`;
|
||
html1 += `<option value='1801' @if ($item->panel_style == '1801') selected @endif>三联 180 新</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let EMS = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
EMS += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>代收到付 </option>`;
|
||
EMS += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>快递包裹 </option>`;
|
||
$("#exhelper_type").append($(EMS));
|
||
break;
|
||
case 'GTO' :
|
||
$('#no').parent().show();
|
||
$('#panel_style').children().val('180mm');
|
||
$('#panel_style').children().text('180mm');
|
||
let GTO = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(GTO));
|
||
break;
|
||
case 'HHTT' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let HHTT = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(HHTT));
|
||
break;
|
||
case 'HTKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>130mm(一联)</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let HTKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(HTKY));
|
||
break;
|
||
case 'JD' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('110mm');
|
||
// $('#panel_style').children().text('110mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='110mm' @if ($item->panel_style == '110mm') selected @endif>110mm</option>`;
|
||
html1 += `<option value='110' @if ($item->panel_style == '110') selected @endif>110mm(新二联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联 130 新</option>`;
|
||
html1 += `<option value='1101' @if ($item->panel_style == '1101') selected @endif>二联 110 隐私</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 隐私</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let JD = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>订单来源:京东商城</option>`;
|
||
JD += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>订单来源:天猫 </option>`;
|
||
JD += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>订单来源:苏宁</option>`;
|
||
JD += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>订单来源:亚马逊中国 </option>`;
|
||
JD += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>订单来源:ChinaSkin </option>`;
|
||
JD += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>默认选择:其他销售平台</option>`;
|
||
|
||
$("#exhelper_type").append($(JD));
|
||
break;
|
||
case 'KYSY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('150mm');
|
||
// $('#panel_style').children().text('150mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='137mm' @if ($item->panel_style == '137mm') selected @endif>137mm</option>`;
|
||
html1 += `<option value='210' @if ($item->panel_style == '210') selected @endif>210mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let KYSY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>当天达</option>`;
|
||
KYSY += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>次日达 </option>`;
|
||
KYSY += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>隔日达</option>`;
|
||
KYSY += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>同城即日</option>`;
|
||
KYSY += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>同城次日</option>`;
|
||
KYSY += `<option value='7' @if ($item->exhelper_type == '7') selected @endif>陆运件 </option>`;
|
||
KYSY += `<option value='8' @if ($item->exhelper_type == '8') selected @endif>省内次日</option>`;
|
||
KYSY += `<option value='9' @if ($item->exhelper_type == '9') selected @endif>省内即日 </option>`;
|
||
KYSY += `<option value='10' @if ($item->exhelper_type == '10') selected @endif>空运</option>`;
|
||
KYSY += `<option value='11' @if ($item->exhelper_type == '11') selected @endif>专运 </option>`;
|
||
KYSY += `<option value='12' @if ($item->exhelper_type == '12') selected @endif>次晨达</option>`;
|
||
KYSY += `<option value='13' @if ($item->exhelper_type == '13') selected @endif>航空件 </option>`;
|
||
KYSY += `<option value='14' @if ($item->exhelper_type == '14') selected @endif>早班件</option>`;
|
||
KYSY += `<option value='15' @if ($item->exhelper_type == '15') selected @endif>中班件 </option>`;
|
||
KYSY += `<option value='16' @if ($item->exhelper_type == '16') selected @endif>晚班件</option>`;
|
||
$("#exhelper_type").append($(KYSY));
|
||
break;
|
||
case 'STO' :
|
||
$('#no').parent().show();
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150' @if ($item->panel_style == '150') selected @endif>150mm</option>`;
|
||
html1 += `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html1 += `<option value='18003' @if ($item->panel_style == '18003') selected @endif>180mm(新三联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
$("#panel_style").append($(html1))
|
||
let STO = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
STO += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>生鲜 </option>`;
|
||
|
||
$("#exhelper_type").append($(STO));
|
||
// $('#panel_style').children().val('130mm');
|
||
// $('#panel_style').children().text('130mm');
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
break;
|
||
case 'UC' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1))
|
||
let UC = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(UC));
|
||
break;
|
||
case 'XFEX' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('150mm');
|
||
// $('#panel_style').children().text('150mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
$("#panel_style").append($(html1))
|
||
let XFEX = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(XFEX));
|
||
break;
|
||
case 'YCSY' :
|
||
$('#no').parent().show();
|
||
$('#panel_style').children().val('180mm');
|
||
$('#panel_style').children().text('180mm');
|
||
let YCSY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(YCSY));
|
||
break;
|
||
case 'YD' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('210mm');
|
||
// $('#panel_style').children().text('210mm');
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='203mm' @if ($item->panel_style == '203mm') selected @endif>203mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
$("#panel_style").append($(html1))
|
||
let YD = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(YD));
|
||
break;
|
||
case 'YTO' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(三联)</option>`;
|
||
html1 += `<option value='18001' @if ($item->panel_style == '18001') selected @endif>180mm(新二联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm(一联)</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130 新</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let YTO = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>上门揽收</option>`;
|
||
$("#exhelper_type").append($(YTO));
|
||
break;
|
||
case 'YZPY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('180mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
html1 += `<option value='130' @if ($item->panel_style == '130') selected @endif>一联130</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let YZPY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(YZPY));
|
||
break;
|
||
case 'ZTKY' :
|
||
$('#no').parent().show();
|
||
$('#panel_style').children().val('150mm');
|
||
$('#panel_style').children().text('150mm');
|
||
let ZTKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(ZTKY));
|
||
break;
|
||
case 'ZJS' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('120mm');
|
||
// $('#panel_style').children().text('120mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='120mm' @if ($item->panel_style == '120mm') selected @endif>120mm</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm</option>`;
|
||
html1 += `<option value='120' @if ($item->panel_style == '120') selected @endif>120mm(新二联)</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let ZJS = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(ZJS));
|
||
break;
|
||
case '0':
|
||
$('#no').parent().show();
|
||
$('#panel_style').children().val('');
|
||
$('#panel_style').children().text('');
|
||
let a = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(a));
|
||
case 'JD' :
|
||
$('#panel_style').children().val('110mm');
|
||
$('#panel_style').children().text('110mm');
|
||
let JDs = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(JDs));
|
||
break;
|
||
|
||
case 'JTSD' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='130' @if ($item->panel_style == '130') selected @endif>130mm</option>`;
|
||
html1 += `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let JTSD = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(JTSD));
|
||
break;
|
||
case 'YZBK' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html1 += `<option value='1301' @if ($item->panel_style == '1301') selected @endif>一联 130</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let YZBK = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(YZBK));
|
||
break;
|
||
case 'YCWL' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let YCWL = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(YCWL));
|
||
break;
|
||
case 'UAPEX' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let UAPEX = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>推荐物流业务</option>`;
|
||
UAPEX += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>当日达 </option>`;
|
||
UAPEX += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>次晨达</option>`;
|
||
UAPEX += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>次日达 </option>`;
|
||
|
||
$("#exhelper_type").append($(UAPEX));
|
||
break;
|
||
case 'SURE' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='150mm' @if ($item->panel_style == '150mm') selected @endif>150mm</option>`;
|
||
html1 += `<option value='150' @if ($item->panel_style == '150') selected @endif>150mm(新二联)</option>`;
|
||
html1 += `<option value='180' @if ($item->panel_style == '180') selected @endif>180mm(新二联)</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let SURE = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(SURE));
|
||
break;
|
||
case 'PJ' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='120mm' @if ($item->panel_style == '120mm') selected @endif>120mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let PJ = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(PJ));
|
||
break;
|
||
case 'DBLKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let DBLKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>精准城运/卡航</option>`;
|
||
DBLKY += `<option value='2' @if ($item->exhelper_type == '2') selected @endif>精准汽运</option>`;
|
||
DBLKY += `<option value='3' @if ($item->exhelper_type == '3') selected @endif>精准空运</option>`;
|
||
DBLKY += `<option value='4' @if ($item->exhelper_type == '4') selected @endif>汽运偏线</option>`;
|
||
DBLKY += `<option value='5' @if ($item->exhelper_type == '5') selected @endif>精准大票-经济件</option>`;
|
||
DBLKY += `<option value='6' @if ($item->exhelper_type == '6') selected @endif>精准大票-标准件</option>`;
|
||
DBLKY += `<option value='20' @if ($item->exhelper_type == '20') selected @endif>精准包裹</option>`;
|
||
$("#exhelper_type").append($(DBLKY));
|
||
break;
|
||
case 'ANEKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
$("#panel_style").append($(html1));
|
||
let ANEKY = `<option value='24' @if ($item->exhelper_type == '24') selected @endif>标准快运</option>`;
|
||
ANEKY += `<option value='23' @if ($item->exhelper_type == '23') selected @endif>定时达</option>`;
|
||
ANEKY += `<option value='95' @if ($item->exhelper_type == '95') selected @endif>Mini小包</option>`;
|
||
ANEKY += `<option value='270' @if ($item->exhelper_type == '270') selected @endif>普惠达</option>`;
|
||
ANEKY += `<option value='211' @if ($item->exhelper_type == '211') selected @endif>易碎品(标准快运)</option>`;
|
||
ANEKY += `<option value='212' @if ($item->exhelper_type == '212') selected @endif>易碎品(定时达)</option>`;
|
||
ANEKY += `<option value='213' @if ($item->exhelper_type == '213') selected @endif>易碎品(Mini小包)</option>`;
|
||
|
||
$("#exhelper_type").append($(ANEKY));
|
||
break;
|
||
case 'JDKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='110mm' @if ($item->panel_style == '110mm') selected @endif>110mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let JDKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(JDKY));
|
||
break;
|
||
case 'LB' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='104mm' @if ($item->panel_style == '104mm') selected @endif>104mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let LB = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(LB));
|
||
break;
|
||
case 'CND' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let CND = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(CND));
|
||
break;
|
||
case 'HTKYKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let HTKYKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(HTKYKY));
|
||
break;
|
||
case 'ZTOKY' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='180mm' @if ($item->panel_style == '180mm') selected @endif>180mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let ZTOKY = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(ZTOKY));
|
||
break;
|
||
case 'SX' :
|
||
$('#no').parent().show();
|
||
// $('#panel_style').children().val('180mm');
|
||
// $('#panel_style').children().text('10mm');
|
||
$("#panel_style").empty();
|
||
html1 = `<option value='105mm' @if ($item->panel_style == '105mm') selected @endif>105mm</option>`;
|
||
$("#panel_style").append($(html1));
|
||
let SX = `<option value='1' @if ($item->exhelper_type == '1') selected @endif>标准快递</option>`;
|
||
$("#exhelper_type").append($(SX));
|
||
break;
|
||
}
|
||
|
||
});
|
||
</script>
|
||
@endsection
|