123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <?php $shoname_name = D('Home/Front')->get_config_by_name('shoname'); ?>
- <title><?php echo $shoname; ?></title>
- <link rel="shortcut icon" href="" />
-
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <link rel="stylesheet" href="/layuiadmin/style/admin.css" media="all">
- <!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
- <!--[if lt IE 9]>
- <script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- <link href="./resource/css/bootstrap.min.css?v=201903260001" rel="stylesheet">
- <link href="./resource/css/common.css?v=201903260001" rel="stylesheet">
- <script type="text/javascript">
- window.sysinfo = {
- <?php if (!empty($_W['uniacid']) ){ ?>'uniacid': '{$_W['uniacid']}',<?php } ?>
- <?php if( !empty($_W['acid']) ){ ?>'acid': '{$_W['acid']}',<?php } ?>
- <?php if (!empty($_W['openid']) ) { ?>'openid': '{$_W['openid']}',<?php } ?>
- <?php if( !empty($_W['uid']) ) { ?>'uid': '{$_W['uid']}',<?php } ?>
- 'isfounder': <?php if (!empty($_W['isfounder']) ) { ?>1<?php }else{ ?>0<?php } ?>,
- 'siteroot': '{$_W['siteroot']}',
- 'siteurl': '{$_W['siteurl']}',
- 'attachurl': '{$_W['attachurl']}',
- 'attachurl_local': '{$_W['attachurl_local']}',
- 'attachurl_remote': '{$_W['attachurl_remote']}',
- 'module': {'url' : '<?php if( defined('MODULE_URL') ) { ?>{MODULE_URL}<?php } ?>', 'name' : '<?php if (defined('IN_MODULE') ) { ?>{IN_MODULE}<?php } ?>'},
- 'cookie': {'pre': ''},
- 'account': {:json_encode($_W['account'])},
- };
- </script>
-
-
- <script type="text/javascript" src="./resource/js/lib/jquery-1.11.1.min.js"></script>
- <script type="text/javascript" src="./resource/js/lib/bootstrap.min.js"></script>
- <script type="text/javascript" src="./resource/js/app/util.js?v=201903260001"></script>
- <script type="text/javascript" src="./resource/js/app/common.min.js?v=201903260001"></script>
- <script type="text/javascript" src="./resource/js/require.js?v=201903260001"></script>
- <script type="text/javascript" src="./resource/js/lib/jquery.nice-select.js?v=201903260001"></script>
- <link rel="stylesheet" href="/layuiadmin/layui/css/layui.css" media="all">
- <link href="/static/css/snailfish.css" rel="stylesheet">
- <style type="text/css">
- .img-40 {
- width: 40px;
- height: 40px;
- }
- </style>
- </head>
- <body layadmin-themealias="default">
- <div class="layui-fluid">
- <div class="layui-card">
- <div class="layui-card-header layui-elem-quote">当前位置:<span class="line-text">配送单设置</span></div>
- <div class="layui-card-body" style="padding:15px;">
- <form action="" method="post" class="layui-form" lay-filter="component-layui-form-item" enctype="multipart/form-data" >
-
- <div class="layui-form-item">
- <label class="layui-form-label">统计范围:</label>
- <div class="layui-input-block ">
- <input type="checkbox" lay-skin="primary" name="parameter[is_delivery_add]" class="form-control valid" <?php if( !empty($data) && $data['is_delivery_add'] ==1 ){ ?>checked<?php } ?> value="1" title="快递的订单" />
- <br/>
- <div class="layui-form-mid layui-word-aux">
- 勾选后,生成配送单时,将统计该团长下快递类型的订单
- </div>
- </div>
- </div>
-
- <div class="layui-form-item">
- <label class="layui-form-label">拖动排序:</label>
- <div class="layui-input-block">
- <p style="padding: 8px 0;font-weight: bold;">导出相关订单表格:</p>
- <div class="multi-img-details">
- <?php $i=1; ?>
- <?php foreach( $columns as $key => $val ){ ?>
- <label class="move_item">
- <input type="checkbox" lay-ignore name="order_index" value="{$val['field']}" class="item_input" <?php if( $val['is_check'] ==1 ){ ?>checked<?php } ?> title="" /><?php echo $val['title']; ?>
- </label>
- <?php
- if( $i % 8 == 0 )
- {
- echo '<br/><br/>';
- }
- $i++;
- ?>
- <?php } ?>
- </div>
- </div>
- </div>
-
- <div class="layui-form-item">
- <label class="layui-form-label">导出商品总单范围:</label>
- <div class="layui-input-block ">
- <input type="checkbox" lay-skin="primary" name="parameter[is_export_deliverygoods_category]" class="form-control valid" <?php if( !empty($data) && $data['is_export_deliverygoods_category'] ==1 ){ ?>checked<?php } ?> value="1" title="导出商品分类" />
- <input type="checkbox" lay-skin="primary" name="parameter[is_export_deliverygoods_supply]" class="form-control valid" <?php if( !empty($data) && $data['is_export_deliverygoods_supply'] ==1 ){ ?>checked<?php } ?> value="1" title="导出商品所属供应商" />
- <br/>
- <div class="layui-form-mid layui-word-aux">
- 配送单管理 - 导出商品总单 -是否打印 商品分类,商品所属供应商
- </div>
- </div>
- </div>
-
- <div class="layui-form-item">
- <label class="layui-form-label"> </label>
- <div class="layui-input-block">
- <input type="hidden" name="modify_explode_arr" id="modify_explode_arr" value="" />
-
- <input type="submit" value="提交" lay-submit lay-filter="formDemo" class="btn btn-primary" />
-
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script src="/layuiadmin/layui/layui.js"></script>
- <script type="text/javascript" src="/static/js/jquery-migrate-1.1.1.js"></script>
- <script src="/static/js/jquery-ui.min.js"></script>
- <script>
- layui.config({
- base: '/layuiadmin/' //静态资源所在路径
- }).extend({
- index: 'lib/index' //主入口模块
- }).use('index');
- </script>
- <script>
- var layer = layui.layer;
- var $;
- layui.use(['jquery', 'layer', 'form'], function(){
- $ = layui.$;
- var form = layui.form;
-
-
- $('#clerk_allprint,#clerk_allprint_order').click(function(){
- var searchtime = $('#searchtime').val();
-
- var start = $('input[name="time[start]"]').val();
- var end = $('input[name="time[end]"]').val();
-
- var s_url= $(this).attr('data-href');
-
- s_url += '&searchtime='+searchtime+"&start="+start+"&end="+end;
-
- window.open(s_url);
-
- //console.log( start );
- //console.log(searchtime);
- //name="time[start]"
- //time[end]
- })
-
- $('.deldom').click(function(){
- var s_url = $(this).attr('data-href');
- layer.confirm($(this).attr('data-confirm'), function(index){
- $.ajax({
- url:s_url,
- type:'post',
- dataType:'json',
- success:function(info){
-
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
-
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- })
- });
- })
-
- $('.btn-operation').click(function(){
- var ids_arr = [];
- var obj = $(this);
- var s_toggle = $(this).attr('data-toggle');
- var s_url = $(this).attr('data-href');
-
-
- $("input[name=item_checkbox]").each(function() {
-
- if( $(this).prop('checked') )
- {
- ids_arr.push( $(this).val() );
- }
- })
- if(ids_arr.length < 1)
- {
- layer.msg('请选择要操作的内容');
- }else{
- var can_sub = true;
- if( s_toggle == 'batch-remove' )
- {
- can_sub = false;
-
- layer.confirm($(obj).attr('data-confirm'), function(index){
- $.ajax({
- url:s_url,
- type:'post',
- dataType:'json',
- data:{ids:ids_arr},
- success:function(info){
-
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
-
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- })
- });
- }else{
- $.ajax({
- url:s_url,
- type:'post',
- dataType:'json',
- data:{ids:ids_arr},
- success:function(info){
-
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
-
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- })
- }
- }
- })
-
- form.on('switch(statewsitch)', function(data){
-
- var s_url = $(this).attr('data-href')
-
- var s_value = 1;
- if(data.elem.checked)
- {
- s_value = 1;
- }else{
- s_value = 0;
- }
-
- $.ajax({
- url:s_url,
- type:'post',
- dataType:'json',
- data:{value:s_value},
- success:function(info){
-
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
-
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- })
- });
- form.on('checkbox(checkboxall)', function(data){
- if(data.elem.checked)
- {
- $("input[name=item_checkbox]").each(function() {
- $(this).prop("checked", true);
- });
- $("input[name=checkall]").each(function() {
- $(this).prop("checked", true);
- });
-
- }else{
- $("input[name=item_checkbox]").each(function() {
- $(this).prop("checked", false);
- });
- $("input[name=checkall]").each(function() {
- $(this).prop("checked", false);
- });
- }
-
- form.render('checkbox');
- });
-
- //监听提交
- form.on('submit(formDemo)', function(data){
-
- var arr_box = [];
- $('.item_input').each(function() {
-
- if( $(this).is(':checked') ) {
- arr_box.push($(this).val());
- }
- });
-
-
- data.field.modify_explode_arr = arr_box;
-
-
- $.ajax({
- url: data.form.action,
- type: data.form.method,
- data: data.field,
- dataType:'json',
- success: function (info) {
-
- if(info.status == 0)
- {
- layer.msg(info.result.message,{icon: 1,time: 2000});
- }else if(info.status == 1){
- var go_url = location.href;
- if( info.result.hasOwnProperty("url") )
- {
- go_url = info.result.url;
- }
-
- layer.msg('操作成功',{time: 1000,
- end:function(){
- location.href = info.result.url;
- }
- });
- }
- }
- });
- return false;
- });
- })
- </script>
- <script>
- $(function () {
- // 拖拽时开始滚动的间距
- var scrollingSensitivity = 20
- // 拖拽时滚动速度
- let scrollingSpeed = 20
- // 拖拽前的父级节点
- let dragBeforeParentNode = null
- // 初始化拖拽函数
- $('.multi-img-details').sortable({
- // 自适应placeholder的大小
- forceHelperSize: true,
- // 拖拽时的鼠标形状
- cursor: '-webkit-grabbing',
- // 拖拽的父级节点(该节点一定要注意,配置错误会导致当前屏幕外的元素没法自动滚动拖拽,两列之间拖拽的滚动也会出问题)
- appendTo: '.layui-form-item',
- // 拖拽时的倾斜度
- rotate: '5deg',
- // 延迟时间(毫秒),避免和click同时操作时出现的冲突
- delay: 0,
-
- // 拖拽到边框出现滚动的间距,
- scrollSensitivity: scrollingSensitivity,
- // 应用于拖拽空白区域的样式
- placeholder: 'portlet-placeholder ui-state-highlight',
- // 允许拖拽预留空白区域
- forcePlaceholderSize: false,
- // 多个列表之间的拖拽的dom元素
- connectWith: '.multi-img-details',
- // 鼠标到区域则填充
- tolerance: "pointer",
- // 可以拖拽的项
- items: '.move_item',
- // 填充动画
- revert: 0,
- // 拖拽结束函数
- stop: (e, ui) => {
- // 当前拽入的元素
- let item = $(ui.item)
- // 当前拽入元素的下标
- let index = item.index()
- let kid = ''
- // xxxx 这里面可以操作数据更新
- },
- // 开始拖拽时的函数
- start: (e, ui) => {
- // 拖拽前的父级节点
- dragBeforeParentNode = ui.item[0].parentNode
- // 让placeholder和源高度一致
- ui.helper.addClass('item').width(110)
- // xxxx 这里可以记录一些拖拽前的元素属性
- },
- // 处理两列滚动条问题
- sort: function (event, ui) {
- var scrollContainer = ui.placeholder[0].parentNode
- // 设置拽入的列表的滚动位置
- var overflowOffset = $(scrollContainer).offset()
- if ((overflowOffset.top + scrollContainer.offsetHeight) - event.pageY <
- scrollingSensitivity) {
- scrollContainer.scrollTop = scrollContainer.scrollTop + scrollingSpeed
- } else if (event.pageY - overflowOffset.top < scrollingSensitivity) {
- scrollContainer.scrollTop = scrollContainer.scrollTop - scrollingSpeed
- }
- }
- }).disableSelection()
- })
- </script>
- </body>
- </html>
|