2025-04-21 14:26:52 +08:00
|
|
|
<template>
|
|
|
|
<el-dialog
|
|
|
|
:title="titleValue"
|
|
|
|
width="1400px"
|
|
|
|
:model-value="modelValue"
|
|
|
|
append-to-body
|
|
|
|
@close="closed"
|
|
|
|
>
|
|
|
|
<div>
|
|
|
|
<el-form :model="listQuery" class="mosty-from-wrap" :inline="true">
|
|
|
|
<el-form-item label="所属部门">
|
|
|
|
<MOSTY.Department width="100%" clearable v-model="listQuery.ssbmdm" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="用户名">
|
|
|
|
<el-input
|
|
|
|
placeholder="请输入用户名"
|
|
|
|
v-model="listQuery.loginName"
|
|
|
|
clearable
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="电话号码">
|
|
|
|
<el-input
|
|
|
|
placeholder="请输入电话号码"
|
|
|
|
v-model="listQuery.phone"
|
|
|
|
clearable
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="success" @click="handleFilter">查询</el-button>
|
|
|
|
<el-button type="info" @click="reset()"> 重置 </el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<div
|
|
|
|
class="tabBox"
|
|
|
|
:class="props.Single ? 'tabBoxRadio' : ''"
|
|
|
|
style="margin-top: 0px"
|
|
|
|
>
|
|
|
|
<el-table
|
|
|
|
ref="multipleUserRef"
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
:data="tableData"
|
|
|
|
border
|
|
|
|
:row-key="keyid"
|
|
|
|
style="width: 100%"
|
|
|
|
height="450"
|
|
|
|
>
|
2025-05-26 21:03:06 +08:00
|
|
|
<el-table-column
|
|
|
|
type="selection"
|
|
|
|
width="55"
|
|
|
|
:reserve-selection="true"
|
|
|
|
/>
|
2025-04-21 14:26:52 +08:00
|
|
|
<el-table-column
|
|
|
|
prop="loginName"
|
|
|
|
align="center"
|
|
|
|
label="用户名"
|
|
|
|
width="150"
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="idEntityCard"
|
|
|
|
align="center"
|
|
|
|
label="身份证号"
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="deptName"
|
|
|
|
align="center"
|
|
|
|
label="部门"
|
|
|
|
></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="inDustRialId"
|
|
|
|
align="center"
|
|
|
|
width="150"
|
|
|
|
label="警号"
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
prop="mobile"
|
|
|
|
width="150"
|
|
|
|
align="center"
|
|
|
|
label="电话"
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column prop="sex" align="center" label="性别">
|
|
|
|
<template #default="{ row }">
|
|
|
|
<span> {{ row.sex == 1 ? "男" : "女" }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
<div class="fenye" :style="{ top: tableHeight + 'px' }">
|
|
|
|
<el-pagination
|
|
|
|
class="pagination"
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
:current-page="listQuery.current"
|
|
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
|
|
:page-size="listQuery.size"
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
:total="total"
|
|
|
|
></el-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button @click="closed">取消</el-button>
|
|
|
|
<el-button type="primary" @click="onComfirm">确认</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import * as rule from "@/utils/rules.js";
|
|
|
|
import * as MOSTY from "@/components/MyComponents/index";
|
|
|
|
import { ElMessage } from "element-plus";
|
|
|
|
import { defineProps, watch, ref, onMounted, nextTick } from "vue";
|
|
|
|
import { selectUnAccreditPage, selectUserDeptPage } from "@/api/user-manage";
|
|
|
|
const props = defineProps({
|
|
|
|
modelValue: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
titleValue: {
|
|
|
|
type: String,
|
|
|
|
default: "选择用户"
|
|
|
|
},
|
|
|
|
LeaderType: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
|
|
|
//是否单选
|
|
|
|
Single: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
roleIds: {
|
|
|
|
type: Array,
|
|
|
|
default: []
|
2025-05-26 21:03:06 +08:00
|
|
|
}
|
2025-04-21 14:26:52 +08:00
|
|
|
});
|
|
|
|
const total = ref(0);
|
|
|
|
const listQuery = ref({
|
|
|
|
current: 1,
|
|
|
|
size: 20
|
|
|
|
});
|
|
|
|
const form = ref({});
|
|
|
|
const tableData = ref([]);
|
|
|
|
const emits = defineEmits(["update:modelValue", "choosedUsers"]);
|
|
|
|
onMounted(() => {
|
2025-07-07 15:42:18 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
watch(()=>props.modelValue, (val) => {
|
|
|
|
if (val) {
|
|
|
|
nextTick(() => {
|
|
|
|
getListData();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},{
|
|
|
|
immediate: true
|
2025-04-21 14:26:52 +08:00
|
|
|
});
|
|
|
|
const closed = () => {
|
|
|
|
emits("update:modelValue", false);
|
|
|
|
};
|
|
|
|
const reset = () => {
|
|
|
|
listQuery.value = {
|
|
|
|
current: 1,
|
|
|
|
size: 20,
|
|
|
|
loginName: "",
|
|
|
|
phone: ""
|
|
|
|
};
|
|
|
|
getListData();
|
|
|
|
};
|
|
|
|
|
|
|
|
const keyid = (row) => {
|
|
|
|
return row.id;
|
|
|
|
};
|
|
|
|
// 为用户分配角色
|
|
|
|
const onComfirm = () => {
|
|
|
|
const userList = multipleSelectionUser.value;
|
2025-05-26 21:03:06 +08:00
|
|
|
let list = [];
|
|
|
|
let listId = [];
|
|
|
|
userList.forEach((val) => {
|
|
|
|
if (listId.indexOf(val.id) == -1) {
|
2025-04-21 14:26:52 +08:00
|
|
|
list.push(val);
|
|
|
|
listId.push(val.id);
|
|
|
|
}
|
2025-05-26 21:03:06 +08:00
|
|
|
});
|
2025-04-21 14:26:52 +08:00
|
|
|
emits("choosedUsers", list);
|
|
|
|
let data = { type: props.LeaderType, userList: userList };
|
2025-05-26 21:03:06 +08:00
|
|
|
|
2025-04-21 14:26:52 +08:00
|
|
|
emits("choosedUsersLeader", data);
|
|
|
|
closed();
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* pageSize 改变触发
|
|
|
|
*/
|
|
|
|
const handleSizeChange = (currentSize) => {
|
|
|
|
listQuery.value.size = currentSize;
|
|
|
|
getListData();
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 页码改变触发
|
|
|
|
*/
|
|
|
|
const handleCurrentChange = (currentPage) => {
|
|
|
|
listQuery.value.current = currentPage;
|
|
|
|
getListData();
|
|
|
|
};
|
|
|
|
const getListData = () => {
|
|
|
|
const params = listQuery.value;
|
2025-05-26 21:03:06 +08:00
|
|
|
selectUserDeptPage(params).then((res) => {
|
2025-04-21 14:26:52 +08:00
|
|
|
tableData.value = res?.records;
|
|
|
|
total.value = Number(res.total);
|
2025-05-26 21:03:06 +08:00
|
|
|
multipleUser();
|
2025-04-21 14:26:52 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
//列表回显
|
|
|
|
function multipleUser() {
|
2025-05-26 21:03:06 +08:00
|
|
|
tableData.value.forEach((item) => {
|
|
|
|
if (props.roleIds.some((id) => id == item.id)) {
|
2025-04-21 14:26:52 +08:00
|
|
|
multipleUserRef.value.toggleRowSelection(item, true);
|
|
|
|
}
|
2025-05-26 21:03:06 +08:00
|
|
|
});
|
2025-04-21 14:26:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const handleFilter = () => {
|
|
|
|
listQuery.value.current = 1;
|
|
|
|
getListData();
|
|
|
|
};
|
|
|
|
|
|
|
|
const multipleUserRef = ref(null);
|
|
|
|
const multipleSelectionUser = ref([]);
|
|
|
|
const handleSelectionChange = (val) => {
|
|
|
|
if (props.Single) {
|
|
|
|
if (val.length > 1) {
|
|
|
|
let del_row = val.shift();
|
|
|
|
multipleUserRef.value.toggleRowSelection(del_row, false);
|
|
|
|
}
|
|
|
|
multipleSelectionUser.value = val;
|
|
|
|
} else {
|
|
|
|
multipleSelectionUser.value = val;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import "@/assets/css/layout.scss";
|
|
|
|
@import "@/assets/css/element-plus.scss";
|
|
|
|
</style>
|
|
|
|
<style>
|
|
|
|
.tabBoxRadio .el-checkbox__inner {
|
|
|
|
border-radius: 50% !important;
|
|
|
|
}
|
|
|
|
.tabBoxRadio .el-table__header-wrapper .el-checkbox {
|
|
|
|
display: none;
|
|
|
|
}
|
2025-05-26 21:03:06 +08:00
|
|
|
|
2025-04-21 14:26:52 +08:00
|
|
|
</style>
|