hailin
2023-06-02 440ae63e10fb8819e1d355388fac0c9af72ef73d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<template>
  <div class="system-user">
    <SettingTitle left="你的用户配置" right="小图标"></SettingTitle>
    <div class="user-info"></div>
  </div>
</template>
 
<script>
import SettingTitle from '@/components/SettingTitle'
export default {
  data() {
    return {
      deptName: '',
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        userName: undefined,
        phonenumber: undefined,
        status: undefined,
        deptId: undefined
      },
      dateRange: [],
      userList: null
    }
  },
  components: {
    SettingTitle
  }
}
</script>
 
<style lang="scss" >
@import '../../../styles/variables.scss';
.system-user{
    min-height: calc(100vh - 50px);
    padding: 40px;
    background: $mainBg;
}
.user-info{
  width: 100%;
  height: 125px;
  border-radius: 10px;
  background: #fff;
}
</style>