|
|
@@ -53,6 +53,7 @@ Couple.Bind=function () {
|
|
|
}
|
|
|
if(informationtcreateItem.firstChild !== null){
|
|
|
informationtcreateItem.removeChild(informationtcreateItem.firstChild)
|
|
|
+ informationtcreateItem.style.display = "none";
|
|
|
}
|
|
|
var informationtTitle=$$("h4", {
|
|
|
"className": "informationtTitle",
|
|
|
@@ -109,8 +110,14 @@ Couple.Bind=function () {
|
|
|
var td = $$("td", {
|
|
|
"className":"infoTitle trCoupleTime","innerText":"反馈时间"
|
|
|
}, tr);
|
|
|
+ if(r.value.length === 0){
|
|
|
+ var coupleData = $$("div", {
|
|
|
+ "className":"coupleData","innerText":"暂无数据"
|
|
|
+ }, tbody);
|
|
|
+ }
|
|
|
var td = $$("td", {}, tr);
|
|
|
for(var i=0;i<r.value.length;i++){
|
|
|
+
|
|
|
var trow = Couple.getDataRow(r.value[i],i+1);
|
|
|
tbody.appendChild(trow);
|
|
|
}
|
|
|
@@ -341,7 +348,6 @@ Couple.logout=function(){//退出
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
Couple.Init=function () {
|
|
|
Couple.Bind();
|
|
|
}();
|