|
@@ -1,3 +1,4 @@
|
|
|
|
+<%@ taglib prefix="input" uri="/struts-tags" %>
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ include file="/WEB-INF/views/include/taglib.jsp" %>
|
|
<%@ include file="/WEB-INF/views/include/taglib.jsp" %>
|
|
<html>
|
|
<html>
|
|
@@ -123,6 +124,7 @@
|
|
<form:input path="splitCodes[${varIndex.index}].codeRemark" id="paramsContent"
|
|
<form:input path="splitCodes[${varIndex.index}].codeRemark" id="paramsContent"
|
|
maxlength="15" placeholder="请输入账户备注"
|
|
maxlength="15" placeholder="请输入账户备注"
|
|
class="input-small"/>
|
|
class="input-small"/>
|
|
|
|
+ <input name="splitCodes[${varIndex.index}].weChatFlag" type="checkbox" ${item.weChatFlag eq 1 ? 'checked':''} value="1">已确认微信支付开户意愿</input>
|
|
<span type="button" style="cursor: pointer;color: #0B61A4"
|
|
<span type="button" style="cursor: pointer;color: #0B61A4"
|
|
onclick="deleteParams(this)">删除</span>
|
|
onclick="deleteParams(this)">删除</span>
|
|
</div>
|
|
</div>
|
|
@@ -153,6 +155,7 @@
|
|
html += ' <input name="splitCodes[' + [productParametersIndex] + '].splitCode" id="splitCode" maxlength="15" placeholder="请输入分帐商户号" type="text" class="input-small"/> ';
|
|
html += ' <input name="splitCodes[' + [productParametersIndex] + '].splitCode" id="splitCode" maxlength="15" placeholder="请输入分帐商户号" type="text" class="input-small"/> ';
|
|
html += '<input name="splitCodes[' + [productParametersIndex] + '].email" id="email" maxlength="15" placeholder="请输入对应邮箱号" type="text" class="input-small"/> ';
|
|
html += '<input name="splitCodes[' + [productParametersIndex] + '].email" id="email" maxlength="15" placeholder="请输入对应邮箱号" type="text" class="input-small"/> ';
|
|
html += '<input name="splitCodes[' + [productParametersIndex] + '].codeRemark" id="codeRemark" maxlength="15" placeholder="请输入账户备注" type="text" class="input-small"/> ';
|
|
html += '<input name="splitCodes[' + [productParametersIndex] + '].codeRemark" id="codeRemark" maxlength="15" placeholder="请输入账户备注" type="text" class="input-small"/> ';
|
|
|
|
+ html += '<input name="splitCodes[' + [productParametersIndex] + '].weChatFlag" id="weChatFlag" type="checkbox" class="input-small" value="1">已确认微信支付开户意愿</input> ';
|
|
html += '<span type="button" style="cursor: pointer;color: #0B61A4" onclick="deleteParams(this)"">删除</span>';
|
|
html += '<span type="button" style="cursor: pointer;color: #0B61A4" onclick="deleteParams(this)"">删除</span>';
|
|
html += '</div>';
|
|
html += '</div>';
|
|
$("#addParamsItems").append(html).show();
|
|
$("#addParamsItems").append(html).show();
|