Browse Source

参数

jly/task002
tianq 3 years ago
parent
commit
d4682ef2c3
  1. 17
      src/views/modules/census/census-accountList.vue

17
src/views/modules/census/census-accountList.vue

@ -159,6 +159,7 @@
:total="total" :total="total"
></el-pagination> ></el-pagination>
</el-dialog> </el-dialog>
</div> </div>
</template> </template>
@ -498,7 +499,7 @@ export default {
}, },
async getPiesubData(orgId, orgType) { async getPiesubData(orgId, orgType) {
// staffLoginLog/streetTotal // staffLoginLog/streetTotal
this.orgType = orgType;
console.log(orgType); console.log(orgType);
let url = ''; let url = '';
if (orgType == 'street') { if (orgType == 'street') {
@ -513,7 +514,7 @@ export default {
console.log('orgType', orgType); console.log('orgType', orgType);
// district street community // district street community
// 1 2 3 4 // 1 2 3 4
switch (orgType) { switch (this.orgType) {
case 'district': case 'district':
this.title = '区县级账号登录情况'; this.title = '区县级账号登录情况';
// url = '/gov/org/staffLoginLog/district-count'; // url = '/gov/org/staffLoginLog/district-count';
@ -672,12 +673,12 @@ export default {
console.log('param', param); console.log('param', param);
if (param.data.level != 'community') { if (param.data.level != 'community') {
// if (param.data.level == 'district') { if (param.data.level == 'district') {
// orgType = 'street'; this.orgType = 'street';
// } }
// if (param.data.level == 'street') { if (param.data.level == 'street') {
// orgType = 'community'; this.orgType = 'community';
// } }
this.pageNo = 1; this.pageNo = 1;
this.getPiesubData(param.data.id, param.data.level); this.getPiesubData(param.data.id, param.data.level);

Loading…
Cancel
Save