zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<template>
  <a-card :bordered="false">
    <!-- 抽屉 -->
    <a-drawer
      title="人员列表"
      :width="screenWidth"
      @close="onClose"
      :visible="visible"
    >
      <!-- 抽屉内容的border -->
      <div
        :style="{
          padding:'10px',
          border: '1px solid #e9e9e9',
          background: '#fff',
        }">
 
        <div class="table-page-search-wrapper">
          <a-form layout="inline" :form="form" @keyup.enter.native="searchQuery">
            <!--            <a-row :gutter="10">
                          <a-col :md="8" :sm="12">
                            <a-form-item label="用户姓名">
                              <a-input style="width: 120px;" placeholder="请输入用户姓名" v-model="queryParam.username"></a-input>
                            </a-form-item>
                          </a-col>
                          <a-col :md="7" :sm="24">
                          <span style="float: left;" class="table-page-search-submitButtons">
                            <a-button type="primary" @click="searchQuery">搜索</a-button>
                            <a-button type="primary" @click="searchReset" style="margin-left: 8px">重置</a-button>
                          </span>
                          </a-col>
                        </a-row>-->
            <a-row>
              <a-col :md="2" :sm="24">
                <a-button style="margin-bottom: 10px" type="primary" :loading="aLoading" @click="handleAdd">新增
                </a-button>
              </a-col>
            </a-row>
          </a-form>
        </div>
        <div>
          <a-table
            ref="table"
            rowKey="id"
            size="middle"
            :columns="columns"
            :dataSource="dataSource"
            :pagination="ipagination"
            :loading="loading"
            @change="handleTableChange"
            :rowClassName="getRowClassname"
          >
 
          <span slot="action" slot-scope="text, record">
 
            <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
              <a>删除</a>
            </a-popconfirm>
          </span>
 
          </a-table>
        </div>
      </div>
    </a-drawer>
 
    <select-user-modal ref="selectUserModal" @selectOk="selectOK"></select-user-modal>
  </a-card>
</template>
 
<script>
import pick from 'lodash.pick'
import {filterObj} from '@/utils/util';
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import SelectUserModal from "@views/system/modules/SelectUserModal";
import {getAction, postAction} from "@api/manage";
 
export default {
  name: "DepartTeamUserList",
  mixins: [JeecgListMixin],
  components: {SelectUserModal},
  data() {
    return {
      columns: [
        {
          title: '小组',
          align: "center",
          dataIndex: 'dteamId_dictText',
        },
        {
          title: '姓名',
          align: "center",
          dataIndex: 'userId_dictText',
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: "center",
          scopedSlots: {customRender: 'action'},
        }
      ],
      queryParam: {},
      title: "操作",
      visible: false,
      screenWidth: 800,
      dteamId: null,
      orgCode: null,
      aLoading: false,
      model: {},
 
      labelCol: {
        xs: {span: 5},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 12},
        sm: {span: 12},
      },
      form: this.$form.createForm(this),
      url: {
        list: "/sys/sysDepartTeam/teamUserList",
        delete: "/sys/sysDepartTeam/deleteTeamUser",
        add: "/sys/sysDepartTeam/addTeamUser",
      },
    }
  },
  created() {
    // 当页面初始化时,根据屏幕大小来给抽屉设置宽度
    this.resetScreenSize();
  },
  methods: {
 
    getQueryParams() {
      //update--begin--autor:wangshuai-----date:20191204------for:清空总条数 teambition JT-113------
      this.ipagination.total = 0;
      //update--end--autor:wangshuai-----date:20191204------for:清空总条数 teambition JT-113------
      var param = Object.assign({}, this.queryParam);
      param.field = this.getQueryField();
      param.dteamId = this.dteamId
      param.pageNo = this.ipagination.current;
      param.pageSize = this.ipagination.pageSize;
      if (this.superQueryParams) {
        param['superQueryParams'] = encodeURI(this.superQueryParams)
        param['superQueryMatchType'] = this.superQueryMatchType
      }
      return filterObj(param);
    },
 
    // 添加
    handleAdd() {
      this.$refs.selectUserModal.customShow(this.orgCode)
 
    },
 
 
 
    selectOK(data) {
      let params = {}
      params.dteamId = this.dteamId
      const namesString = data.map(user => user.username).join(',');
      params.userId = namesString
      postAction(this.url.add, params).then((res) => {
        if (res.success) {
          this.loadData()
          this.$message.success(res.message)
        } else {
          this.$message.warning(res.message)
        }
      })
    },
    showDrawer(record, orgCode) {
      this.visible = true
      this.dteamId = record.id
      this.orgCode = orgCode
      this.loadData()
    },
    onClose() {
      this.visible = false
      this.form.resetFields();
      this.dataSource = [];
    },
    // 抽屉的宽度随着屏幕大小来改变
    resetScreenSize() {
      let screenWidth = document.body.clientWidth;
      if (screenWidth < 600) {
        this.screenWidth = screenWidth;
      } else {
        this.screenWidth = 600;
      }
    },
    //update--begin--autor:wangshuai-----date:20191204------for:系统管理 数据字典禁用和正常区别开,添加背景颜色 teambition JT-22------
    //增加样式方法返回值
    getRowClassname(record) {
      if (record.status == 0) {
        return "data-rule-invalid"
      }
    }
    //update--end--autor:wangshuai-----date:20191204------for:系统管理 数据字典禁用和正常区别开,添加背景颜色 teambition JT-22------
  }
}
</script>
<style lang="less" scoped>
//update--begin--autor:wangshuai-----date:20191204------for:系统管理 数据字典禁用和正常区别开,添加背景颜色 teambition JT-22------
/deep/ .data-rule-invalid {
  background: #f4f4f4;
  color: #bababa;
}
 
//update--begin--autor:wangshuai-----date:20191204------for:系统管理 数据字典禁用和正常区别开,添加背景颜色 teambition JT-22------
</style>