|
@@ -3,65 +3,175 @@ Couple.Bind=function () {
|
|
|
var userName=$(".userName")[0]//获取用户名
|
|
var userName=$(".userName")[0]//获取用户名
|
|
|
var ul = $(".asideMenu ul")[0];//获取项目列表ul
|
|
var ul = $(".asideMenu ul")[0];//获取项目列表ul
|
|
|
var asideMenu = $(".asideMenu")[0];
|
|
var asideMenu = $(".asideMenu")[0];
|
|
|
-
|
|
|
|
|
|
|
+ var informationtSet = $(".informationtSet")[0];
|
|
|
var informationtInfo = $(".informationtInfo")[0];//获取反馈信息
|
|
var informationtInfo = $(".informationtInfo")[0];//获取反馈信息
|
|
|
var informationtTime = $(".informationtTime")[0];//获取反馈时间
|
|
var informationtTime = $(".informationtTime")[0];//获取反馈时间
|
|
|
- userName.innerText = document.URL.split('?')[1].split("=")[1];
|
|
|
|
|
|
|
+ var informationtPermissions = $(".informationtPermissions")[0];//获取成员管理
|
|
|
|
|
+ var informationtAddUser = $(".informationtAddUser")[0];
|
|
|
|
|
+ var AddUserMembers = $(".AddUserMembers")[0];
|
|
|
|
|
+ var NoPowerMembers = $(".NoPowerMembers")[0];
|
|
|
|
|
+ var informationtcreateItem = $(".informationtcreateItem")[0]//创建项目按钮
|
|
|
|
|
+ // userName.innerText = document.URL.split('?')[1].split("=")[1];
|
|
|
|
|
+ userName.innerText = U.UF.Cookie.get("usestudiosso","username")[0];
|
|
|
|
|
+
|
|
|
|
|
+ window.onscroll = function(){
|
|
|
|
|
+ var scrollTop = document.documentElement.scrollTop;
|
|
|
|
|
+ if(scrollTop>=1){
|
|
|
|
|
+ asideMenu.style.top = "0";
|
|
|
|
|
+ }else{
|
|
|
|
|
+ asideMenu.style.top = "70px";
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "GetProductByUserId",U.UF.Cookie.get("usestudiosso","userid")[0]],function (r){//获取项目列表
|
|
U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "GetProductByUserId",U.UF.Cookie.get("usestudiosso","userid")[0]],function (r){//获取项目列表
|
|
|
- for(var i=0;i<r.value.length;i++){
|
|
|
|
|
- var li=$$("li", {
|
|
|
|
|
- "className": "asideItem","productId":r.value[i].FeedbackId
|
|
|
|
|
- }, ul);
|
|
|
|
|
- var a=$$("a", {}, li);
|
|
|
|
|
- var icon=$$("span", {
|
|
|
|
|
- "className": "icon icon-times icon-2x",
|
|
|
|
|
- }, a);
|
|
|
|
|
- var span=$$("span", {
|
|
|
|
|
- "className": "asideItemText","innerText":r.value[i].ProductName
|
|
|
|
|
- }, a);
|
|
|
|
|
- ul.onclick = function(ev) {//点击项目列表
|
|
|
|
|
- ev = ev || event;
|
|
|
|
|
- var target = ev.target || ev.srcElement;
|
|
|
|
|
- var productId = target.parentNode.parentElement.productId;
|
|
|
|
|
- if(informationtTime.firstChild==null){
|
|
|
|
|
- Couple.createInfo(productId)
|
|
|
|
|
- }else{
|
|
|
|
|
- informationtInfo.removeChild(informationtInfo.firstChild);
|
|
|
|
|
- informationtTime.removeChild(informationtTime.firstChild);
|
|
|
|
|
- Couple.createInfo(productId)
|
|
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ for(var i=0;i<r.value.length;i++){
|
|
|
|
|
+ var li=$$("li", {
|
|
|
|
|
+ "className": "asideItem","productId":r.value[i].FeedbackId
|
|
|
|
|
+ }, ul);
|
|
|
|
|
+ var a=$$("a", {}, li);
|
|
|
|
|
+ var icon=$$("span", {
|
|
|
|
|
+ "className": "icon icon-times icon-2x",
|
|
|
|
|
+ }, a);
|
|
|
|
|
+ var span=$$("span", {
|
|
|
|
|
+ "className": "asideItemText","innerText":r.value[i].ProductName
|
|
|
|
|
+ }, a);
|
|
|
|
|
+ ul.onclick = function(ev) {//点击项目列表
|
|
|
|
|
+ ev = ev || event;
|
|
|
|
|
+ var target = ev.target || ev.srcElement;
|
|
|
|
|
+ var productId = target.parentNode.parentElement.productId;
|
|
|
|
|
+ if(informationtTime.firstChild==null){
|
|
|
|
|
+ Couple.createInfo(productId)
|
|
|
|
|
+ }else{
|
|
|
|
|
+ informationtTime.removeChild(informationtTime.firstChild)
|
|
|
|
|
+ Couple.createInfo(productId)
|
|
|
|
|
+ }
|
|
|
|
|
+ if(informationtPermissions.firstChild !== null){
|
|
|
|
|
+ informationtPermissions.style.display = "none";
|
|
|
|
|
+ }
|
|
|
|
|
+ if(AddUserMembers.firstChild !== null){
|
|
|
|
|
+ AddUserMembers.removeChild(AddUserMembers.firstChild)
|
|
|
|
|
+ informationtAddUser.style.display = "none";
|
|
|
|
|
+ }
|
|
|
|
|
+ if(informationtcreateItem.firstChild !== null){
|
|
|
|
|
+ informationtcreateItem.removeChild(informationtcreateItem.firstChild)
|
|
|
|
|
+ }
|
|
|
|
|
+ var informationtTitle=$$("h4", {
|
|
|
|
|
+ "className": "informationtTitle",
|
|
|
|
|
+ }, informationtTime.children[0]);
|
|
|
|
|
+ var addUser=$$("button", {
|
|
|
|
|
+ "className": "addUser","innerText":"添加用户","onclick":"Couple.OnclickaddUser()"
|
|
|
|
|
+ }, informationtTime.children[0]);
|
|
|
|
|
+ informationtTitle.innerHTML = "当前项目:"+target.innerText;
|
|
|
|
|
+ Couple.OnclickaddUser=function(){
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","GetJurisdictionName",U.UF.Cookie.get("usestudiosso","userid")[0]],function (r){
|
|
|
|
|
+ if(r.value[0].JurisdictionName!=="管理员"){
|
|
|
|
|
+ informationtAddUser.style.display = "block";
|
|
|
|
|
+ if(AddUserMembers.firstChild == null){}else{
|
|
|
|
|
+ AddUserMembers.removeChild(AddUserMembers.firstChild);
|
|
|
|
|
+ }
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "GetUserIdByProductId",target.parentNode.parentNode.productId],function (r){//获取没有权限用户的列表
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ NoPowerMembers.innerText = r.value.length;
|
|
|
|
|
+ var tbody = $$("tbody", {//创建表格
|
|
|
|
|
+ "className": "tbMain",
|
|
|
|
|
+ }, AddUserMembers);
|
|
|
|
|
+ for(var i=0;i<r.value.length;i++){
|
|
|
|
|
+ var trow = Couple.getUserRow(r.value[i],i+1,target.parentNode.parentNode.productId);
|
|
|
|
|
+ tbody.appendChild(trow);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ }else{
|
|
|
|
|
+ alert("你无权限!");
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ Couple.OnclickTime=function(id,time){//点击时间对应获取信息
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","GetFeedback",id,time],function (r){//获取产品的反馈信息
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ if(informationtInfo.firstChild==null){}else{
|
|
|
|
|
+ informationtInfo.removeChild(informationtInfo.firstChild);
|
|
|
|
|
+ informationtTime.removeChild(informationtTime.firstChild);
|
|
|
|
|
+ Couple.createInfo(productId)
|
|
|
|
|
+ }
|
|
|
|
|
+ var tbody = $$("tbody", {//创建表格
|
|
|
|
|
+ "className": "tbMain",
|
|
|
|
|
+ }, informationtInfo);
|
|
|
|
|
+ var tr = $$("tr", {}, tbody);
|
|
|
|
|
+ var td = $$("td", {
|
|
|
|
|
+ "className":"infoTitle","innerText":"排序"
|
|
|
|
|
+ }, tr);
|
|
|
|
|
+ var td = $$("td", {
|
|
|
|
|
+ "className":"infoTitle trTitle","innerText":"标题"
|
|
|
|
|
+ }, tr);
|
|
|
|
|
+ var td = $$("td", {
|
|
|
|
|
+ "className":"infoTitle trContent","innerText":"内容",
|
|
|
|
|
+ }, tr);
|
|
|
|
|
+ var td = $$("td", {
|
|
|
|
|
+ "className":"infoTitle trCoupleTime","innerText":"反馈时间"
|
|
|
|
|
+ }, tr);
|
|
|
|
|
+ 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);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ };
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ Couple.Permissions()
|
|
|
|
|
+}
|
|
|
|
|
+Couple.Permissions=function(){
|
|
|
|
|
+ var informationtSet = $(".informationtSet")[0]//获取管理员设置
|
|
|
|
|
+ var informationtPermissions = $(".informationtPermissions")[0];//获取成员管理
|
|
|
|
|
+ var permissionsMembers = $(".permissionsMembers")[0];//获取用户成员信息
|
|
|
|
|
+ var AddItem = $(".AddItem")[0];//获取创建项目
|
|
|
|
|
+ var informationtcreateItem = $(".informationtcreateItem")[0]//获取创建项目
|
|
|
|
|
+ var createItem = $(".createItem")[0]//获取创建按钮
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","GetUser"],function (r){//查询用户
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ var tbody = $$("tbody", {//创建表格
|
|
|
|
|
+ "className": "tbMain",
|
|
|
|
|
+ }, permissionsMembers);
|
|
|
|
|
+ for(var i=0;i<r.value.length;i++){
|
|
|
|
|
+ var trow = Couple.getMembersRow(r.value[i],i+1);
|
|
|
|
|
+ tbody.appendChild(trow);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","GetJurisdictionName",U.UF.Cookie.get("usestudiosso","userid")[0]],function (r){//传入用户Id获取权限名称
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ if(r.value[0].JurisdictionName === "超级管理员"){
|
|
|
|
|
+ informationtSet.style.display = "inline-block";
|
|
|
|
|
+ informationtSet.onclick=function(){
|
|
|
|
|
+ informationtPermissions.style.display = "block"
|
|
|
}
|
|
}
|
|
|
- Couple.OnclickTime=function(id,time){//点击时间对应获取信息
|
|
|
|
|
- U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","GetFeedback",id,time],function (r){//获取产品的反馈信息
|
|
|
|
|
- if(informationtInfo.firstChild==null){}else{
|
|
|
|
|
- informationtInfo.removeChild(informationtInfo.firstChild);
|
|
|
|
|
- informationtTime.removeChild(informationtTime.firstChild);
|
|
|
|
|
- Couple.createInfo(productId)
|
|
|
|
|
- }
|
|
|
|
|
- var tbody = $$("tbody", {//创建表格
|
|
|
|
|
- "className": "tbMain",
|
|
|
|
|
- }, informationtInfo);
|
|
|
|
|
- var tr = $$("tr", {}, tbody);
|
|
|
|
|
- var td = $$("td", {
|
|
|
|
|
- "className":"infoTitle","innerText":"排序"
|
|
|
|
|
- }, tr);
|
|
|
|
|
- var td = $$("td", {
|
|
|
|
|
- "className":"infoTitle trTitle","innerText":"标题"
|
|
|
|
|
- }, tr);
|
|
|
|
|
- var td = $$("td", {
|
|
|
|
|
- "className":"infoTitle trContent","innerText":"内容",
|
|
|
|
|
- }, tr);
|
|
|
|
|
- var td = $$("td", {
|
|
|
|
|
- "className":"infoTitle trCoupleTime","innerText":"反馈时间"
|
|
|
|
|
- }, tr);
|
|
|
|
|
- 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);
|
|
|
|
|
|
|
+ AddItem.onclick=function(){
|
|
|
|
|
+ var form = $$("div", {}, informationtcreateItem);
|
|
|
|
|
+ var input = $$("input", {
|
|
|
|
|
+ "className":"createItemName","placeholder":"请输入项目名称","type":"text"
|
|
|
|
|
+ }, form);
|
|
|
|
|
+ var createItem = $$("button", {
|
|
|
|
|
+ "className":"createItem","innerHTML":"创建","onclick":"Couple.OnclickcreateItem()"
|
|
|
|
|
+ }, form);
|
|
|
|
|
+ informationtcreateItem.style.display = "block";
|
|
|
|
|
+ }
|
|
|
|
|
+ Couple.OnclickcreateItem=function(){
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","InsertProductList",$(".createItemName")[0].value],function (r){//查询用户
|
|
|
|
|
+ if(r.value){
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn","UseStudio_FeedBack","InsertUserProduct",U.UF.Cookie.get("usestudiosso","userid")[0],r.value[0].FeedbackId],function (r){//查询用户
|
|
|
|
|
+ location.reload()
|
|
|
|
|
+ })
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
})
|
|
})
|
|
|
- }
|
|
|
|
|
- };
|
|
|
|
|
|
|
+ console.log(1)
|
|
|
|
|
+ return false;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
@@ -100,14 +210,42 @@ Couple.createInfo=function(productId){
|
|
|
"className": "timeItem","innerText":"最近一月","onclick":"Couple.OnclickTime('"+productId+"','30days')"
|
|
"className": "timeItem","innerText":"最近一月","onclick":"Couple.OnclickTime('"+productId+"','30days')"
|
|
|
}, timeSequence)
|
|
}, timeSequence)
|
|
|
}
|
|
}
|
|
|
-Couple.logout=function(){//退出
|
|
|
|
|
- U.UF.CD.loadAjaxCrossDomain(function(){
|
|
|
|
|
- U.A.Request(US.AUTH, ["UserOffline", U.UF.Cookie.get("usestudiosso","userid")[0]],function(r){
|
|
|
|
|
- window.location.href="http://couple.1473.cn/login.html";
|
|
|
|
|
- });
|
|
|
|
|
- });
|
|
|
|
|
-}
|
|
|
|
|
-Couple.getDataRow = function(h,i){//创建表格下的行放数据库循环数据
|
|
|
|
|
|
|
+Couple.getUserRow = function(h,i,productId){//创建表格下用户数据库循环数据
|
|
|
|
|
+ var row = document.createElement('tr');
|
|
|
|
|
+ var trUserId = document.createElement('td');
|
|
|
|
|
+ trUserId.setAttribute('class','trUserId');
|
|
|
|
|
+ trUserId.innerText = h.UserId;
|
|
|
|
|
+ row.appendChild(trUserId);
|
|
|
|
|
+
|
|
|
|
|
+ var trUserName = document.createElement('td');
|
|
|
|
|
+ trUserName.setAttribute('class','trUserName');
|
|
|
|
|
+ trUserName.innerText = h.UserName;
|
|
|
|
|
+ row.appendChild(trUserName);
|
|
|
|
|
+
|
|
|
|
|
+ var trJurisdictionName = document.createElement('td');
|
|
|
|
|
+ trJurisdictionName.setAttribute('class','trJurisdictionName');
|
|
|
|
|
+ trJurisdictionName.innerText = h.JurisdictionName;
|
|
|
|
|
+ row.appendChild(trJurisdictionName);
|
|
|
|
|
+
|
|
|
|
|
+ var setCell = document.createElement('td');
|
|
|
|
|
+ setCell.setAttribute('class','trAdd');
|
|
|
|
|
+ row.appendChild(setCell);
|
|
|
|
|
+
|
|
|
|
|
+ var btnAdd = document.createElement('input');
|
|
|
|
|
+ btnAdd.setAttribute('type','button');
|
|
|
|
|
+ btnAdd.setAttribute('value','添加权限');
|
|
|
|
|
+ btnAdd.setAttribute('class','btnAdd');
|
|
|
|
|
+
|
|
|
|
|
+ btnAdd.onclick=function(){ //设置操作
|
|
|
|
|
+ if(confirm("确定添加权限吗")){
|
|
|
|
|
+ this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "InsertUserProduct",h.UserId,productId],function (r){})//插入用户权限
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ setCell.appendChild(btnAdd);
|
|
|
|
|
+ return row;
|
|
|
|
|
+}
|
|
|
|
|
+Couple.getDataRow = function(h,i){//创建表格下的反馈数据库循环数据
|
|
|
var row = document.createElement('tr');
|
|
var row = document.createElement('tr');
|
|
|
var sortCell = document.createElement('td');
|
|
var sortCell = document.createElement('td');
|
|
|
sortCell.innerText = i;
|
|
sortCell.innerText = i;
|
|
@@ -140,16 +278,71 @@ Couple.getDataRow = function(h,i){//创建表格下的行放数据库循环数
|
|
|
}
|
|
}
|
|
|
delCell.appendChild(btnDel);
|
|
delCell.appendChild(btnDel);
|
|
|
return row;
|
|
return row;
|
|
|
-}
|
|
|
|
|
-Couple.Init=function () {
|
|
|
|
|
- var asideMenu = $(".asideMenu")[0];
|
|
|
|
|
- Couple.Bind();
|
|
|
|
|
- window.onscroll = function(){
|
|
|
|
|
- var scrollTop = document.documentElement.scrollTop;
|
|
|
|
|
- if(scrollTop>=1){
|
|
|
|
|
- asideMenu.style.top = "0";
|
|
|
|
|
- }else{
|
|
|
|
|
- asideMenu.style.top = "70px";
|
|
|
|
|
|
|
+}
|
|
|
|
|
+Couple.getMembersRow = function(h,i){//创建表格下的用户数据库循环数据
|
|
|
|
|
+ var row = document.createElement('tr');
|
|
|
|
|
+ var trUserId = document.createElement('td');
|
|
|
|
|
+ trUserId.setAttribute('class','trUserId');
|
|
|
|
|
+ trUserId.innerText = h.UserId;
|
|
|
|
|
+ row.appendChild(trUserId);
|
|
|
|
|
+
|
|
|
|
|
+ var trUserName = document.createElement('td');
|
|
|
|
|
+ trUserName.setAttribute('class','trUserName');
|
|
|
|
|
+ trUserName.innerText = h.UserName;
|
|
|
|
|
+ row.appendChild(trUserName);
|
|
|
|
|
+
|
|
|
|
|
+ var trJurisdictionName = document.createElement('td');
|
|
|
|
|
+ trJurisdictionName.setAttribute('class','trJurisdictionName');
|
|
|
|
|
+ trJurisdictionName.innerText = h.JurisdictionName;
|
|
|
|
|
+ row.appendChild(trJurisdictionName);
|
|
|
|
|
+
|
|
|
|
|
+ var setCell = document.createElement('td');
|
|
|
|
|
+ setCell.setAttribute('class','trSet');
|
|
|
|
|
+ row.appendChild(setCell);
|
|
|
|
|
+ var btnSet = document.createElement('input');
|
|
|
|
|
+ btnSet.setAttribute('type','button');
|
|
|
|
|
+ btnSet.setAttribute('value','修改');
|
|
|
|
|
+ btnSet.setAttribute('class','setInfo');
|
|
|
|
|
+ btnSet.onclick=function(){ //设置操作
|
|
|
|
|
+ if(confirm("确定修改管理员信息吗")){
|
|
|
|
|
+ if(this.parentNode.parentNode.children[2].innerText === "管理员"){
|
|
|
|
|
+ this.parentNode.parentNode.children[2].innerHTML = "超级管理员"
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "UpdateJurisdictionName",this.parentNode.parentNode.children[0].innerText,"超级管理员"],function (r){//修改权限
|
|
|
|
|
+ console.log(r)
|
|
|
|
|
+ })
|
|
|
|
|
+ }else{
|
|
|
|
|
+ alert("你已经是超级管理员")
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+ setCell.appendChild(btnSet);
|
|
|
|
|
+
|
|
|
|
|
+ //每行末尾添加删除按钮
|
|
|
|
|
+ var delCell = document.createElement('td');
|
|
|
|
|
+ delCell.setAttribute('class','trDel');
|
|
|
|
|
+ row.appendChild(delCell);
|
|
|
|
|
+ var btnDel = document.createElement('input');
|
|
|
|
|
+ btnDel.setAttribute('type','button');
|
|
|
|
|
+ btnDel.setAttribute('value','删除');
|
|
|
|
|
+ btnDel.setAttribute('class','delectInfo');
|
|
|
|
|
+ btnDel.onclick=function(){ //删除操作
|
|
|
|
|
+ if(confirm("确定删除这一行嘛?")){
|
|
|
|
|
+ this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);
|
|
|
|
|
+ U.A.Request("http://cd.1473.cn/net",["db.1473.cn", "UseStudio_FeedBack", "DeleteFeedback",h.FeedbackId],function (r){})
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ delCell.appendChild(btnDel);
|
|
|
|
|
+ return row;
|
|
|
|
|
+}
|
|
|
|
|
+Couple.logout=function(){//退出
|
|
|
|
|
+ U.UF.CD.loadAjaxCrossDomain(function(){
|
|
|
|
|
+ U.A.Request(US.AUTH, ["UserOffline", U.UF.Cookie.get("usestudiosso","userid")[0]],function(r){
|
|
|
|
|
+
|
|
|
|
|
+ window.location.href="http://couple.1473.cn/login.html";
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+Couple.Init=function () {
|
|
|
|
|
+ Couple.Bind();
|
|
|
}();
|
|
}();
|