| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- ${zhiqim_manager_history("designerGroupDispatch2.htm")}
- ${request.getValidateScript()}
- ${Scripts.src("/zinc/layui/layui.js")}
- <link rel="stylesheet" href="../zinc/layui/css/layui.css"/>
- <style>
- xm-select div:not(span) {
- line-height: inherit;
- }
-
- .layui-form-select dl dd.layui-this {
- background-color: #1E9FFF;
- }
-
- </style>
- <script type="text/javascript">
- layui.config({
- base: '../zinc/module/'
- }).extend({
- xmSelect: 'xmSelect/xm-select',
- }).use(['jquery','xmSelect','form'], function () {
- var $ = layui.$;
- var xmSelect = layui.xmSelect;
- var typeList = ${typeList};
- var industryList = ${industryList};
- var groupDispatchValues = ${groupDispatchValues};
- var relatedTypeValues = {
- 0:new Array(),
- 1:new Array(),
- 2:new Array(),
- 3:new Array(),
- 4:new Array(),
- 5:new Array(),
- };
-
- $.each(groupDispatchValues,function(index,item){
- relatedTypeValues[item.relatedType].push(item.relatedValue);
- });
-
-
- $("#designerGroupDispatchUpdateForm").submit(function(){
- doSubmit(this);
- });
-
- function doSubmit(form){
- var type0 = relatedType0.getValue("value");
- $("#type0").val(JSON.stringify(type0));
- var type1 = relatedType1.getValue("value");
- $("#type1").val(JSON.stringify(type1));
- var type2 = relatedType2.getValue("value");
- $("#type2").val(JSON.stringify(type2));
- var type3 = relatedType3.getValue("value");
- $("#type3").val(JSON.stringify(type3));
- var type4 = relatedType4.getValue("value");
- $("#type4").val(JSON.stringify(type4));
- return;
- }
-
- });
- </script>
- ${zhiqim_manager_breadcrumb_parent("designerGroupDispatch2.htm" "接单配置" "修改设计师配置")}
- ${zhiqim_manager_content()}
- <form id="designerGroupDispatchUpdateForm" name="theForm" method="post" action="designerGroupDispatchUpdate2.htm" data-role="z-call-frame">
- <input name="status" type="hidden" value="${designerGroupDispatch.getStatus()}" />
- <table class="z-table z-bordered z-h50-tr z-pd10 z-lh150p z-bg-white">
- <tr class="zi-h40 z-bg-gray z-bold">
- <td colspan="2">修改设计师配置</td>
- </tr>
- <tr>
- <td width="15%">是否显示佣金:<span class="z-color-999"></span></td>
- <td class="layui-form">
- <div style="width: 200px;display: inline-block;">
- <select id="isShowCost" name="isShowCost">
- <option value="">请选择</option>
- <option <#if designerGroupDispatch.getIsShowCost()==1>selected</#if> value="1">是</option>
- <option <#if designerGroupDispatch.getIsShowCost()==0>selected</#if> value="0">否</option>
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <td width="15%">设计师:<span class="z-color-999"></span></td>
- <td>
- <input name="operatorCode" type="hidden" value="${designerGroupDispatch.getOperatorCode()}" />
- ${designerGroupDispatch.getOperatorCode()}
- </td>
- </tr>
- <tr>
- <td>独立特殊标识:<span class="z-color-999"></span></td>
- <td>
-
- <div class="z-float-left z-mg-l20 z-text-ellipsis" title="设计师表里未完成订单数量>=该值,系统派单/人工指单将会失败">
- 最大接单数量:
- <input id="maxOrderNum" name="maxOrderNum" value="${designerGroupDispatch.getMaxOrderNum()}" class="z-input z-w90 z-ime-disabled" data-options="type:Integer;" maxlength="2" />
- </div>
- <div type="hidden" class="z-float-left z-mg-l20 z-text-ellipsis" title="设计师每月可放弃的订单次数">
- <input type="hidden" id="WaiveNum" name="WaiveNum" value="${designerGroupDispatch.getWaiveNum()}" class="z-input z-w90 z-ime-disabled" maxlength="1" /><span class="z-color-red z-mg-r40"></span>
- </div>
- </td>
- </tr>
- </table>
- ${zhiqim_manager_submit()}
- </form>
- ${zhiqim_manager_content_end()}
|