|
|
@@ -3,9 +3,8 @@
|
|
|
<el-row :gutter="20">
|
|
|
<!--机构数据-->
|
|
|
<el-col :span="4" :xs="24">
|
|
|
-
|
|
|
- <org-tree v-model="queryParams.orgId" @defaultKey="getDefaultKey" @checkChange="checkChange"
|
|
|
- @click="clickTreeNode" businessTree></org-tree>
|
|
|
+ <org-tree v-model="queryParams.orgId" @defaultKey="getDefaultKey" @defaultOrg="getDefaultOrg" @checkChange="checkChange"
|
|
|
+ @click="clickTreeNode"></org-tree>
|
|
|
</el-col>
|
|
|
<!--搜索栏-->
|
|
|
|
|
|
@@ -106,7 +105,10 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
|
|
+ <!-- <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"/> -->
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum"
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
@pagination="getList"/>
|
|
|
</el-col>
|
|
|
@@ -235,6 +237,7 @@
|
|
|
description: null,
|
|
|
isDeleted: null,
|
|
|
isDistribute: null,
|
|
|
+ checkSub: true
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
@@ -281,7 +284,7 @@
|
|
|
listPlan(this.queryParams).then(response => {
|
|
|
this.planList = response.data.rows;
|
|
|
this.check=response.check;
|
|
|
- this.total = response.total;
|
|
|
+ this.total = response.data.total;
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|