Commit de43a066 authored by wangqinghua's avatar wangqinghua

update

parent 27f879d5
...@@ -26,7 +26,6 @@ export class SearchPersonComponent { ...@@ -26,7 +26,6 @@ export class SearchPersonComponent {
this.homeSer.getOrgList(data).subscribe( this.homeSer.getOrgList(data).subscribe(
(res) => { (res) => {
this.personList = res.list.user; this.personList = res.list.user;
console.log(this.personList);
} }
) )
} }
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<td>{{item.type}}</td> <td>{{item.type}}</td>
<td>{{item.abstract}}</td> <td>{{item.abstract}}</td>
<td> <td>
<ion-checkbox [checked]="item.selectionState" disabled></ion-checkbox> <ion-checkbox [checked]="item.checked" disabled></ion-checkbox>
</td> </td>
</tr> </tr>
</tbody> </tbody>
......
...@@ -14,7 +14,7 @@ export class ApprovalsPage { ...@@ -14,7 +14,7 @@ export class ApprovalsPage {
private viewCtrl: ViewController) { private viewCtrl: ViewController) {
this.listApprovalsVO = this.navParams.get("listApprovalsVO"); this.listApprovalsVO = this.navParams.get("listApprovalsVO");
this.listApprovalsVO.forEach(e => { this.listApprovalsVO.forEach(e => {
e.selectionState = e.selectionState === "1"; e.checked = e.selectionState === "1";
}) })
} }
......
...@@ -150,8 +150,8 @@ ...@@ -150,8 +150,8 @@
<div class="space"></div> <div class="space"></div>
<div class="handle"> <div class="handle">
<ion-item *ngIf="itemInfo?.type == '1'"> <ion-item *ngIf="itemInfo?.type == '1'">
<ion-label class="item-left">选择当前业务办理对应批文</ion-label> <ion-label class="item-left">当前业务办理对应批文</ion-label>
<ion-label (click)="openApproval()" class="choose">选择</ion-label> <ion-label (click)="openApproval()" class="choose">查看</ion-label>
</ion-item> </ion-item>
<ion-item> <ion-item>
<ion-label class="item-left"> <ion-label class="item-left">
......
...@@ -72,8 +72,6 @@ export class DealDetailPage { ...@@ -72,8 +72,6 @@ export class DealDetailPage {
private dealSer: DealService, private modalCtrl: ModalController) { private dealSer: DealService, private modalCtrl: ModalController) {
this.itemInfo = this.navParams.get("item"); this.itemInfo = this.navParams.get("item");
this.area = this.globle.area; this.area = this.globle.area;
console.log(this.itemInfo);
console.log(this.area);
} }
//查询详情 //查询详情
......
...@@ -97,7 +97,6 @@ export class DealPage { ...@@ -97,7 +97,6 @@ export class DealPage {
}); });
modal.onDidDismiss(res => { modal.onDidDismiss(res => {
if (res) { if (res) {
console.log(res);
this.handleSend(res.data, item); this.handleSend(res.data, item);
} }
}); });
......
...@@ -155,7 +155,6 @@ export class DataReportPage { ...@@ -155,7 +155,6 @@ export class DataReportPage {
{ {
data: this.areaList.map(e => { data: this.areaList.map(e => {
const n = e.sblv.split("%")[0]; const n = e.sblv.split("%")[0];
console.log(n);
return n; return n;
}), }),
color: ['#58afed'], //折线颜色 color: ['#58afed'], //折线颜色
......
...@@ -46,7 +46,6 @@ export class DoVerityPage { ...@@ -46,7 +46,6 @@ export class DoVerityPage {
private commonSer: CommonService, private commonSer: CommonService,
private loadCtrl: LoadingController, private loadCtrl: LoadingController,
private dealSer: DealService, private modalCtrl: ModalController) { private dealSer: DealService, private modalCtrl: ModalController) {
console.log(this.globle)
this.mineInfo = this.globle.userObj; this.mineInfo = this.globle.userObj;
this.searchObj.areaCode = this.globle.userObj.area; this.searchObj.areaCode = this.globle.userObj.area;
this.searchObj.areaObj = this.globle.area; this.searchObj.areaObj = this.globle.area;
...@@ -103,7 +102,6 @@ export class DoVerityPage { ...@@ -103,7 +102,6 @@ export class DoVerityPage {
}); });
modal.onDidDismiss(res => { modal.onDidDismiss(res => {
if (res) { if (res) {
console.log(res);
this.handleSend(res.data, item); this.handleSend(res.data, item);
} }
}); });
......
...@@ -20,7 +20,7 @@ export class MySupervisePage { ...@@ -20,7 +20,7 @@ export class MySupervisePage {
getList() { getList() {
const data = { const data = {
page: 1, page: 1,
limit: 1000, limit: "1000",
flag: 1 flag: 1
}; };
this.mine.dblog(data).subscribe( this.mine.dblog(data).subscribe(
......
...@@ -20,8 +20,8 @@ export class MyVerifyPage { ...@@ -20,8 +20,8 @@ export class MyVerifyPage {
getList() { getList() {
const data = { const data = {
page: 1, page: 2,
limit: 1000, limit: "1000",
flag: 2 flag: 2
}; };
this.mine.dblog(data).subscribe( this.mine.dblog(data).subscribe(
......
...@@ -22,7 +22,7 @@ export class OperationPage { ...@@ -22,7 +22,7 @@ export class OperationPage {
getList() { getList() {
const data = { const data = {
page: 1, page: 1,
limit: 1000, limit: "1000",
flag: 0 flag: 0
}; };
this.mine.dblog(data).subscribe( this.mine.dblog(data).subscribe(
......
...@@ -74,7 +74,6 @@ export class TabsPage { ...@@ -74,7 +74,6 @@ export class TabsPage {
}); });
this.tabSer.tabChange.subscribe((value) => { this.tabSer.tabChange.subscribe((value) => {
this.tabParams = value; this.tabParams = value;
console.log(this.tabParams);
this.myTabs.select(value.index) this.myTabs.select(value.index)
}); });
this.appSer.dealInfo.subscribe( this.appSer.dealInfo.subscribe(
......
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