From 1a310eba3fea6e0640cf895e7db7e8f1fb73d653 Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Fri, 10 Dec 2021 10:40:31 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/zhba_enterprises
---
src/views/securityUnit/selfRecruitedSecurityGuard.vue | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/src/views/securityUnit/selfRecruitedSecurityGuard.vue b/src/views/securityUnit/selfRecruitedSecurityGuard.vue
index 1f4ffa1..37402c4 100644
--- a/src/views/securityUnit/selfRecruitedSecurityGuard.vue
+++ b/src/views/securityUnit/selfRecruitedSecurityGuard.vue
@@ -1,6 +1,11 @@
<template>
<basic-container>
- <div class="securityUnit">
+ <div
+ :class="[
+ 'securityUnit',
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<avue-crud
:option="option"
:data="data"
@@ -158,6 +163,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
treeData: [],
@@ -268,6 +274,7 @@
border: true,
selection: true,
+ ...this.$store.state.control.clearOtherBut,
column: [
...column,
{
@@ -484,6 +491,9 @@
console.log("是公安add jurisdiction");
params["jurisdiction"] = this.userInfo.jurisdiction;
}
+ if (this.userInfo.role_name == "培训公司管理员") {
+ params["createDeptId"] = this.userInfo.dept_id;
+ }
params["stats"] = 0;
this.loading = true;
getdata(
--
Gitblit v1.9.3