提交 9e12fcb5 authored 作者: 王子杰's avatar 王子杰

需求编号:

需求名称:
修改内容:首次提交
上级 d868966a
<@com.html title="404 错误页面 - 不动产登记信息基础平台" import="ace">
<style>
.center {
text-align: center !important;
}
.error-container {
margin-top: 100px;
}
</style>
<div class="main-container" id="main-container">
<div class="page-content">
<div class="row">
<div class="col-xs-12">
<div class="error-container">
<div class="center">
<div>
<h1 class="grey lighter smaller">
<span class="blue bigger-125">
<i class="ace-icon fa fa-sitemap"></i>
404
</span>
抱歉,您访问的页面没有找到!
</h1>
</div>
<div class="space"></div>
<div>
<div class="space"></div>
<h4 class="smaller">请尝试以下方式解决问题:检查访问的URL地址是否正确或联系系统管理员</h4>
</div>
<div class="space"></div>
<div class="center">
<a href="/portal" class="btn btn-primary">
<i class="ace-icon fa fa-arrow-left"></i>
首 页
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</@com.html>
<@com.html title="500 错误页面 - 不动产登记信息基础平台" import="ace">
<style>
.center {
text-align: center !important;
}
.error-container {
margin-top: 100px;
}
</style>
<div class="main-container" id="main-container">
<div class="page-content">
<div class="row">
<div class="col-xs-12">
<div class="error-container">
<div class="center">
<div>
<h1 class="grey lighter smaller">
<span class="blue bigger-125">
<i class="ace-icon fa fa-random"></i>
500
</span>
抱歉,您访问的页面发生错误!
</h1>
</div>
<div class="space"></div>
<div>
<div class="space"></div>
<h4 class="smaller">请联系系统管理员,我们将尽快解决</h4>
</div>
<div class="space"></div>
<div class="center">
<a href="/portal" class="btn btn-primary">
<i class="ace-icon fa fa-arrow-left"></i>
首 页
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</@com.html>
<script type="text/javascript">
var _refresh = false;
$(function () {
var authorUrl = '${configUrl!}/author?rid=${rid!}';
authorPage(authorUrl, "formBody")
});
function authorPage(authorUrl, form) {
$.getJSON(
authorUrl,
null,
function (data) {
if (data) {
//按照名称控制权限
enableControlsName(form, data);
//按照id控制权限
enableControlsTd(form, data);
//控制butoon和超链接a的权限
enableControlsType(form, data);
}
}
);
}
function author(frameObj) {
if (_refresh) {
authorPage();
}
_refresh = true;
}
function disableAllControl(form) {
$("body").contents().find("input").attr('readonly', 'true');
$("body").contents().find("select").attr('disabled', 'true');
$("body").contents().find("textarea").attr('readonly', 'true');
}
function readOnlyAllControl(form) {
$("body").contents().find("input").each(function () {
$(this).attr("onfocus");
var type = $(this)[0].type;
$(this).attr('readonly', 'true');
});
$("body").contents().find("select").attr('disabled', 'true');
$("body").contents().find("button").attr('disabled', 'true');
$("body").contents().find("a").attr('onclick');
$("body").contents().find("textarea").attr('readonly', 'true');
$("body").contents().find("img[dojoAttachEvent*='onclick']").each(function () {
$(this).attr('disabled', 'true');
});
$("body").contents().find("input[type='button']").attr('disabled', 'true');
$("body").contents().find("input[type='radio']").attr('disabled', 'true');
//$("#frameMain").contents().find("div").attr('disabled','true');
$("body").contents().find("div").attr("onmouseover");
$("body").contents().find("div").attr("onmouseout");
$("body").contents().find("div").attr("onclick");
}
function distableControlsName(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
$("body").contents().find($("[name='" + elementId + "']")).each(function () {
var type = $(this)[0].type;
var tagName = $(this)[0].tagName;
var className = $(this)[0].className;
//struts datecontrol
if (jQuery.nodeName(this, "span")) {
$(this).children().each(function () {
if ($(this).attr('dojoAttachEvent') == 'onclick:onIconClick') {
$(this).attr('disabled', 'true');
} else {
$(this).attr('readonly', 'true');
$(this).attr("onfocus");
}
});
} else {
if (tagName == "INPUT" && (type == "text" || type == "password") || type == "textarea") {
$(this).attr('readonly', 'true');
$(this).attr("onfocus");
if (className != null && className != '' && className.indexOf("date-picker") > -1) {
$(this).attr('type', '');
$(this).attr('disabled', 'true');
}
} else if (tagName == "SELECT") {
$(this).parent().append('<input type="hidden" name="' + $(this).attr("name") + '" id="' + $(this).attr("id") + '" value="' + $(this).attr("value") + '"/>');
$(this).attr('disabled', 'true');
} else {
$(this).attr('disabled', 'true');
}
}
});
}
}
function enableControlsName(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
// $("body").contents().find($("[name='"+elementId+"']")).attr('disabled');
// $("body").contents().find($("[name='"+elementId+"']")).attr("readonly");
$("body").contents().find($("[name='" + elementId + "']")).hide();
}
}
function enableControlsTd(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
// $("body").contents().find($("[id='"+elementId+"']")).attr({"disabled":"disabled"});
// $("body").contents().find($("[id='"+elementId+"']")).attr({"readonly":"readonly"});
// $("body").contents().find($("[id='"+elementId+"']")).unbind("click");
$("body").contents().find($("[id='" + elementId + "']")).hide();
}
}
function distableControlsId(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
$("body").contents().find($("[id^='" + elementId + "']")).each(function () {
var type = $(this)[0].type;
var tagName = $(this)[0].tagName;
var className = $(this)[0].className;
//struts datecontrol
if (jQuery.nodeName(this, "span")) {
$(this).children().each(function () {
if ($(this).attr('dojoAttachEvent') == 'onclick:onIconClick') {
$(this).attr('disabled', 'true');
} else {
$(this).attr('readonly', 'true');
$(this).attr("onfocus");
}
});
} else {
if (tagName == "INPUT" && (type == "text" || type == "password") || type == "textarea") {
$(this).attr('readonly', 'true');
$(this).attr("onfocus");
if (className != null && className != '' && className.indexOf("date-picker") > -1) {
$(this).attr('type', '');
$(this).attr('disabled', 'true');
}
} else if (tagName == "SELECT") {
$(this).parent().append('<input type="hidden" name="' + $(this).attr("name") + '" id="' + $(this).attr("id") + '" value="' + $(this).attr("value") + '"/>');
$(this).attr('disabled', 'true');
} else {
$(this).attr('disabled', 'true');
}
}
});
}
}
function enableControlsType(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
$("body").contents().find($(":button")).each(function () {
var textvalue = $(this).text();
if (textvalue != null && textvalue != "" && textvalue != undefined && elementId == textvalue) {
$(this).attr('disabled', 'false');
}
});
$("body").contents().find($("a")).each(function () {
var textvalue = $(this).text();
console.log(textvalue);
if (textvalue != null && textvalue != "" && textvalue != undefined && elementId == textvalue) {
$(this).attr("onclick");
}
});
}
}
function distableControlsType(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i].elementId;
$("body").contents().find($(":button")).each(function () {
var textvalue = $(this).text();
if (textvalue != null && textvalue != "" && textvalue != undefined && elementId == textvalue) {
$(this).attr('disabled', 'true');
}
});
$("body").contents().find($("a")).each(function () {
var textvalue = $(this).attr("id");
if (textvalue != null && textvalue != "" && textvalue != undefined && elementId == textvalue) {
$(this).attr("onclick");
}
});
}
}
</script>
\ No newline at end of file
差异被折叠。
<@com.html title="提示" import="bui">
<h1>${msg!}</h1>
</@com.html>
<#macro contentDiv title="" width="">
<div id="formBody" class="formBody" style="<#if width?? && width!="">width:${width!}px</#if> ">
<div class="firstTitle">${title!}</div>
<div class="page-content">
<#nested/>
</div>
</div>
</#macro>
<#--form表单-->
<#macro form id="" name="" action="" method="">
<script type="text/javascript">
function formClickEvent(fn, args) {
fn.apply(this, args);
}
</script>
<form class="UItable" id="${id!}" name="${name!}" <#if action!="">action="${action!}"</#if>>
<#nested/>
</form>
</#macro>
<#--form表单中secondTitle-->
<#macro secondDiv id="" name="" action="" method="">
<#nested/>
</#macro>
<#--form表格-->
<#macro table id="" name="" style="">
<table cellpadding="0" cellspacing="0" border="0" class="tableA" id="${id!}" name="${name!}" style="${style!}">
<tbody>
<#nested/>
</tbody>
</table>
</#macro>
<#macro tr style="" id="" name="">
<tr style="${style!}" id="${id!}" name="${name!}">
<#nested/>
</tr>
</#macro>
<#macro th id="" name="" style="" width="" height="" colspan="" rowspan="" class="" >
<th id="${id!}" name="${name!}" style="${style!}" width="<#if width?? && width!="">${width!}</#if>"
height="${height!}" colspan="${colspan!}" rowspan="${rowspan!}" class="<#if class?? &&class!=""> ${class}</#if>">
<#nested/>
</th>
</#macro>
<#macro td id="" name="" style="" width="" height="" colspan="" rowspan="" class="">
<td id="${id!}" name="${name!}" style="${style!}" width="<#if width?? && width!="">${width!}</#if>"
height="${height!}" colspan="${colspan!}" rowspan="${rowspan!}" class="<#if class?? &&class!=""> ${class}</#if>">
<#nested/>
</td>
</#macro>
<#--form表单label-->
<#macro label name="" style="" class=""><label style="${style!}" class="${class!}">${name!}</label></#macro>
<#--form表单输入框-->
<#macro text id="" name="" value="" style="" readonly="" required="">
<input style="${style!}" type="text" id="${id!}" name="${name!}" value="${value!}"
width="100%" <#if readonly?? && readonly!=""> readonly="true"</#if><#if required?? && required!=""> required</#if>>
</#macro>
<#--form表单radio-->
<#macro radio id="" name="" style="" valueFieldName="" defaultValue="" saveValue="">
<input style="${style!}" type="radio" id="${id!}" name="${name!}" value="${valueFieldName!}"
<#if valueFieldName==saveValue>checked="checked"<#elseif valueFieldName==defaultValue>checked="checked"</#if>>
<label><#nested/></label>
</#macro>
<#--form表单下拉框-->
<#macro select id="" name="" style="" showFieldName="" valueFieldName="" source="" defaultValue="" handler="" noEmptyValue="" displayDefault="" disabled="">
<#assign txt="{'source':${source}}" />
<#assign json=txt?eval />
<select id="${id!}" name="${name!}" style="${style!}" class="select"
<#if handler??&&handler!="" >onchange="formClickEvent(${handler!},[])"</#if> <#if disabled?? && disabled!="">
disabled="true"</#if>>
<#if noEmptyValue!="true">
<option value=""></option>
</#if>
<#if displayDefault =="true">
<#if defaultValue?? && defaultValue !="">
<option value="${defaultValue!}" selected="selected">${defaultValue!}</option>
</#if>
</#if>
<#list json.source as item>
<option value="${item["${valueFieldName?if_exists}"]}" <#if item["${valueFieldName?if_exists}"]==defaultValue>
selected="selected" </#if>>${item["${showFieldName?if_exists}"]}</option>
</#list>
</select>
</#macro>
<#--form表单input隐藏域-->
<#macro hidden id="" name="" value="">
<input type="hidden" id="${id!}" name="${name!}" value="${value!}">
</#macro>
<#--form表单按钮-->
<#macro buttons >
<div class="simpleSearch" style="text-align: left;">
<#nested/>
</div>
</#macro>
<#macro button id="" name="" handler="" type="" text="" iClass="" class="">
<button name="${name!}" id="${id!}" type="<#if type?? && type!="">${type!}<#else>button</#if>"
onclick="formClickEvent(eval('${handler!}'),[])"
class="<#if class?? && class!="">${class!}<#else>btn btn-primary save</#if>">
<#if iClass?? && iClass!=""><i class="${iClass!}"></i></#if>
<span>${text!}</span>
</button>
</#macro>
<#macro textarea id="" name="" style="" class="" cols="" rows="3" value="" readonly="">
<textarea name="${name!}" id="${id!}" <#if style!=""> style="${style}"</#if>
class="textarea<#if class!=""> ${class}</#if>"<#if cols!=""> cols="${cols}"</#if><#if rows!="">
rows="${rows}"</#if><#if readonly?? && readonly!=""> readonly="true"</#if>
value="${value!}">${value!} </textarea>
</#macro>
<#macro date id="" name="" style="" value="" disabled="">
<span class="input-icon date">
<input type="text" class="date-picker form-control" id="${id!}" name="${name!}"
data-date-format="yyyy-mm-dd" <#if style!=""> style="${style}"</#if> value="${value!}"
<#if disabled?? && disabled!="">
disabled="disabled"</#if>>
<i class="ace-icon fa fa-calendar"></i>
</span>
<script type="text/javascript">
//时间控件
$('.date-picker').datepicker({
autoclose: true,
todayHighlight: true,
language: 'zh-CN'
}).next().on(ace.click_event, function () {
$(this).prev().focus();
});
</script>
</#macro>
<#--签名图片-->
<#macro img src="" width="" height=""signId="" style="">
<#if signId=="">
<img src="" width="${width!}" height="${height!}" style="display: none"/>
<#else >
<img src="${src!}" width="${width!}" height="${height!}"/>
</#if>
</#macro>
差异被折叠。
差异被折叠。
<script type="text/javascript">
$(function () {
$("#formBody").validate();
var name = document.title;
var authorUrl = '${configUrl!}/limitField/getLimitFiled?name=' + encodeURI(name);
limitPage(authorUrl, "formBody");
});
function limitPage(authorUrl, form) {
$.getJSON(
authorUrl,
null,
function (data) {
if (data) {
//按照名称控制权限
setLimitField(form, data);
}
}
);
}
function setLimitField(form, data) {
for (var i = 0; i < data.length; i++) {
var elementId = data[i];
$("body").contents().find($("[name='" + elementId + "']")).attr('required', 'true').css('background-color', '#FFF0AC');
$("body").contents().find($("[name='combo_" + elementId + "']")).attr('required', 'true').css('background-color', '#FFF0AC');
}
}
function limitCurrentPage() {
$("#formBody").validate();
var name = document.title;
var authorUrl = configUrl + '/limitField/getLimitFiled?name=' + encodeURI(name);
limitPage(authorUrl, "formBody");
}
</script>
\ No newline at end of file
<#macro page url="" currentPage="" totalPage="" pageSize="" hideGoPageBtn="">
<div class="pagination PagingCombination tablePagination">
<ul>
<li><a href="#" class="button" onclick="gotoPage(1)"><<</a></li>
<li><a href="#" class="button" onclick="gotoPage(${currentPage?number-1})"> < </a></li>
<li>当前第 <input class="ui-pg-input" type="text" size="2" maxlength="7" value="${currentPage!}" role="textbox"> 页,
共${totalPage!}页
</li>
<li><a href="#" class="button" onclick="gotoPage(${currentPage?number+1})"> > </a></li>
<li><a href="#" class="button" onclick="gotoPage(${totalPage?number})">>></a></li>
<#if hideGoPageBtn!="true">
<li>跳转到第
<select class="ui-pg-selbox" onchange="changePage()" id="currentPage" name="currentPage">
<#list 1..totalPage?number as t>
<option role="option" value="${t!}"
<#if currentPage?number==t>selected="selected" </#if>>${t!}</option>
</#list>
</select>
</li>
</#if>
</ul>
</div>
<script type="text/javascript">
function getUrl(url) {
if (url == null || url == "")
url = location.href;
var pageTag = 'currentPage';
var prefix;
if (url.indexOf('?') > -1 && url.indexOf(pageTag) == -1) {
prefix = url + '&';
} else if (url.indexOf(pageTag) > -1) {
prefix = url.substring(0, url.indexOf(pageTag));
} else {
prefix = '?';
}
return prefix;
}
<#--document.onkeydown = function(e){-->
<#--if(!e) e = window.event;//火狐中是 window.event-->
<#--if((e.keyCode || e.which) == 13){-->
<#--var currentPage=$('#currentPage').val();-->
<#--if(currentPage>${totalPage!})-->
<#--currentPage=1;-->
<#--var url=getUrl("${url!}");-->
<#--url=url+"currentPage="+currentPage;-->
<#--window.location.href=url;-->
<#--}-->
<#--}-->
function changePage() {
var currentPage = $('#currentPage').val();
if (currentPage >${totalPage!})
currentPage = 1;
var url = getUrl("${url!}");
url = url + "currentPage=" + currentPage;
window.location.href = url;
}
function gotoPage(currentPage) {
var url = "";
if (currentPage >${totalPage!})
currentPage = 1;
if (currentPage < 1)
currentPage = 1;
url = getUrl("${url!}");
url = url + "currentPage=" + currentPage;
window.location.href = url;
}
</script>
</#macro>
\ No newline at end of file
<#macro sign signdivId="" disabled="" signKey="" proId="" userId="" signId="" signName="">
<input id="${signdivId!}" name="${signdivId!}" value="${signName!}" type="hidden"/>
<input id="${signdivId!}Sign" name="${signdivId!}Sign" type="hidden" value="${signId!}"/>
<div class="signatureTd ">
<#if signId=="">
<img src="" id="${signdivId!}SignImg" alt="" class="signImg" onclick="showImgDiv('${signdivId!}')"/>
<div id="${signdivId!}Div" style="width:20px;float: right;" class="signatureTd unSign"
onclick="showImgDiv('${signdivId!}')"></div>
<#else >
<img src="${platformUrl!}/tag/signtag!image.action?signVo.signId=${signId!}" id="${signdivId!}SignImg" alt=""
class="signImg" onclick="showImgDiv('${signdivId!}')"/>
<div id="${signdivId!}Div" style="width:20px;float: right;" class="signatureTd sign"
onclick="removeSign('${signdivId!}')"></div>
</#if>
<div id="${signdivId!}Div1" class="signatureContent" style="width: 160px;">
<div class="signaturePopUp">
<div class="popover fade bottom in" id="${signdivId!}SignDiv" style="display: none">
<div class="arrow"></div>
<div>
<img id="${signdivId!}SignDivImg"
src="${platformUrl!}/tag/signtag!image.action?signVo.signId=${userId!}" alt=""
style="width: 252px;height: 139px;"/>
<div class="signaturePrimary">
<button class="btn btn-mini btn-primary" type="button" onclick="sign('${signdivId!}')">确定
</button>
<button class="btn btn-mini" type="button" onclick="hideImgDiv('${signdivId!}')">取消</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function showImgDiv(id) {
$("#" + id + "SignDiv").show();
}
function hideImgDiv(id) {
$("#" + id + "SignDiv").hide();
}
function sign(id) {
var signId = $("#" + id + "Sign").val();
$.ajax({
type: 'get',
url: '${bdcdjUrl}/bdcSpb/sign',
data: {proid: "${proId!}", signId: signId, userId: "${userId!}", signdivId: id},
success: function (data) {
if (data != null && data.indexOf("#") > -1) {
var signName = data.substring(0, data.indexOf("#"));
var signId1 = data.substring(data.indexOf("#") + 1, data.length);
$("#" + id).val(signName);
$("#" + id + "Sign").val(signId1);
if (signId1 == "")
signId1 = "${userId!}";
$("#" + id + "SignImg").attr("src", "${platformUrl!}/tag/signtag!image.action?signVo.signId=" + signId1);
hideImgDiv(id);
$("#" + id + "Div").removeClass().addClass("signatureTd sign");
}
},
error: function (_ex) {
}
});
}
function removeSign(id) {
var signId = $("#" + id + "Sign").val();
$.ajax({
type: 'get',
url: '${bdcdjUrl}/bdcSpb/removeSign',
data: {proid: "${proId!}", signId: signId, userId: "${userId!}", signdivId: id},
success: function (data) {
$("#" + id).val("");
$("#" + id + "Sign").val("");
$("#" + id + "SignImg").attr("src", "");
hideImgDiv(id);
$("#" + id + "Div").removeClass().addClass("signatureTd unSign");
},
error: function (_ex) {
}
});
}
</script>
</#macro>
<@com.html title="数据管理界面" import="ace,public">
<style type="text/css">
* {
background-color: #ffffff;
}
.vertical-tab {
float: left;
overflow: auto;
width: 15%;
}
.vertical-tab > li {
text-align: center;
}
.vertical-tab > li.active > a, .vertical-tab > li.active > a:focus, .vertical-tab > li.active > a:hover {
border: solid #ccc;
border-width: 1px 0px 1px 1px;
background-color: #ffffff;
border-right: 1px solid #ffffff;
z-index: 2;
}
.vertical-tab > li > a {
border-radius: 4px 0px 0px 4px;
}
.vertical-tab-content {
float: left;
padding: 5px;
margin-left: -1px;
margin-bottom: 2px;
border-radius: 4px 4px 4px 4px;
border: solid 1px #ccc;
color: #666;
overflow: auto;
width: 80%;
height: 80%;
}
.btn-info, .btn-warn {
padding: 0;
width: 4%;
margin-left: 2%;
margin-bottom: 1%;
}
</style>
<script type="text/javascript">
var browserVersion = window.navigator.userAgent.toUpperCase();
var isOpera = browserVersion.indexOf("OPERA") > -1 ? true : false;
var isFireFox = browserVersion.indexOf("FIREFOX") > -1 ? true : false;
var isChrome = browserVersion.indexOf("CHROME") > -1 ? true : false;
var isSafari = browserVersion.indexOf("SAFARI") > -1 ? true : false;
var isIE = (!!window.ActiveXObject || "ActiveXObject" in window);
var isIE9More = (!-[1,] == false);
function reinitIframe(iframeId, minHeight) {
try {
var iframe = document.getElementById(iframeId);
var bHeight = 0;
if (isChrome == false && isSafari == false)
bHeight = iframe.contentWindow.document.body.scrollHeight;
var dHeight = 0;
if (isFireFox == true)
dHeight = iframe.contentWindow.document.documentElement.offsetHeight + 2;
else if (isIE == false && isOpera == false)
dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
else if (isIE == true && isIE9More) {//ie9+
var heightDeviation = bHeight - eval("window.IE9MoreRealHeight" + iframeId);
if (heightDeviation == 0) {
bHeight += 3;
} else if (heightDeviation != 3) {
eval("window.IE9MoreRealHeight" + iframeId + "=" + bHeight);
bHeight += 3;
}
}
else//ie[6-8]、OPERA
bHeight += 3;
var height = Math.max(bHeight, dHeight);
if (height < minHeight) height = minHeight;
iframe.style.height = height + "px";
} catch (ex) {
}
}
function startInit(iframeId, minHeight) {
eval("window.IE9MoreRealHeight" + iframeId + "=0");
window.setInterval("reinitIframe('" + iframeId + "'," + minHeight + ")", 100);
}
function openIframe(iframeName, url) {
$("#" + iframeName).attr("src", url);
startInit(iframeName, 850);
}
$(function () {
$('#vtab li').click(function () {
tops = $(this).offset().top - $('#vtab').offset().top + $('#vtab').scrollTop() - $('#vtab').height() / 4;
$('#vtab').animate({
scrollTop: tops
}, 'slow');
});
$($("#vtab").children("li").get(0)).children("a").get(0).click();
});
</script>
<div>
<!-- Nav tabs -->
<ul class="nav nav-tab vertical-tab" role="tablist" id="vtab">
<li role="presentation">
<a href="#dataInfo" aria-controls="xmxx" role="tab"
data-toggle="tab" onclick="openIframe('iframe','${xmxxUrl!}')">项目基本信息</a>
</li>
<li role="presentation">
<a href="#dataInfo" aria-controls="qldjxx" role="tab"
data-toggle="tab" onclick="openIframe('iframe','${qldjxxUrl!}')">权利登记信息</a>
</li>
<li role="presentation">
<a href="#dataInfo" aria-controls="ryxx" role="tab"
data-toggle="tab" onclick="openIframe('iframe','${ryxxUrl!}')">权利人信息</a>
</li>
<#if '${qllx}' != '21'>
<li role="presentation">
<a href="#dataInfo" aria-controls="bdcqzsmxx" role="tab"
data-toggle="tab" onclick="openIframe('iframe','${bdcqzsmxxUrl!}')">不动产权证书(明)信息</a>
</li>
</#if>
</ul>
<!-- Tab panes -->
<div class="tab-content vertical-tab-content">
<div role="tabpanel" class="tab-pane active" id="dataInfo">
<iframe id="iframe" name="iframe" scrolling="auto" src=""
frameborder="0" style="padding: 0px; width: 100%; height: 100%;"></iframe>
</div>
</div>
</div>
<div class="modal-backdrop fade in Pop" style="display:none" id="modal-backdrop"></div>
<#--无用div 防止ace报错-->
<div id="navbar" class="navbar navbar-default" hidden="hidden"></div>
</@com.html>
\ No newline at end of file
差异被折叠。
差异被折叠。
<@com.html title="导入" import="ace,public">
<style>
.btn01 {
display: inline-block;
padding: 4px 12px;
margin-bottom: 0;
font-size: 14px;
color: #333333;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-color: #f2f2f2;
border: 1px solid #aaa;
webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
}
</style>
<script type="text/javascript" src="${configUrl!}/static/thirdControl/jquery/plugins/jquery.form.min.js"></script>
<script type="text/javascript">
$(function () {
var options = {
url: "${configUrl}/dataManager/readExcel",
type: 'POST',
clearForm: true,
resetForm: true,
beforeSubmit: function(){
$.blockUI({message: "请稍等……"});
},
success: function (result) {
setTimeout($.unblockUI, 10);
tipInfo("导入成功!");
}
};
// bind form using 'ajaxForm'
$('#uploadForm').ajaxForm(options).submit(function () {
return false;
});
})
</script>
<div>
<div class="space-10"></div>
<div class="main-container">
<div class="page-content">
<div class="row">
<div class="tabbable">
<div class="tab-content">
<div class="simpleSearch">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<form method="post" enctype="multipart/form-data" id="uploadForm">
<input type="file" id="impFile" name="multipartFile" style="float: left"/>
<input id="submitButton" type="submit" class="btn01 AdvancedButton" value="读取Excel"
style="float: left">
</form>
</td>
</tr>
</table>
</div>
<div id="ontDiv">
<table id="ont-grid-table"></table>
<div id="ont-grid-pager"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="navbar" class="navbar navbar-default" hidden="hidden"></div>
</@com.html>
\ No newline at end of file
差异被折叠。
差异被折叠。
<@com.html title="不动产登记业务管理系统" import="ace,public,init">
<style type="text/css">
.tableA > tbody > tr > td {
text-align: center;
width: 20%;
background: #fff;
}
#bdcqz td {
width: 250px;
}
#bdcqz th {
width: 80px;
}
.UItable table {
width: 470px;
margin: auto;
table-layout: fixed;
float: left;
}
img {
width: 70px;
height: 70px;
}
.secondTitle p {
padding-left: 520px;
}
.secondTitle p > span {
margin-right: 50px;
}
.formBody {
display: inline-block;
width: 1000px;
margin-top: 40px;
}
#bdcqzhTr {
border: none;
}
#bdcqzh {
text-align: center;
font-size: 20px;
font-family: SimSun;
}
#fjTable {
margin-left: 20px;
}
.top {
margin-left: 600px;
}
.top div {
float: left
}
</style>
<div class="bs-docs-example toolTop">
<div class="rightToolTop">
<div class='btn-group'>
<#--<a class='btn btn-success' class="dropdown-toggle" onclick="printZs()">打印</a>-->
</div>
</div>
</div>
<div class="main-container">
<@f.contentDiv title="不动产登记证书预览" >
<@f.form id="bdcqz" name="bdcqz">
<@f.hidden id="proid" name="proid" value="${proid!}"/>
<@f.hidden id="wiid" name="wiid" value="${wiid!}"/>
<#if (resultList?size > 0)>
<#list resultList as result>
<#--<div class="top">-->
<#--<div>-->
<#--&lt;#&ndash;<@f.text id="" name="" value="${result.bdcZs.bdcqzh!}"></@f.text>&ndash;&gt;-->
<#--&lt;#&ndash;<@f.text id="" name="" value="${hdrqMap.HDRQ!}"></@f.text>&ndash;&gt;-->
<#--</div>-->
<#--</div>-->
<@f.table>
<#--<@f.tr >-->
<#--<@f.td colspan="10" id="bdcqzhTr">-->
<#--<@f.text id="bdcqzh" name="bdcqzh" value=""></@f.text>-->
<#--</@f.td>-->
<#--</@f.tr>-->
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利人"></@f.label>
</@f.th>
<@f.td colspan="7">
<@f.text id="qlr" name="qlr" value="${result.qlr!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="共有情况"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="gyfs" name="gyfs" value="${gyfs!}" readonly="true"></@f.text> </@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="坐 落"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="zl" name="zl" value="${bdcXm.zl!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="不动产单元号"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="bdcdyh" name="bdcdyh" value="${bdcSpxx.bdcdyh!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利类型"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qllx" name="qllx" value="${qllx!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利性质"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qlxz" name="qlxz" value="${zsView.QLXZ!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="用途"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="yt" name="yt" value="${zsView.YT!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="面积"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="mj" name="mj" value="${zsView.ZSMJ!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="使用期限"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="syqx" name="syqx" value="${zsView.SYQX!}" readonly="true"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="4">
<@f.label name="权利其他状况"></@f.label>
</@f.th>
<@f.td rowspan="4" colspan="7">
<@f.text id="qlqtzk" name="qlqtzk" value="${result.qlqtzk!}" readonly="true"></@f.text>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
<@f.table id="fjTable">
<@f.tr>
<@f.td rowspan="13">
<@f.textarea id="fj" name="fj" value="${fj!}" readonly="true"></@f.textarea>
</@f.td>
</@f.tr>
<@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
</#list>
<#else>
<#include "emptyZs.ftl">
</#if>
</@f.form>
</@f.contentDiv>
</div>
</@com.html>
<script type="text/javascript">
var formUrl = "${formUrl!}";
var serverUrl = "${serverUrl!}";
var reportUrl = "${reportUrl!}";
var etlUrl = "${etlUrl!}";
var wiid = "${wiid!}";
var proid = "${proid!}";
var portalUrl = "${portalUrl!}";
var platformUrl = "${path_platform!}"
var analysisUrl = "${analysisUrl!}";
var taskid = "${taskid!}";
var from = "${from!}";
var rid = "${rid!}";
e = 1;
function printZs() {
var proid = $("#proid").val();
var url = "${reportUrl!}/ReportServer?reportlet=print%2Fbdc_bdcqz_view.cpt&__cutpage__=v&op=write&proid=" + proid;
openWin(url);
}
</script>
\ No newline at end of file
差异被折叠。
<@com.html title="不动产登记业务补录系统" import="ace,public,init">
<style type="text/css">
.tableA > tbody > tr > th {
text-align: right;
padding-right: 15px;
}
.tableA > tbody > tr > td {
text-align: center;
width: 20%;
background: #fff;
}
.UItable table {
width: 470px;
margin: auto;
table-layout: fixed;
float: left;
}
#bdcqzms {
width: 900px;
}
#bdcqzms td {
width: 250px;
}
#bdcqzms th {
width: 80px;
}
#bdcqzms table {
float: left;
}
#tableLeft td {
border: none;
padding: 0px;
margin: 0px;
}
#tableLeft textarea {
font-size: 18px;
font-family: SimSun;
height: 130px;
font-weight: bold;
}
#tableLeft {
width: 340px;
height: 350px;
}
#tableLeft td > label {
margin-bottom: 10px;
margin-right: 30px;
font-size: 16px;
font-family: SimSun;
float: right;
font-weight: bold;
}
img {
width: 70px;
height: 70px;
}
.secondTitle p {
padding-left: 120px;
}
#bdcqzh {
font-family: SimSun;
font-size: 16px;
font-weight: bold;
}
#img {
padding-left: 600px;
}
#tableLeft .zsbh {
font-size: 18px;
font-family: SimSun;
float: none;
font-weight: bold;
padding-left: 30px;
}
#tableLeft .word {
float: none;
font-size: 18px;
font-family: SimSun;
font-weight: bold;
}
.firstTitle {
text-align: left;
padding-left: 120px;
}
#tableRight {
margin-left: 30px;
}
</style>
<div class="bs-docs-example toolTop">
</div>
<div class="main-container">
<@f.contentDiv title="不动产登记证明预览" >
<@f.form id="bdcqzms" name="bdcqzms">
<@f.hidden id="proid" name="proid" value="${proid!}"/>
<@f.hidden id="wiid" name="wiid" value="${wiid!}"/>
<#if (resultList?size > 0)>
<#list resultList as result>
<@f.table id="tableLeft">
<@f.tr>
<@f.td>
<@f.textarea id="law" name="law" value="根据《中华人民共和国物权法》等法律法规,为保护申请人合法权益,对申请人申请登记的本证明所列不动产权利或登记事项,经审查核实,准予登记,颁发此证明。"></@f.textarea>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label name=" 登记机构(章)"></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label name=""></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label class="word" name="中华人民共和国国土资源部监制"></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label class="zsbh" name=" 编号NO."></@f.label>
</@f.td>
</@f.tr>
</@f.table>
<@f.table>
<@f.tr>
<@f.th colspan="3">
<@f.label name="证明权利或事项"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qllx" name="qllx" value="${qllx!}"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利人(申请人)"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qlr" name="qlr" value="${result.qlr!}"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="义 务 人"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="ywr" name="ywr" value="${ywr!}"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="坐 落"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="zl" name="zl" value="${bdcSpxx.zl!}"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="不动产单元号"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="bdcdyh" name="bdcdyh" value="${bdcSpxx.bdcdyh!}"></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="3">
<@f.label name="其 他"></@f.label>
</@f.th>
<@f.td rowspan="3" colspan="7" style="height:130px">
<@f.textarea id="qlqtzk" name="qlqtzk" value="${result.qlqtzk!}" style="height:120px"></@f.textarea>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="7">
<@f.label name="附 记"></@f.label>
</@f.th>
<@f.td rowspan="8" colspan="7" style="height:130px">
<@f.textarea id="fj" name="fj" value="${fj!}" style="height:120px"></@f.textarea>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
</#list>
<#else>
<#include "emptyZms.ftl">
</#if>
</@f.form>
</@f.contentDiv>
</div>
</@com.html>
<div class="secondTitle">
<div>
<p id="bdcqzh_deft1"></p>
</div>
<div></div>
</div>
<@f.table id="tableLeft">
<@f.hidden id="zsid" name="zsid" value="deft1"/>
<@f.tr>
<@f.td>
<@f.textarea id="law" name="law" value="&nbsp;&nbsp;根据《中华人民共和国物权法》等法律法规,为保护申请人合法权益,对申请人申请登记的本证明所列不动产权利或登记事项,经审查核实,准予登记,颁发此证明。"></@f.textarea>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label name=" 登记机构(章)"></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label name=" "></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label class="word" name=" 中华人民共和国国土资源部监制"></@f.label>
</@f.td>
</@f.tr>
<@f.tr>
<@f.td>
<@f.label class="zsbh" name=" 编号NO."></@f.label>
</@f.td>
</@f.tr>
</@f.table>
<@f.table id="tableRight">
<@f.tr style="height:8px">
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="证明权利或事项"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qllx" name="qllx" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利人(申请人)"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qlr" name="qlr" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="义&nbsp;务&nbsp;人"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="ywr" name="ywr" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="坐&nbsp;&nbsp;落"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="zl" name="zl" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="不动产单元号"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="bdcdyh" name="bdcdyh" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="3">
<@f.label name="其&nbsp;&nbsp他"></@f.label>
</@f.th>
<@f.td rowspan="3" colspan="7">
<@f.textarea id="qlqtzk_deft1" name="qlqtzk" value=""></@f.textarea>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="3">
<@f.label name="附&nbsp;&nbsp记"></@f.label>
</@f.th>
<@f.td rowspan="3" colspan="7">
<@f.text id="fj_deft1" name="fj" value=""></@f.text>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
<div class="top">
<div>
<@f.label name="编&nbsp号NO." style=" font-size: 16px; font-weight: bold;"></@f.label>
</div>
<div>
<@f.text id="zsbh_deft1" name="bh" style="text-align:center;width:220px;font-size: 16px;font-weight: bold;" value=""></@f.text>
<br/>
<@f.text id="fzrq_deft1" name="fzrq" style="text-align:center; font-weight: bold; width:220px;font-size: 16px;" value=""></@f.text>
</div>
<div>
<@f.text id="fjTr" name="fjTr" value="附&nbsp&nbsp记"></@f.text>
</div>
</div>
<@f.table id="zsTable">
<@f.hidden id="zsid" name="zsid" value="deft1"/>
<@f.tr >
<@f.td colspan="10" id="bdcqzhTr">
<@f.text id="bdcqzh" name="bdcqzh" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利人"></@f.label>
</@f.th>
<@f.td colspan="7">
<@f.text id="qlr" name="qlr" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="共有情况"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.select id="gyqk" name="gyqk" showFieldName="MC" valueFieldName="DM" source="gyfsList" defaultValue=""/>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="坐&nbsp&nbsp落"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="zl" name="zl" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="不动产单元号"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="bdcdyh" name="bdcdyh" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利类型"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qllx" name="qllx" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="权利性质"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="qlxz" name="qlxz" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="用&nbsp&nbsp途"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="yt" name="yt" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="面&nbsp&nbsp积"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="mj" name="mj" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3">
<@f.label name="使用期限"></@f.label>
</@f.th>
<@f.td rowspan="1" colspan="7">
<@f.text id="syqx" name="syqx" value=""></@f.text>
</@f.td>
</@f.tr>
<@f.tr>
<@f.th colspan="3" rowspan="4">
<@f.label name="权利其他状况"></@f.label>
</@f.th>
<@f.td rowspan="4" colspan="7">
<@f.textarea id="qlqtzk_deft1" name="qlqtzk" value="" style="overflow-y: hidden;"></@f.textarea>
</@f.td>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
<@f.table id="nullTable">
<@f.tr>
<@f.td rowspan="14" style="width:10px;border:none;" >
</@f.td>
</@f.tr>
<@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
<@f.table id="fjTable">
<@f.tr>
<@f.td rowspan="14">
<@f.textarea id="fj_deft1" name="fj" value=""></@f.textarea>
</@f.td>
</@f.tr>
<@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
<@f.tr></@f.tr>
</@f.tr>
</@f.table>
\ No newline at end of file
<@com.html title="楼盘表" import="ace,public,init">
<link href="../static/css/lpb/bdcLpb.css" rel="stylesheet" type="text/css"/>
<script>
var configUrl = "${configUrl!}";
</script>
<script src="../static/js/lpb/bdcLpb.js" type="text/javascript"></script>
<div class="bs-docs-example toolTop">
<div class="leftToolTop">
<button type="button" class="btn btn-info" id="保存" name="保存" onclick="zmsBc()">保存</button>
</div>
</div>
<div class="main-container">
<@f.contentDiv title="楼盘表" >
<@f.form id="lpbForm" name="lpbForm">
<@f.hidden id="lzjid" name="lzjid" value="${lzjid!}"/>
<@f.hidden id="cellCount" name="cellCount" value="${cellCount!}"/>
<@f.hidden id="rowCount" name="rowCount" value="${rowCount!}"/>
<@f.table id="lpbTable">
</@f.table>
</@f.form>
</@f.contentDiv>
</div>
<div id="navbar" class="navbar navbar-default" hidden="hidden"></div>
</@com.html>
\ No newline at end of file
差异被折叠。
<@com.html title="不动产登记业务管理系统" import="ace,public">
</@com.html>
\ No newline at end of file
<@com.html title="上传材料" import="jquery">
<style type="text/css">
body{
font-family: SimSun,Arial;
color: #333333;
}
</style>
<body onunload ="DisposeControl()">
<object id="cardReader1" classid="clsid:ACA1E246-6AC1-4442-B2CB-E7D5E116ED81"
width="900"
height="500"
>
</object>
</body>
<script type="text/javascript">
var w_width=screen.availWidth-21;
var w_height= screen.availHeight-52;
cardReader1.width=w_width+"px";
cardReader1.height=w_height+"px";
cardReader1.SetURL("${fileCenterUrl!}","${nodeId!}");
window.returnValue = "ok";
function DisposeControl()
{
cardReader1.CtrDispose();
}
</script>
</@com.html>
\ No newline at end of file
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
<@com.html title="家庭成员配置" import="ace,public,bdcJtcy">
<style type="text/css">
</style>
<script type="text/javascript" href="bdcJtcy.js">
var configUrl = "${configUrl!}";
var valiteType = "${type!}";
</script>
<div class="main-container">
<div class="space-10"></div>
<div class="page-content" id="limitTableContent">
<div class="row">
<div class="col-xs-4" style="padding-bottom: 10px;">
<div class="profile-user-info profile-user-info-striped" style="margin: 0px">
<div class="profile-info-name">家庭成员名称</div>
<div class="profile-info-value">
<input type="text" class="form-control" id="mc" name="mc" required="false">
</div>
</div>
</div>
<div class="col-xs-3">
<button type="button" class="btn btn-sm btn-primary" id="search" name="search">查询</button>
</div>
</div>
<div class="tableHeader">
<ul>
<li>
<button type="button" id="addData" name="add">
<i class="ace-icon fa fa-download"></i>
<span>新增</span>
</button>
</li>
<li>
<button type="button" id="updateData" name="edit">
<i class="ace-icon fa fa-pencil"></i>
<span>修改</span>
</button>
</li>
<li>
<button type="button" id="delData" name="del">
<i class="ace-icon glyphicon glyphicon-remove"></i>
<span>删除</span>
</button>
</li>
</ul>
</div>
<table id="limit-table-grid-table"></table>
<div id="limit-table-grid-pager"></div>
</div>
</div>
<#--无用div 防止ace报错-->
<div id="navbar" class="navbar navbar-default" hidden="hidden"></div>
<div class="modal-backdrop fade in Pop" style="display:none" id="modal-backdrop-pop"></div>
<input type="hidden" id="valiteType" name="valiteType">
</@com.html>
\ No newline at end of file
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论