12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598 |
- <template>
- <el-row class="user">
- <el-col :span="5">
- <div class="box">
- <el-scrollbar>
- <basic-container>
- <avue-tree
- :option="treeOption"
- :data="treeData"
- @node-click="nodeClick"
- />
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="19">
- <basic-container>
- <avue-crud
- :option="option"
- :search.sync="search"
- :table-loading="loading"
- :data="data"
- ref="crud"
- :before-close="beforeClose"
- v-model="form"
- :permission="permissionList"
- @row-del="rowDel"
- @row-update="rowUpdate"
- @row-save="rowSave"
- :before-open="beforeOpen"
- :page.sync="page"
- @search-change="searchChange"
- @search-reset="searchReset"
- @selection-change="selectionChange"
- @current-change="currentChange"
- @size-change="sizeChange"
- @refresh-change="refreshChange"
- @on-load="onLoad"
- >
- <!-- 自 定义按钮 -->
- <template
- slot-scope="{row,index}"
- slot="menu"
- >
- <el-link
- class="marleft10"
- :underline="false"
- type="primary"
- icon="el-icon-edit"
- size="small"
- @click="editKJ(row, index)"
- >编辑
- </el-link>
- <el-link
- class="marleft10"
- :underline="false"
- type="primary"
- icon="el-icon-delete"
- size="small"
- @click="$refs.crud.rowDel(row,index)"
- >删除
- </el-link>
- </template>
- <!-- 参建项目 -->
- <template
- slot-scope="{type}"
- slot="projectAndUserListForm"
- >
- <div
- class="flexStar martop10"
- v-for="(item,key) in fromss.projectAndUserList"
- :key='key'
- >
- <el-input
- v-model="fromss.projectAndUserList[key].projectName"
- :disabled="true"
- ></el-input>
- <el-select
- class="marleft10"
- v-model="fromss.projectAndUserList[key].contractName"
- placeholder="请选择"
- @change="hetongChange(key)"
- >
- <el-option
- v-for="(item,index) in fromss.projectAndUserList[key].dataInfo"
- :key="item.id"
- :label="item.contractName"
- :value="item.id"
- >
- <span style="float: left">{{ item.contractName }}</span>
- <el-button
- @click.stop="deleteProject(key,type,index)"
- style="float: right;margin-right:5px;margin-top:3px;"
- type="danger"
- size="mini"
- icon="el-icon-delete"
- circle
- ></el-button>
- </el-option>
- </el-select>
- <el-input
- class="marleft10"
- v-model="fromss.projectAndUserList[key].roleName"
- :disabled="true"
- ></el-input>
- <el-button
- @click="deleteProject2(key,type)"
- class="marleft10"
- type="danger"
- icon="el-icon-delete"
- :disabled='deletexiangmu'
- circle
- ></el-button>
- </div>
- </template>
- <!-- 参与项目自定义表单 -->
- <template
- slot="projectIdForm"
- slot-scope="{type}"
- >
- <el-select
- v-model="fromss.projectId"
- :disabled="type=='view'"
- placeholder="请选择"
- >
- <el-option
- v-for="item in projectData"
- :key="item.id"
- :label="item.projectName"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </template>
- <!-- 合同段自定义表单 -->
- <template
- slot="contractIdForm"
- slot-scope="{type}"
- >
- <el-select
- :disabled="type=='view'"
- v-model="fromss.contractId"
- placeholder="请选择"
- >
- <el-option
- v-for="item in contractData"
- :key="item.id"
- :label="item.contractName"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </template>
- <!-- 用户类型自定义表单 -->
- <template
- slot-scope="{type}"
- slot="roleIdsForm"
- >
- <div class="flexStar">
- <el-select
- :disabled="type=='view'"
- v-model="fromss.roleIds"
- filterable
- placeholder="请选择"
- >
- <el-option
- v-for="item in roleIdsData"
- :key="item.roleId"
- :label="item.roleName"
- :value="item.roleId"
- >
- </el-option>
- </el-select>
- <el-button
- v-show="type!=='view'"
- class="marleft10"
- type="warning"
- size="mini"
- @click="addProject(type)"
- >确认添加
- </el-button>
- </div>
- </template>
- <template slot="menuLeft">
- <el-button
- type="primary"
- size="small"
- icon="el-icon-plus"
- @click="addKJ()"
- >新 增
- </el-button>
- <el-button
- type="danger"
- size="small"
- plain
- icon="el-icon-delete"
- v-if="permission.user_delete"
- @click="handleDelete"
- >删 除
- </el-button>
- <el-button
- type="info"
- size="small"
- plain
- v-if="permission.user_role"
- icon="el-icon-user"
- @click="handleGrant"
- >角色配置
- </el-button>
- <el-button
- type="info"
- size="small"
- plain
- v-if="permission.user_reset"
- icon="el-icon-refresh"
- @click="handleReset"
- >密码重置
- </el-button>
- <el-button
- type="info"
- size="small"
- plain
- v-if="userInfo.role_name.includes('admin')"
- icon="el-icon-setting"
- @click="handlePlatform"
- >平台配置
- </el-button>
- <el-button
- type="info"
- size="small"
- plain
- v-if="userInfo.role_name.includes('admin')"
- icon="el-icon-coordinate"
- @click="handLock"
- >账号封禁
- </el-button>
- <el-button
- type="info"
- size="small"
- plain
- v-if="userInfo.role_name.includes('admin')"
- icon="el-icon-coordinate"
- @click="handleLock"
- >账号解封
- </el-button>
- <el-button
- type="success"
- size="small"
- plain
- v-if="userInfo.role_name.includes('admin')"
- icon="el-icon-upload2"
- @click="handleImport"
- >导入
- </el-button>
- <el-button
- type="warning"
- size="small"
- plain
- v-if="userInfo.role_name.includes('admin')"
- icon="el-icon-download"
- @click="handleExport"
- >导出
- </el-button>
- </template>
- <template
- slot-scope="{row}"
- slot="tenantName"
- >
- <el-tag>{{ row.tenantName }}</el-tag>
- </template>
- <template
- slot-scope="{row}"
- slot="roleName"
- >
- <el-tag>{{ row.roleName }}</el-tag>
- </template>
- <template
- slot-scope="{row}"
- slot="deptName"
- >
- <el-tag>{{ row.deptName }}</el-tag>
- </template>
- <template
- slot-scope="{row}"
- slot="userTypeName"
- >
- <el-tag>{{ row.userTypeName }}</el-tag>
- </template>
- </avue-crud>
- <el-dialog
- title="用户角色配置"
- append-to-body
- :visible.sync="roleBox"
- width="345px"
- >
- <el-tree
- :data="roleGrantList"
- show-checkbox
- check-strictly
- default-expand-all
- node-key="id"
- ref="treeRole"
- :default-checked-keys="roleTreeObj"
- :props="props"
- >
- </el-tree>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="roleBox = false">取 消</el-button>
- <el-button
- type="primary"
- @click="submitRole"
- >确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog
- title="用户数据导入"
- append-to-body
- :visible.sync="excelBox"
- width="555px"
- >
- <avue-form
- :option="excelOption"
- v-model="excelForm"
- :upload-after="uploadAfter"
- >
- <template slot="excelTemplate">
- <el-button
- type="primary"
- @click="handleTemplate"
- >
- 点击下载<i class="el-icon-download el-icon--right"></i>
- </el-button>
- </template>
- </avue-form>
- </el-dialog>
- <el-dialog
- title="用户平台配置"
- append-to-body
- :visible.sync="platformBox"
- >
- <avue-crud
- :option="platformOption"
- :table-loading="platformLoading"
- :data="platformData"
- ref="platformCrud"
- v-model="platformForm"
- :before-open="platformBeforeOpen"
- :page.sync="platformPage"
- :permission="platformPermissionList"
- @row-update="platformRowUpdate"
- @search-change="platformSearchChange"
- @search-reset="platformSearchReset"
- @selection-change="platformSelectionChange"
- @current-change="platformCurrentChange"
- @size-change="platformSizeChange"
- @refresh-change="platformRefreshChange"
- @on-load="platformOnLoad"
- >
- <template
- slot-scope="{row}"
- slot="tenantName"
- >
- <el-tag>{{ row.tenantName }}</el-tag>
- </template>
- <template
- slot-scope="{row}"
- slot="userTypeName"
- >
- <el-tag>{{ row.userTypeName }}</el-tag>
- </template>
- </avue-crud>
- </el-dialog>
- </basic-container>
- </el-col>
- </el-row>
- </template>
- <script>
- import {
- getList,
- getUser,
- getUserPlatform,
- remove,
- update,
- updatePlatform,
- add,
- grant,
- resetPassword, lock, unlock, removeUserProjectInfoAndRoleById
- } from "@/api/system/user";
- import {getProjectList} from "@/api/manager/projectinfo";
- import {findContractByProjectId, removeUsersByIds} from "@/api/manager/contractinfo";
- import {exportBlob} from "@/api/common";
- import {getDeptTree, getDeptLazyTree} from "@/api/system/dept";
- import {roletree, treeUser, findProjectAndContractList, saveUserInfoByProjectTow} from "@/api/system/role";
- // import { getPostList } from "@/api/system/post";
- import {mapGetters} from "vuex";
- import website from '@/config/website';
- import {getToken} from '@/util/auth';
- import {downloadXls} from "@/util/util";
- import {dateNow} from "@/util/date";
- import NProgress from 'nprogress';
- import 'nprogress/nprogress.css';
- export default {
- data() {
- const validatePass = (rule, value, callback) => {
- if (value === '') {
- callback(new Error('请输入密码'));
- } else {
- callback();
- }
- };
- const validatePass2 = (rule, value, callback) => {
- if (value === '') {
- callback(new Error('请再次输入密码'));
- } else if (value !== this.form.password) {
- callback(new Error('两次输入密码不一致!'));
- } else {
- callback();
- }
- };
- const phoneRules = (rule, value, callback) => {
- if (!/^1[345789]\d{9}$/.test(value)) {
- callback(new Error('请输入正确的手机号'));
- } else {
- callback();
- }
- };
- const idNumberRules = (rule, value, callback) => {
- if (!value) {
- callback();
- } else {
- if (!/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[12])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$/i.test(value)) {
- callback(new Error('请输入正确的身份证号'));
- } else {
- callback();
- }
- }
- };
- const projectAndUserListRules = (rule, value, callback) => {
- if (this.fromss.projectAndUserList.length > 0) {
- callback();
- } else {
- callback(new Error('请设置参建项目'));
- }
- };
- return {
- deletexiangmu: false,
- addData: {
- tenantId: '',
- deptId: ''
- },
- form: {},
- search: {},
- roleBox: false,
- excelBox: false,
- platformBox: false,
- initFlag: true,
- selectionList: [],
- query: {},
- loading: true,
- platformLoading: false,
- page: {
- pageSize: 20,
- currentPage: 1,
- total: 0
- },
- platformPage: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- init: {
- roleTree: [],
- deptTree: [],
- },
- props: {
- label: "title",
- value: "key"
- },
- roleGrantList: [],
- roleTreeObj: [],
- treeDeptId: '',
- treeData: [],
- treeOption: {
- nodeKey: 'id',
- lazy: true,
- treeLoad: function (node, resolve) {
- const parentId = (node.level === 0) ? 0 : node.data.id;
- getDeptLazyTree(parentId).then(res => {
- resolve(res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- }
- }))
- });
- },
- addBtn: false,
- menu: false,
- size: 'small',
- props: {
- labelText: '标题',
- label: 'title',
- value: 'value',
- children: 'children'
- }
- },
- fromss: {
- userId: '',//
- projectAndUserList: [],
- projectId: '',//参与项项目
- contractId: '',//合同段
- roleIds: '',//用户类型
- },
- projectData: [],//参与项项目
- contractData: [],//合同段
- roleIdsData: [],//用户类型
- option: {
- height: 'auto',
- calcHeight: 80,
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- selection: true,
- addBtn: false,
- // viewBtn: true,
- editBtn: false,
- delBtn: false,
- dialogType: 'drawer',
- dialogClickModal: false,
- column: [
- {
- label: "登录账号",
- prop: "account",
- search: true,
- display: false
- },
- {
- label: "所属租户",
- prop: "tenantName",
- slot: true,
- display: false
- },
- {
- label: "用户姓名",
- prop: "realName",
- search: true,
- display: false
- },
- {
- label: "所属角色",
- prop: "roleName",
- slot: true,
- display: false,
- },
- {
- label: "所属部门",
- prop: "deptName",
- slot: true,
- display: false,
- value: '',
- },
- {
- label: "用户平台",
- prop: "userTypeName",
- slot: true,
- display: false
- },
- {
- label: "用户平台",
- type: "select",
- dicUrl: "/api/blade-system/dict/dictionary?code=user_type",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dataType: "number",
- search: true,
- hide: true,
- display: false,
- prop: "userType",
- rules: [{
- required: true,
- message: "请选择用户平台",
- trigger: "blur"
- }]
- },
- ],
- group: [
- {
- label: '基础信息',
- prop: 'baseInfo',
- icon: 'el-icon-user-solid',
- column: [
- {
- label: "所属租户",
- prop: "tenantId",
- type: "tree",
- dicUrl: "/api/blade-system/tenant/select",
- props: {
- label: "tenantName",
- value: "tenantId"
- },
- hide: !website.tenantMode,
- addDisplay: website.tenantMode,
- editDisplay: website.tenantMode,
- viewDisplay: website.tenantMode,
- rules: [{
- required: true,
- message: "请输入所属租户",
- trigger: "change"
- }],
- span: 24,
- },
- {
- label: "登录账号",
- prop: "account",
- rules: [{
- required: true,
- message: "请输入登录账号",
- trigger: "blur"
- }],
- },
- {
- label: '密码',
- prop: 'password',
- hide: true,
- editDisplay: false,
- viewDisplay: false,
- rules: [{required: true, validator: validatePass, trigger: 'blur'}]
- },
- {
- label: '确认密码',
- prop: 'password2',
- hide: true,
- editDisplay: false,
- viewDisplay: false,
- rules: [{required: true, validator: validatePass2, trigger: 'blur'}]
- },
- ]
- },
- {
- label: '详细信息',
- prop: 'detailInfo',
- icon: 'el-icon-s-order',
- column: [
- {
- label: "用户姓名",
- prop: "realName",
- rules: [{
- required: true,
- message: "请输入用户姓名",
- trigger: "blur"
- }, {
- min: 2,
- max: 5,
- message: '姓名长度在2到5个字符'
- }]
- },
- {
- label: "手机号码",
- prop: "phone",
- rules: [{
- required: true,
- validator: phoneRules,
- trigger: "blur",
- }],
- },
- {
- label: "身份证号",
- prop: "idNumber",
- rules: [{
- required: false,
- validator: idNumberRules,
- trigger: "blur",
- }],
- },
- {
- label: "所属部门",
- prop: "deptId",
- type: "tree",
- // multiple: true,
- dicData: [],
- value: '',
- typeslot: true,
- props: {
- label: "title",
- value: 'value',
- },
- checkStrictly: false,
- // slot: true,
- rules: [{
- required: true,
- message: "请选择所属部门",
- trigger: "change"
- }]
- },
- ]
- },
- {
- label: '职能描述',
- prop: 'dutyInfo',
- icon: 'el-icon-s-custom',
- column: [
- {
- label: "参建项目",
- prop: "projectAndUserList",
- span: 24,
- rules: [{
- required: true,
- validator: projectAndUserListRules,
- trigger: "change"
- }],
- },
- {
- label: "参与项目",
- prop: "projectId",
- span: 16,
- },
- {
- label: "合同段",
- prop: "contractId",
- span: 16,
- }, {
- label: "用户类型",
- prop: "roleIds",
- span: 16,
- }, {
- label: "单位名称",
- prop: "companyName",
- span: 16,
- }, {
- label: "职位",
- prop: "position",
- span: 16,
- },
- {
- label: "允许登录",
- type: "select",
- span: 16,
- prop: "status",
- dicData: [
- {value: 1, label: '是'},
- {value: 0, label: '否'}],
- rules: [{
- required: true,
- message: "请选择是否允许登录",
- trigger: "change"
- }],
- },
- ]
- },
- ]
- },
- data: [],
- platformQuery: {},
- platformSelectionList: [],
- platformData: [],
- platformForm: {},
- platformOption: {
- tip: false,
- searchShow: true,
- searchMenuSpan: 6,
- border: true,
- index: true,
- selection: true,
- viewBtn: true,
- dialogClickModal: false,
- menuWidth: 120,
- editBtnText: '配置',
- column: [
- {
- label: "登录账号",
- prop: "account",
- search: true,
- display: false
- },
- {
- label: "所属租户",
- prop: "tenantName",
- slot: true,
- display: false
- },
- {
- label: "用户姓名",
- prop: "realName",
- search: true,
- display: false
- },
- {
- label: "用户平台",
- prop: "userTypeName",
- slot: true,
- display: false
- },
- {
- label: "用户平台",
- type: "select",
- dicUrl: "/api/blade-system/dict/dictionary?code=user_type",
- props: {
- label: "dictValue",
- value: "dictKey"
- },
- dataType: "number",
- search: true,
- hide: true,
- display: false,
- prop: "userType",
- rules: [{
- required: true,
- message: "请选择用户平台",
- trigger: "blur"
- }]
- },
- {
- label: "用户拓展",
- prop: "userExt",
- type: "textarea",
- minRows: 8,
- span: 24,
- overHidden: true,
- row: true,
- hide: true,
- },
- ],
- },
- excelForm: {},
- excelOption: {
- submitBtn: false,
- emptyBtn: false,
- column: [
- {
- label: '模板上传',
- prop: 'excelFile',
- type: 'upload',
- drag: true,
- loadText: '模板上传中,请稍等',
- span: 24,
- propsHttp: {
- res: 'data'
- },
- tip: '请上传 .xls,.xlsx 标准格式文件',
- action: "/api/blade-user/import-user"
- },
- {
- label: "数据覆盖",
- prop: "isCovered",
- type: "switch",
- align: "center",
- width: 80,
- dicData: [
- {
- label: "否",
- value: 0
- },
- {
- label: "是",
- value: 1
- }
- ],
- value: 0,
- slot: true,
- rules: [
- {
- required: true,
- message: "请选择是否覆盖",
- trigger: "blur"
- }
- ]
- },
- {
- label: '模板下载',
- prop: 'excelTemplate',
- formslot: true,
- span: 24,
- }
- ]
- }
- };
- },
- watch: {
- 'form.tenantId'() {
- if (this.form.tenantId !== '' && this.initFlag) {
- this.initData(this.form.tenantId);
- }
- },
- 'excelForm.isCovered'() {
- if (this.excelForm.isCovered !== '') {
- const column = this.findObject(this.excelOption.column, "excelFile");
- column.action = `/api/blade-user/import-user?isCovered=${this.excelForm.isCovered}`;
- }
- },
- 'fromss.projectId': function () {
- this.fromss.contractId = ''
- if (this.fromss.projectId) {
- this.findContractByProjectId(this.fromss.projectId)
- } else {
- this.contractData = []
- }
- },
- },
- computed: {
- ...mapGetters(["userInfo", "permission"]),
- permissionList() {
- return {
- addBtn: this.vaildData(this.permission.user_add, false),
- viewBtn: this.vaildData(this.permission.user_view, false),
- delBtn: this.vaildData(this.permission.user_delete, false),
- editBtn: this.vaildData(this.permission.user_edit, false)
- };
- },
- platformPermissionList() {
- return {
- addBtn: false,
- viewBtn: false,
- delBtn: false,
- editBtn: this.vaildData(this.permission.user_edit, false)
- };
- },
- ids() {
- let ids = [];
- this.selectionList.forEach(ele => {
- ids.push(ele.id);
- });
- return ids.join(",");
- },
- },
- mounted() {
- // 非租户模式默认加载管理组数据
- if (!website.tenantMode) {
- this.initData(website.tenantId);
- }
- if (this.$route.query.tankai) {
- this.$refs.crud.rowAdd()
- }
- },
- methods: {
- //#region 弹框事件及方法
- addKJ() {
- this.getProjectList()//项目类型
- this.treeUser() //获取用户类型枚举
- this.fromss.projectAndUserList = []
- this.fromss.projectId = ''
- this.fromss.userId = ''
- this.fromss.contractId = ''
- this.fromss.roleIds = '' //合同段Id
- this.contractData = [] //合同段枚举
- this.form.deptName = this.addData.deptId
- const column = this.findObject(this.option.group, 'deptId')
- column.value = this.addData.deptId
- this.$refs.crud.rowAdd()
- },
- addProject(type) {//确定添加参建项目
- if (type == 'add') {
- this.addfangfa()
- } else {
- const tag = true
- if (!this.fromss.projectId) {
- this.$message({
- type: "error",
- message: "请选择参与项目!"
- })
- return
- }
- if (!this.fromss.contractId) {
- this.$message({
- type: "error",
- message: "请选择合同段!"
- })
- return
- }
- if (!this.fromss.roleIds) {
- this.$message({
- type: "error",
- message: "请选择用户类型!"
- })
- return
- }
- if (tag) {
- this.saveUserInfoByProjectTow([{
- projectId: this.fromss.projectId,
- contractId: this.fromss.contractId,
- roleId: this.fromss.roleIds,
- userId: this.fromss.userId
- }])
- }
- }
- },
- addfangfa() {//添加时确定添加按钮方法处理
- if (!this.fromss.projectId) {
- this.$message({
- type: "error",
- message: "请选择参与项目!"
- })
- return
- }
- if (!this.fromss.contractId) {
- this.$message({
- type: "error",
- message: "请选择合同段!"
- })
- return
- }
- if (!this.fromss.roleIds) {
- this.$message({
- type: "error",
- message: "请选择用户类型!"
- })
- return
- }
- let tag = true, index = ''
- if (this.fromss.projectAndUserList.length > 0) {
- this.fromss.projectAndUserList.forEach((val, k) => {
- if (val.projectId == this.fromss.projectId) {
- index = k
- tag = false
- }
- })
- }
- let das
- if (tag) {
- das = {
- projectId: this.fromss.projectId,
- contractId: this.fromss.contractId,
- roleIds: this.fromss.roleIds,
- roleName: '',
- dataInfo: [{
- contractName: '',
- id: this.fromss.contractId,
- roleIds: this.fromss.roleIds,
- roleName: '',
- roleType: '',
- }],
- contractName: this.fromss.contractId,
- }
- // 参与项目
- this.projectData.forEach(vas => {
- if (vas.id == this.fromss.projectId) {
- das.projectName = vas.projectName
- }
- })
- // 合同段
- this.contractData.forEach(vas => {
- if (vas.id == this.fromss.contractId) {
- das.dataInfo[0].contractName = vas.contractName
- }
- })
- // 用户类型
- this.roleIdsData.forEach(vas => {
- if (vas.roleId == this.fromss.roleIds) {
- das.roleName = vas.roleName
- }
- })
- // 添加进去
- this.fromss.projectAndUserList.push(das)
- this.$message({
- type: "success",
- message: "添加成功"
- })
- } else {
- let tags = true
- this.fromss.projectAndUserList[index].dataInfo.forEach((val) => {
- if (val.id == this.fromss.contractId) {
- tags = false
- }
- })
- if (tags) {
- das = {
- contractName: '',
- id: this.fromss.contractId,
- roleIds: this.fromss.roleIds,
- roleName: '',
- roleType: '',
- }
- // 参与项目
- this.projectData.forEach(vas => {
- if (vas.id == this.fromss.projectId) {
- das.projectName = vas.projectName
- }
- })
- // 合同段
- this.contractData.forEach(vas => {
- if (vas.id == this.fromss.contractId) {
- das.contractName = vas.contractName
- }
- })
- // 用户类型
- this.roleIdsData.forEach(vas => {
- if (vas.roleId == this.fromss.roleIds) {
- das.roleName = vas.roleName
- }
- })
- // 添加进去
- this.fromss.projectAndUserList[index].dataInfo.push(das)
- this.$message({
- type: "success",
- message: "添加成功"
- })
- } else {
- this.$message({
- type: "error",
- message: "当前合同段已添加,无法继续添加"
- })
- }
- }
- },
- hetongChange(key) {//合同段changge事件
- this.fromss.projectAndUserList[key].dataInfo.forEach(val => {
- if (this.fromss.projectAndUserList[key].contractName == val.id) {
- this.fromss.projectAndUserList[key].roleName = val.roleType + '|' + val.roleName
- }
- })
- },
- async editKJ(row, index) {//编辑用户
- console.log(row);
- this.fromss.userId = row.id //用户ID
- this.fromss.contractId = '' //合同段Id
- this.contractData = [] //合同段枚举
- this.getProjectList() //项目类型
- this.treeUser() //用户类型枚举
- this.findProjectAndContractList(row.id) //编辑获取参建项目
- this.$refs.crud.rowEdit(row, index)
- },
- deleteProject2(key, type) {//删除参建项目一条项目
- if (type == 'add') {
- this.fromss.projectAndUserList.splice(this.fromss.projectAndUserList[key], 1)
- } else {
- this.removeUserProjectInfoAndRoleById(this.fromss.projectAndUserList[key].dataInfo[0].id)
- }
- },
- deleteProject(key, type, index) {//删除参建项目按钮
- if (type == 'add') {
- if (this.fromss.projectAndUserList[key].dataInfo.length == 1) {
- this.fromss.projectAndUserList.splice(this.fromss.projectAndUserList[key], 1)
- } else {
- this.fromss.projectAndUserList[key].dataInfo.splice(this.fromss.projectAndUserList[key].dataInfo[index], 1)
- this.fromss.projectAndUserList[key].roleName = this.fromss.projectAndUserList[key].dataInfo[0].roleName
- this.fromss.projectAndUserList[key].contractName = this.fromss.projectAndUserList[key].dataInfo[0].id
- this.fromss.projectAndUserList[key].contractId = this.fromss.projectAndUserList[key].dataInfo[0].id
- }
- } else {
- this.removeUsersByIds(this.fromss.projectAndUserList[key].dataInfo[index].id)
- }
- },
- async removeUserProjectInfoAndRoleById(id) {//参建项目删除一条项目
- this.deletexiangmu = true
- try {
- const {data: res} = await removeUserProjectInfoAndRoleById({id})
- console.log(res);
- if (res.code == 200) {
- await this.findProjectAndContractList(this.fromss.userId)
- }
- this.deletexiangmu = false
- } catch (error) {
- this.deletexiangmu = false
- }
- },
- async beforeClose(done) {//弹框关闭事件
- this.fromss = {
- userId: '',//
- projectAndUserList: [],
- projectId: '',//参与项项目
- contractId: '',//合同段
- roleIds: '',//用户类型
- },
- await this.onLoad(this.page);
- done()
- },
- async removeUsersByIds(ids) {//删除参建项目
- this.deletexiangmu = true
- try {
- const {data: res} = await removeUsersByIds(ids)
- console.log(res);
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '删除成功'
- })
- await this.findProjectAndContractList(this.fromss.userId)
- }
- this.deletexiangmu = false
- } catch (error) {
- this.deletexiangmu = false
- }
- },
- async getProjectList() {//项目类型
- const {data: res} = await getProjectList(1, 999)
- console.log(res);
- if (res.code === 200) {
- this.projectData = res.data.records
- }
- },
- async findContractByProjectId(pId) {//合同段
- const {data: res} = await findContractByProjectId(pId)
- console.log(res);
- if (res.code === 200) {
- this.contractData = res.data
- }
- },
- async treeUser() {//获取用户类型枚举
- const {data: res} = await treeUser()
- console.log(res);
- if (res.code === 200) {
- this.roleIdsData = res.data
- }
- },
- async findProjectAndContractList(userId) {//编辑获取参建项目
- const {data: res} = await findProjectAndContractList({userId})
- console.log(res);
- if (res.code === 200) {
- res.data.forEach(val => {
- val.contractName = val.dataInfo[0].id
- val.roleName = val.dataInfo[0].roleType + '|' + val.dataInfo[0].roleName
- })
- this.fromss.projectAndUserList = res.data
- }
- },
- async saveUserInfoByProjectTow(da) {//编辑添加参建项目
- const {data: res} = await saveUserInfoByProjectTow(da)
- console.log(res);
- if (res.code == 200) {
- // this.fromss.projectId = '' //参与项项目
- // this.fromss.contractId = '' //合同段
- // this.fromss.roleIds = '' //用户类型
- this.findProjectAndContractList(this.fromss.userId)
- }
- this.$message({
- type: 'success',
- message: '添加成功'
- })
- },
- //#endregion
- //#region 甘云杰
- nodeClick(data) {
- this.addData = {
- tenantId: data.tenantId,
- deptId: data.id
- }
- this.treeDeptId = data.id;
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- initData(tenantId) {
- //所属部门
- getDeptTree(tenantId).then(res => {
- const column = this.findObject(this.option.group, "deptId");
- column.dicData = res.data.data;
- });
- },
- submitRole() {
- const roleList = this.$refs.treeRole.getCheckedKeys().join(",");
- grant(this.ids, roleList).then(() => {
- this.roleBox = false;
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.onLoad(this.page);
- });
- },
- rowSave(row, done, loading) { //新增保存
- if (this.fromss.projectAndUserList.length > 0) {
- let projectAndUserList = []
- this.fromss.projectAndUserList.forEach(val => {
- if (val.dataInfo.length > 0) {
- val.dataInfo.forEach(item => {
- projectAndUserList.push({
- projectId: val.projectId,
- contractId: item.id,
- roleId: item.roleIds,
- })
- })
- }
- })
- add({...row, projectAndUserList}).then(() => {
- this.initFlag = false;
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, () => {
- loading();
- });
- } else {
- loading()
- }
- },
- rowUpdate(row, index, done, loading) {//修改按钮
- // row.roleId = row.roleId.join(",");
- row.postId = row.postId.join(",");
- let ks = {...row}
- delete ks.projectAndUserList
- delete ks.roleId
- update({...ks}).then(() => {
- this.initFlag = false;
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, () => {
- loading();
- });
- },
- rowDel(row) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return remove(row.id);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- searchReset() {
- this.query = {};
- this.treeDeptId = '';
- this.onLoad(this.page);
- },
- searchChange(params, done) {
- this.query = params;
- this.page.currentPage = 1;
- this.onLoad(this.page, params);
- done();
- },
- selectionChange(list) {
- this.selectionList = list;
- },
- selectionClear() {
- this.selectionList = [];
- this.$refs.crud.toggleSelection();
- },
- handleDelete() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return remove(this.ids);
- })
- .then(() => {
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.$refs.crud.toggleSelection();
- });
- },
- handleReset() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.$confirm("确定将选择账号密码重置为123456?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return resetPassword(this.ids);
- })
- .then(() => {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.$refs.crud.toggleSelection();
- });
- },
- handleGrant() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.roleTreeObj = [];
- if (this.selectionList.length === 1) {
- this.roleTreeObj = this.selectionList[0].roleId.split(",");
- }
- roletree().then(res => {
- this.roleGrantList = res.data.data;
- this.roleBox = true;
- });
- },
- handlePlatform() {
- this.platformBox = true;
- },
- handLock() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.$confirm("确定将选择账号封禁?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return lock(this.ids);
- })
- .then(() => {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- handleLock() {
- if (this.selectionList.length === 0) {
- this.$message.warning("请选择至少一条数据");
- return;
- }
- this.$confirm("确定将选择账号解封?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- })
- .then(() => {
- return unlock(this.ids);
- })
- .then(() => {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- });
- },
- handleImport() {
- this.excelBox = true;
- },
- uploadAfter(res, done, loading, column) {
- window.console.log(column);
- this.excelBox = false;
- this.refreshChange();
- done();
- },
- handleExport() {
- this.$confirm("是否导出用户数据?", "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- NProgress.start();
- exportBlob(`/api/blade-user/export-user?${this.website.tokenHeader}=${getToken()}&account=${this.search.account}&realName=${this.search.realName}`).then(res => {
- downloadXls(res.data, `用户数据表${dateNow()}.xlsx`);
- NProgress.done();
- })
- });
- },
- handleTemplate() {
- exportBlob(`/api/blade-user/export-template?${this.website.tokenHeader}=${getToken()}`).then(res => {
- downloadXls(res.data, "用户数据模板.xlsx");
- })
- },
- beforeOpen(done, type) {
- if (["edit", "view"].includes(type)) {
- getUser(this.form.id).then(res => {
- this.form = res.data.data;
- if (this.form.hasOwnProperty("roleId")) {
- this.form.roleId = this.form.roleId.split(",");
- }
- if (this.form.hasOwnProperty("postId")) {
- this.form.postId = this.form.postId.split(",");
- }
- });
- } else {
- this.form.tenantId = this.addData.tenantId
- }
- this.initFlag = true;
- done();
- },
- currentChange(currentPage) {
- this.page.currentPage = currentPage;
- },
- sizeChange(pageSize) {
- this.page.pageSize = pageSize;
- },
- refreshChange() {
- this.onLoad(this.page, this.query);
- },
- onLoad(page, params = {}) {
- this.loading = true;
- getList(page.currentPage, page.pageSize, Object.assign(params, this.query), this.treeDeptId).then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.data = data.records;
- this.loading = false;
- this.selectionClear();
- });
- },
- platformRowUpdate(row, index, done, loading) {
- updatePlatform(row.id, row.userType, row.userExt).then(() => {
- this.platformOnLoad(this.platformPage);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, error => {
- window.console.log(error);
- loading();
- });
- },
- platformBeforeOpen(done, type) {
- if (["edit", "view"].includes(type)) {
- getUserPlatform(this.platformForm.id).then(res => {
- this.platformForm = res.data.data;
- });
- }
- done();
- },
- platformSearchReset() {
- this.platformQuery = {};
- this.platformOnLoad(this.platformPage);
- },
- platformSearchChange(params, done) {
- this.platformQuery = params;
- this.platformPage.currentPage = 1;
- this.platformOnLoad(this.platformPage, params);
- done();
- },
- platformSelectionChange(list) {
- this.platformSelectionList = list;
- },
- platformSelectionClear() {
- this.platformSelectionList = [];
- this.$refs.platformCrud.toggleSelection();
- },
- platformCurrentChange(currentPage) {
- this.platformPage.currentPage = currentPage;
- },
- platformSizeChange(pageSize) {
- this.platformPage.pageSize = pageSize;
- },
- platformRefreshChange() {
- this.platformOnLoad(this.platformPage, this.platformQuery);
- },
- platformOnLoad(page, params = {}) {
- this.platformLoading = true;
- getList(page.currentPage, page.pageSize, Object.assign(params, this.query), this.treeDeptId).then(res => {
- const data = res.data.data;
- this.platformPage.total = data.total;
- this.platformData = data.records;
- this.platformLoading = false;
- this.selectionClear();
- });
- },
- //#endregion
- },
- };
- </script>
- <style lang="scss">
- .box {
- height: 800px;
- }
- .el-scrollbar {
- height: 100%;
- }
- .box .el-scrollbar__wrap {
- overflow: scroll;
- }
- </style>
|