作者 anyv
1 个管道 的构建 通过 耗费 30 秒

56

... ... @@ -71,10 +71,10 @@
<input type="text" id="end_time" value="" placeholder="请输入结束配送时间"/>
</div>
</div>-->
<div class="log_three_model_one logistic">
<div class="log_three_model_one logistic excompany">
<div class="log_three_model_left">选择快递</div>
<div class="log_psong log_psong_select">
<div class="log_ps_title">请选择快递公司</div>
<div class="log_ps_title excompany_word">请选择快递公司</div>
<div class="log_ps_img">
<img src="__TMPL__/public/assets/images/29.png"/>
<input type="hidden" id="logistic_name" placeholder="请选择快递公司"/>
... ... @@ -94,31 +94,31 @@
</div>
</div>
<!--选择快递-->
<div class="tx_mask_kuaidi">
<div class="tx_maskCon_school">
<div class="three_model_school">
<div class="three_model_school_title">
选择快递
</div>
<div>
<div class="three_model_school_data" style="display: block;">
<div class="three_model_school_name" data-name="SF">顺丰快递</div>
<div class="three_model_school_name" data-name="YTO">圆通快递</div>
<div class="three_model_school_name" data-name="ZTO">中通快递</div>
<div class="three_model_school_name there_unActive" data-name="STO">申通快递</div>
<div class="three_model_school_name" data-name="YD">韵达快递</div>
<div class="three_model_school_name" data-name="HHTT">天天快递</div>
<div class="three_model_school_name" data-name="HTKY">百世快递</div>
<div class="three_model_school_name" data-name="YZPY">邮政快递包裹</div>
<div class="three_model_school_name" data-name="EMS">EMS</div>
<div class="three_model_school_name" data-name="DBL">德邦快递</div>
<div class="three_model_school_name" data-name="ZJS">宅急送</div>
<div class="three_model_school_name" data-name="TNT">TNT快递</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="tx_mask_kuaidi">-->
<!--<div class="tx_maskCon_school">-->
<!--<div class="three_model_school">-->
<!--<div class="three_model_school_title">-->
<!--选择快递-->
<!--</div>-->
<!--<div>-->
<!--<div class="three_model_school_data" style="display: block;">-->
<!--<div class="three_model_school_name" data-name="SF">顺丰快递</div>-->
<!--<div class="three_model_school_name" data-name="YTO">圆通快递</div>-->
<!--<div class="three_model_school_name" data-name="ZTO">中通快递</div>-->
<!--<div class="three_model_school_name there_unActive" data-name="STO">申通快递</div>-->
<!--<div class="three_model_school_name" data-name="YD">韵达快递</div>-->
<!--<div class="three_model_school_name" data-name="HHTT">天天快递</div>-->
<!--<div class="three_model_school_name" data-name="HTKY">百世快递</div>-->
<!--<div class="three_model_school_name" data-name="YZPY">邮政快递包裹</div>-->
<!--<div class="three_model_school_name" data-name="EMS">EMS</div>-->
<!--<div class="three_model_school_name" data-name="DBL">德邦快递</div>-->
<!--<div class="three_model_school_name" data-name="ZJS">宅急送</div>-->
<!--<div class="three_model_school_name" data-name="TNT">TNT快递</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->
<!-- 地址信息 -->
<div class="log_four_input">
<div class="log_four_input_title" style="margin-bottom: 0.2rem;">
... ... @@ -286,6 +286,58 @@
<script src="__TMPL__/public/assets/js/mui.picker.min.js"></script>
<script src="__TMPL__/public/assets/js/city.data-3.js"></script>
<script>
var excompanypicker = new mui.PopPicker();
excompanypicker.setData([{
value: 'SF',
text: '顺丰快递'
}, {
value: 'YTO',
text: '圆通快递'
}, {
value: 'ZTO',
text: '中通快递'
}, {
value: 'STO',
text: '申通快递'
}, {
value: 'YD',
text: '韵达快递'
}, {
value: 'HHTT',
text: '天天快递'
}, {
value: 'HTKY',
text: '百世快递'
}, {
value: 'YZPY',
text: '邮政快递包裹'
}, {
value: 'EMS',
text: 'EMS'
}, {
value: 'DBL',
text: '德邦快递'
}, {
value: 'ZJS',
text: '宅急送'
}, {
value: 'TNT',
text: 'TNT快递'
}]);
var excompany_word
$(".excompany").click(function () {
excompanypicker.show(function (e) {
console.log(e, '3333')
console.log(e[0].value);
console.log(e[0].text);
school_name = e[0].value
$(".excompany_word").text(e[0].text);
$("#logistic_name").val(e[0].value);
$('.excompany_word').css('color', '#333333');
});
})
</script>
<script>
function zZFun(e) {
window.event ? (window.event.cancelBubble = true) : e.stopPropagation();
}
... ... @@ -388,9 +440,9 @@
</script>
<script>
var dtpicker = new mui.DtPicker({
type: "datetime", //设置日历初始视图模式
type: "date", //设置日历初始视图模式
beginDate: new Date(), //设置开始日期
labels: ['年', '月', '日', '时', '分', '秒'], //设置默认标签区域提示语
labels: ['年', '月', '日'], //设置默认标签区域提示语
})
//统一配送选择时间
$(".tongyi_start_time").click(function () {
... ...