123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410 |
- <template>
- <el-row>
- <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
- :underline="false"
- type="primary"
- icon="el-icon-edit"
- size="small"
- @click="$refs.crud.rowView(row,index)"
- >查看</el-link>
- <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-input
- class="marleft10"
- v-model="fromss.projectAndUserList[key].contractName"
- :disabled="true"
- ></el-input>
- <el-input
- class="marleft10"
- v-model="fromss.projectAndUserList[key].roleName"
- :disabled="true"
- ></el-input>
- <el-button
- @click="deleteProject(key,type)"
- class="marleft10"
- type="danger"
- icon="el-icon-delete"
- circle
- ></el-button>
- </div>
- </template>
- <!-- 参与项目自定义表单 -->
- <template slot="projectIdForm">
- <el-select
- v-model="fromss.projectId"
- 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">
- <el-select
- v-model="fromss.contractId"
- placeholder="请选择"
- >
- <el-option
- v-for="item in contractData"
- :key="item.id"
- :label="item.projectName"
- :value="item.id"
- >
- </el-option>
- </el-select>
- </template>
- <!-- 用户类型自定义表单 -->
- <template
- slot-scope="{type}"
- slot="roleIdsForm"
- >
- <div class="flexStar">
- <el-select
- v-model="fromss.roleIds"
- placeholder="请选择"
- >
- <el-option
- v-for="item in roleIdsData"
- :key="item.id"
- :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="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, unlock
- } 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();
- }
- };
- return {
- addData: {
- tenantId: '',
- deptId: ''
- },
- form: {},
- search: {},
- roleBox: false,
- excelBox: false,
- platformBox: false,
- initFlag: true,
- selectionList: [],
- query: {},
- loading: true,
- platformLoading: false,
- page: {
- pageSize: 10,
- 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
- },
- {
- 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,
- message: "请输入手机号",
- trigger: "blur",
- }],
- },
- {
- label: "身份证号",
- prop: "idNumber",
- },
- {
- label: "所属部门",
- prop: "deptId",
- type: "tree",
- multiple: true,
- dicData: [],
- props: {
- label: "title"
- },
- checkStrictly: true,
- 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,
- // message: "请先添加参加项目",
- // 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.$refs.crud.rowAdd()
- },
- addProject (type) {//确定添加参建项目
- if (type == 'add') {
- this.addfangfa()
- } else {
- const tag = true
- if (!this.fromss.projectId) {
- this.$message({
- type: "error",
- message: "请选择参与项目!"
- })
- return tag = false
- }
- if (!this.fromss.contractId) {
- this.$message({
- type: "error",
- message: "请选择合同段!"
- })
- return tag = false
- }
- if (!this.fromss.roleIds) {
- this.$message({
- type: "error",
- message: "请选择用户类型!"
- })
- return tag = false
- }
- if (tag) {
- this.saveUserInfoByProjectTow([{
- projectId: this.fromss.projectId,
- contractId: this.fromss.contractId,
- roleId: this.fromss.roleIds,
- userId: this.fromss.userId
- }])
- }
- }
- },
- addfangfa () {//添加时确定添加按钮方法处理
- let tag = true
- if (!this.fromss.projectId) {
- this.$message({
- type: "error",
- message: "请选择参与项目!"
- })
- tag = false
- return
- }
- if (!this.fromss.contractId) {
- this.$message({
- type: "error",
- message: "请选择合同段!"
- })
- tag = false
- return
- }
- if (!this.fromss.roleIds) {
- this.$message({
- type: "error",
- message: "请选择用户类型!"
- })
- tag = false
- return
- }
- this.fromss.projectAndUserList.forEach((val) => {
- if (val.projectId == this.fromss.projectId && val.contractId == this.fromss.contractId) {
- this.$message({
- type: "error",
- message: "参与项目的合同段不能相同!"
- })
- tag = false
- return
- }
- if (tag == false) return
- })
- if (tag == false) return
- let tas = {
- projectName: '',
- contractName: '',
- roleType: '',
- roleName: ''
- }
- this.projectData.forEach(val => {
- if (val.id === this.fromss.projectId) {
- tas.projectName = val.projectName
- }
- })
- this.contractData.forEach(val => {
- if (val.id === this.fromss.contractId) {
- tas.contractName = val.projectName
- }
- })
- this.roleIdsData.forEach(val => {
- if (val.roleId === this.fromss.roleIds) {
- tas.roleName = val.roleName
- }
- })
- this.fromss.projectAndUserList.push({
- projectId: this.fromss.projectId,
- contractId: this.fromss.contractId,
- roleId: this.fromss.roleIds,
- projectName: tas.projectName,
- contractName: tas.contractName,
- roleName: tas.roleName
- })
- this.fromss.projectId = ''
- this.fromss.contractId = ''
- this.fromss.roleIds = ''
- },
- 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)
- },
- deleteProject (key, type) {//删除参建项目按钮
- if (type == 'add') {
- this.fromss.projectAndUserList.splice(this.fromss.projectAndUserList[key], 1)
- } else {
- this.removeUsersByIds(this.fromss.projectAndUserList[key].id)
- }
- },
- beforeClose (done) {//弹框关闭事件
- this.fromss = {
- userId: '',//
- projectAndUserList: [],
- projectId: '',//参与项项目
- contractId: '',//合同段
- roleIds: '',//用户类型
- },
- done()
- },
- async removeUsersByIds (ids) {//删除参建项目
- const { data: res } = await removeUsersByIds(ids)
- console.log(res);
- if (res.code == 200) {
- this.findProjectAndContractList(this.fromss.userId)
- }
- },
- async getProjectList () {//项目类型
- const { data: res } = await getProjectList()
- 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 => {
- if (val.roleType) {
- val.roleName = val.roleType + ' | ' + val.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)
- }
- },
- //#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) {
- // roletree(tenantId).then(res => {
- // const column = this.findObject(this.option.group, "roleId");
- // column.dicData = res.data.data;
- // });
- //所属部门
- getDeptTree(tenantId).then(res => {
- const column = this.findObject(this.option.group, "deptId");
- column.dicData = res.data.data;
- });
- // 所属岗位
- // getPostList(tenantId).then(res => {
- // const column = this.findObject(this.option.group, "postId");
- // 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) { //新增保存
- add({ ...row, projectAndUserList: this.fromss.projectAndUserList }).then(() => {
- this.initFlag = false;
- this.onLoad(this.page);
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- done();
- }, () => {
- loading();
- });
- },
- rowUpdate (row, index, done, loading) {//修改按钮
- row.deptId = row.deptId.join(",");
- row.roleId = row.roleId.join(",");
- row.postId = row.postId.join(",");
- update({ ...row, projectAndUserList: this.fromss.projectAndUserList }).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;
- },
- 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("deptId")) {
- this.form.deptId = this.form.deptId.split(",");
- }
- 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.form.deptId = this.addData.deptId
- }
- 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>
- .box {
- height: 800px;
- }
- .el-scrollbar {
- height: 100%;
- }
- .box .el-scrollbar__wrap {
- overflow: scroll;
- }
- </style>
|