|
@@ -122,6 +122,14 @@
|
|
|
</#list>
|
|
|
</#if>
|
|
|
</select>
|
|
|
+ <select class="chosen" name="questionId" id="questionId" style="height: 36px;width: 132px;padding: 12px 10px 6px 15px;">
|
|
|
+ <option value="">请选择客户问题</option>
|
|
|
+ <#if (listComplaintQuestionInfo?size > 0)>
|
|
|
+ <#list listComplaintQuestionInfo as info>
|
|
|
+ <option value ="${info.questionId!}" <#if customerInfo.questionId ??><#if (customerInfo.questionId == info.questionId)>selected="selected"</#if></#if>>${info.questionName!""}</option>
|
|
|
+ </#list>
|
|
|
+ </#if>
|
|
|
+ </select>
|
|
|
<select class="my-select" name="storeId" id="storeId" style="height: 36px;width: 132px;padding: 12px 10px 6px 15px;">
|
|
|
<option value="">店铺名称</option>
|
|
|
<#if listStoreInfo?? && (listStoreInfo?size > 0) >
|
|
@@ -147,6 +155,15 @@
|
|
|
<option value="1" <#if customerInfo.detectPlaceorder??><#if customerInfo.detectPlaceorder == 1 >selected="selected"</#if></#if>>未下单</option>
|
|
|
<option value="2" <#if customerInfo.detectPlaceorder??><#if customerInfo.detectPlaceorder == 2 >selected="selected"</#if></#if>>已下单</option>
|
|
|
</select>
|
|
|
+ <select class="my-select" name="tagFlag" id="tagFlag" style="height: 36px;width: 132px;padding: 12px 10px 6px 15px;">
|
|
|
+ <option value="">旗帜状态</option>
|
|
|
+ <option value="1" <#if customerInfo.tagFlag??><#if customerInfo.tagFlag == 1 >selected="selected"</#if></#if>>红色</option>
|
|
|
+ <option value="2" <#if customerInfo.tagFlag??><#if customerInfo.tagFlag == 2 >selected="selected"</#if></#if>>黄色</option>
|
|
|
+ <option value="3" <#if customerInfo.tagFlag??><#if customerInfo.tagFlag == 3 >selected="selected"</#if></#if>>绿色</option>
|
|
|
+ <option value="4" <#if customerInfo.tagFlag??><#if customerInfo.tagFlag == 4 >selected="selected"</#if></#if>>蓝色</option>
|
|
|
+ <option value="5" <#if customerInfo.tagFlag??><#if customerInfo.tagFlag == 5 >selected="selected"</#if></#if>>紫色</option>
|
|
|
+ </select>
|
|
|
+
|
|
|
</div>
|
|
|
</form>
|
|
|
</div>
|
|
@@ -187,19 +204,19 @@
|
|
|
<td>
|
|
|
<#if customer.tagFlag??>
|
|
|
<#if customer.tagFlag == 1>
|
|
|
- <img style="width: 20px;height: 20px;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/hong.png"><br />
|
|
|
+ <img style="width: 20px;height: 20px;cursor: pointer;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/hong.png"><br />
|
|
|
</#if>
|
|
|
<#if customer.tagFlag == 2>
|
|
|
- <img style="width: 20px;height: 20px;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/huang.png"><br />
|
|
|
+ <img style="width: 20px;height: 20px;cursor: pointer;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/huang.png"><br />
|
|
|
</#if>
|
|
|
<#if customer.tagFlag == 3>
|
|
|
- <img style="width: 20px;height: 20px;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/lv.png"><br />
|
|
|
+ <img style="width: 20px;height: 20px;cursor: pointer;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/lv.png"><br />
|
|
|
</#if>
|
|
|
<#if customer.tagFlag == 4>
|
|
|
- <img style="width: 20px;height: 20px;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/lan.png"><br />
|
|
|
+ <img style="width: 20px;height: 20px;cursor: pointer;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/lan.png"><br />
|
|
|
</#if>
|
|
|
<#if customer.tagFlag == 5>
|
|
|
- <img style="width: 20px;height: 20px;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/zi.png"><br />
|
|
|
+ <img style="width: 20px;height: 20px;cursor: pointer;" title="${customer.tagDesc!''}" onclick="openLogistics('查看标记记录','${path}/admin/customer/to_tag_list?customerId=${customer.customerId!''}','570','450');" src="/common/images/cm/zi.png"><br />
|
|
|
</#if>
|
|
|
</#if>
|
|
|
|
|
@@ -874,7 +891,22 @@
|
|
|
// var val = $(this).val().replace(/\s/g, "");
|
|
|
// $(this).val(val);
|
|
|
// })
|
|
|
-
|
|
|
+ $('.chosen').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: '9%', //设置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。
|
|
|
+ });
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|