|
@@ -9,6 +9,8 @@
|
|
<link rel="Bookmark" href="/favicon.ico" >
|
|
<link rel="Bookmark" href="/favicon.ico" >
|
|
<link rel="Shortcut Icon" href="/favicon.ico" />
|
|
<link rel="Shortcut Icon" href="/favicon.ico" />
|
|
<#include "/base/add_base.ftl">
|
|
<#include "/base/add_base.ftl">
|
|
|
|
+
|
|
|
|
+
|
|
<title>订单列表</title>
|
|
<title>订单列表</title>
|
|
<style>
|
|
<style>
|
|
.tit{position: relative;text-align: left;font-size: 16px;padding-left: 10px;}
|
|
.tit{position: relative;text-align: left;font-size: 16px;padding-left: 10px;}
|
|
@@ -63,16 +65,20 @@
|
|
<form action="" method="post">
|
|
<form action="" method="post">
|
|
<div class="row cl" style="margin-left: 0px;margin-bottom: 10px;">
|
|
<div class="row cl" style="margin-left: 0px;margin-bottom: 10px;">
|
|
|
|
|
|
- <div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 280px;line-height: 29px;" >
|
|
|
|
- <select class="chosenDealerId select" name="dealerId" id="dealerId">
|
|
|
|
- <option value="">选择客户</option>
|
|
|
|
- <#if dmDealerList?? && (dmDealerList?size > 0) >
|
|
|
|
- <#list dmDealerList as dmDealer>
|
|
|
|
- <option value ="${dmDealer.dealerId!""}">${dmDealer.dealerName!""}</option>
|
|
|
|
- </#list>
|
|
|
|
- </#if>
|
|
|
|
- </select>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 220px;" >
|
|
|
|
+ <div id="store-select-1" style="width: 100%;float: left;">
|
|
|
|
+ <label>
|
|
|
|
+ <select class="chosenDealerId" name="dealerId" id="dealerId" >
|
|
|
|
+ <option value="">选择客户</option>
|
|
|
|
+ <#if dmDealerList?? && (dmDealerList?size > 0) >
|
|
|
|
+ <#list dmDealerList as dmDealer>
|
|
|
|
+ <option value ="${dmDealer.dealerId!""}">${dmDealer.dealerName!""}</option>
|
|
|
|
+ </#list>
|
|
|
|
+ </#if>
|
|
|
|
+ </select>
|
|
|
|
+ </label>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
|
|
<div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 110px;"> <span class="select-box">
|
|
<div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 110px;"> <span class="select-box">
|
|
<select name="storeId" class="select" id="storeId">
|
|
<select name="storeId" class="select" id="storeId">
|
|
@@ -101,16 +107,21 @@
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
- <div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 180px;line-height: 29px;" >
|
|
|
|
- <select class="chosenColorId select" name="colorId" id="colorId" style="width: 1000px;">
|
|
|
|
- <option value="">产品名称(颜色)</option>
|
|
|
|
- <#if productColorList?? && (productColorList?size > 0) >
|
|
|
|
- <#list productColorList as productColor>
|
|
|
|
- <option value="${productColor.colorId}">${productColor.productName}(${productColor.colorName})</option>
|
|
|
|
- </#list>
|
|
|
|
- </#if>
|
|
|
|
- </select>
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div class="formControls col-2 col-sm-2" style="padding: 0px 10px 0px 0px; width: 220px;" >
|
|
|
|
+ <div style="width: 100%;float: left;">
|
|
|
|
+ <label>
|
|
|
|
+ <select class="chosenColorId "name="colorId" id="colorId" >
|
|
|
|
+ <option value="">产品名称(颜色)</option>
|
|
|
|
+ <#if productColorList?? && (productColorList?size > 0) >
|
|
|
|
+ <#list productColorList as productColor>
|
|
|
|
+ <option value="${productColor.colorId}">${productColor.productName}(${productColor.colorName})</option>
|
|
|
|
+ </#list>
|
|
|
|
+ </#if>
|
|
|
|
+ </select>
|
|
|
|
+ </label>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@@ -344,15 +355,32 @@
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
- $('.chosenDealerId').chosen({
|
|
|
|
|
|
+// $('.chosenDealerId').chosen({
|
|
|
|
+// no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
|
|
|
+// search_contains:true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
|
|
|
|
+// allow_single_deselect:true, //单选下拉框是否允许取消选择。如果允许,选中选项会有一个x号可以删除选项
|
|
|
|
+// disable_search: false, //禁用搜索。设置为true,则无法搜索选项。
|
|
|
|
+// disable_search_threshold: 0, //当选项少等于于指定个数时禁用搜索。
|
|
|
|
+// inherit_select_classes: true, //是否继承原下拉框的样式类,此处设为继承
|
|
|
|
+// placeholder_text_single: '选择产品', //单选选择框的默认提示信息,当选项为空时会显示。如果原下拉框设置了data-placeholder,会覆盖这里的值。
|
|
|
|
+// width: '250px', //设置chosen下拉框的宽度。即使原下拉框本身设置了宽度,也会被width覆盖。
|
|
|
|
+// max_shown_results: 1000, //下拉框最大显示选项数量
|
|
|
|
+// display_disabled_options: false,
|
|
|
|
+// single_backstroke_delete: false, //false表示按两次删除键才能删除选项,true表示按一次删除键即可删除
|
|
|
|
+// case_sensitive_search: false, //搜索大小写敏感。此处设为不敏感
|
|
|
|
+// group_search: false, //选项组是否可搜。此处搜索不可搜
|
|
|
|
+// include_group_label_in_selected: true //选中选项是否显示选项分组。false不显示,true显示。默认false。
|
|
|
|
+// });
|
|
|
|
+
|
|
|
|
+ $('.chosenDealerId').chosen({
|
|
no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
|
no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
|
search_contains:true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
|
|
search_contains:true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
|
|
allow_single_deselect:true, //单选下拉框是否允许取消选择。如果允许,选中选项会有一个x号可以删除选项
|
|
allow_single_deselect:true, //单选下拉框是否允许取消选择。如果允许,选中选项会有一个x号可以删除选项
|
|
disable_search: false, //禁用搜索。设置为true,则无法搜索选项。
|
|
disable_search: false, //禁用搜索。设置为true,则无法搜索选项。
|
|
disable_search_threshold: 0, //当选项少等于于指定个数时禁用搜索。
|
|
disable_search_threshold: 0, //当选项少等于于指定个数时禁用搜索。
|
|
inherit_select_classes: true, //是否继承原下拉框的样式类,此处设为继承
|
|
inherit_select_classes: true, //是否继承原下拉框的样式类,此处设为继承
|
|
- placeholder_text_single: '选择产品', //单选选择框的默认提示信息,当选项为空时会显示。如果原下拉框设置了data-placeholder,会覆盖这里的值。
|
|
|
|
- width: '250px', //设置chosen下拉框的宽度。即使原下拉框本身设置了宽度,也会被width覆盖。
|
|
|
|
|
|
+ placeholder_text_single: '选择国家', //单选选择框的默认提示信息,当选项为空时会显示。如果原下拉框设置了data-placeholder,会覆盖这里的值。
|
|
|
|
+ width: '210px', //设置chosen下拉框的宽度。即使原下拉框本身设置了宽度,也会被width覆盖。
|
|
max_shown_results: 1000, //下拉框最大显示选项数量
|
|
max_shown_results: 1000, //下拉框最大显示选项数量
|
|
display_disabled_options: false,
|
|
display_disabled_options: false,
|
|
single_backstroke_delete: false, //false表示按两次删除键才能删除选项,true表示按一次删除键即可删除
|
|
single_backstroke_delete: false, //false表示按两次删除键才能删除选项,true表示按一次删除键即可删除
|
|
@@ -360,6 +388,7 @@
|
|
group_search: false, //选项组是否可搜。此处搜索不可搜
|
|
group_search: false, //选项组是否可搜。此处搜索不可搜
|
|
include_group_label_in_selected: true //选中选项是否显示选项分组。false不显示,true显示。默认false。
|
|
include_group_label_in_selected: true //选中选项是否显示选项分组。false不显示,true显示。默认false。
|
|
});
|
|
});
|
|
|
|
+
|
|
$('.chosenColorId').chosen({
|
|
$('.chosenColorId').chosen({
|
|
no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
|
no_results_text: "没有找到结果!",//搜索无结果时显示的提示
|
|
search_contains:true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
|
|
search_contains:true, //关键字模糊搜索。设置为true,只要选项包含搜索词就会显示;设置为false,则要求从选项开头开始匹配
|
|
@@ -368,7 +397,7 @@
|
|
disable_search_threshold: 0, //当选项少等于于指定个数时禁用搜索。
|
|
disable_search_threshold: 0, //当选项少等于于指定个数时禁用搜索。
|
|
inherit_select_classes: true, //是否继承原下拉框的样式类,此处设为继承
|
|
inherit_select_classes: true, //是否继承原下拉框的样式类,此处设为继承
|
|
placeholder_text_single: '选择产品', //单选选择框的默认提示信息,当选项为空时会显示。如果原下拉框设置了data-placeholder,会覆盖这里的值。
|
|
placeholder_text_single: '选择产品', //单选选择框的默认提示信息,当选项为空时会显示。如果原下拉框设置了data-placeholder,会覆盖这里的值。
|
|
- width: '350px', //设置chosen下拉框的宽度。即使原下拉框本身设置了宽度,也会被width覆盖。
|
|
|
|
|
|
+ width: '210px', //设置chosen下拉框的宽度。即使原下拉框本身设置了宽度,也会被width覆盖。
|
|
max_shown_results: 1000, //下拉框最大显示选项数量
|
|
max_shown_results: 1000, //下拉框最大显示选项数量
|
|
display_disabled_options: false,
|
|
display_disabled_options: false,
|
|
single_backstroke_delete: false, //false表示按两次删除键才能删除选项,true表示按一次删除键即可删除
|
|
single_backstroke_delete: false, //false表示按两次删除键才能删除选项,true表示按一次删除键即可删除
|