Commit 681c94d5 authored by wangqinghua's avatar wangqinghua

日历

parent 03b643fc
......@@ -18,7 +18,6 @@ export class AddBlockPage {
}
ionViewDidLoad() {
console.log('ionViewDidLoad AddBlockPage');
}
goSelectmodal(){
......
......@@ -25,7 +25,6 @@ export class BlockListPage {
this.orgid = this.navParams.get("orgid");
this.orgName = this.navParams.get("orgName");
this.initList();
console.log(this.orgid);
}
initList(){
......
......@@ -15,7 +15,6 @@ export class ContactModalPage {
}
ionViewDidLoad() {
console.log('ionViewDidLoad ContactModalPage');
}
dismiss() {
......
......@@ -40,8 +40,6 @@ export class ContactListPage {
this.orgid = this.navParams.get("orgid");
this.orgName = this.navParams.get("orgName");
console.log("orgid:"+this.orgid);
console.log("orgName:"+this.orgName);
//加载联系人(常用联系人,部门下人员)
if(this.orgid != null && this.orgid != ''){
this.getGeneralContactPersons(); //常用联系人ids数组
......@@ -72,8 +70,7 @@ export class ContactListPage {
//常用联系人:默认为true 有移除常用联系人按钮
element["hasgeneralpersonsflag"] = true;
});
console.log("data2:"+JSON.stringify(this.contactPersons));
}, error => {
}, error => {
this.appService.alert('网络异常!');
}
);
......@@ -147,8 +144,7 @@ export class ContactListPage {
data.forEach(element => {
this.generalContactPersons.push(element["id"]);
});
console.log("getGeneralContactPersons:"+JSON.stringify(this.generalContactPersons));
}, error => {
}, error => {
this.appService.alert('网络异常!');
}
);
......
......@@ -65,7 +65,6 @@ export class ContractPersoninfoPage {
this.appService.ObserverHttpPostOption("/wisdomgroup/app/contact/addGeneralContactPersons", data)
.subscribe((res: Response) => {
let data = res.json();
console.log("data:" + data);
if (data["result"] == '2') {
this.appService.popToastView('该联系人已在常用联系人中!', 'top', 2000);
} else if (data["result"] == '3') {
......
......@@ -48,7 +48,6 @@ export class MyBlockPage {
};
this.appService.ObserverHttpPostData('/wisdomgroup/modules/telpBook',data)
.subscribe((res)=>{
console.log(res.json());
if( res.json().apiResult.errcode == '0' ){
toast.setMessage('添加成功');
toast.present();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment