Commit de43a066 authored by wangqinghua's avatar wangqinghua

update

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