123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182 |
- <template>
- <div class="app-container">
- <el-row :gutter="20">
- <!--部门数据-->
- <el-col :span="4" :xs="24">
- <div class="head-container">
- <el-input v-model="deptName" placeholder="请输入部门名称" clearable size="small" prefix-icon="el-icon-search" style="margin-bottom: 20px" />
- </div>
- <div class="head-container">
- <el-tree :data="deptOptions" :props="defaultProps" :expand-on-click-node="false" :filter-node-method="filterNode" ref="tree" @node-click="handleNodeClick" />
- </div>
- </el-col>
- <!--用户数据-->
- <el-col :span="20" :xs="24">
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
- <el-form-item label="员工后台昵称" prop="nickName">
- <el-input v-model="queryParams.nickName" placeholder="请输入员工后台昵称" clearable size="small" style="width: 240px" @keyup.enter.native="handleQuery" />
- </el-form-item>
- <el-form-item label="手机号码" prop="phonenumber">
- <el-input v-model="queryParams.phonenumber" placeholder="请输入手机号码" clearable size="small" style="width: 240px" @keyup.enter.native="handleQuery" />
- </el-form-item>
- <el-form-item label="状态" prop="status">
- <el-select v-model="queryParams.status" placeholder="员工状态" clearable size="small" style="width: 240px" @change="handleQuery">
- <el-option v-for="dict in statusOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" />
- </el-select>
- </el-form-item>
- <el-form-item label="企微状态" prop="qwStatus">
- <el-select v-model="queryParams.qwStatus" placeholder="企微绑定状态" clearable size="small" style="width: 240px" @change="handleQuery">
- <el-option v-for="dict in qwStatusOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" />
- </el-select>
- </el-form-item>
- <el-form-item label="创建时间">
- <el-date-picker v-model="dateRange" size="small" style="width: 240px" value-format="yyyy-MM-dd" type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button plain type="primary" icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['company:user:add']">新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button plain type="success" icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate" v-hasPermi="['company:user:edit']">修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button plain type="danger" icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete" v-hasPermi="['company:user:remove']">删除</el-button>
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button plain type="info" icon="el-icon-upload2" size="mini" @click="handleImport" v-hasPermi="['company:user:import']">导入</el-button>
- </el-col> -->
- <el-col :span="1.5">
- <el-button plain type="warning" icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['company:user:export']">导出</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- size="mini"
- @click="synOpen=true"
- v-hasPermi="['qw:user:sync']"
- >同步企微员工和部门</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- size="mini"
- @click="synNameOpen=true"
- v-hasPermi="['qw:user:sync']"
- >同步企微员工名称</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- size="mini"
- :disabled="multiple"
- @click="handerCompanyUserAreaList"
- >批量设置销售所属区域(原有的暂用)</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- size="mini"
- :disabled="multiple"
- @click="handleSetRegister"
- >设置单独注册会员</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- size="mini"
- :disabled="multiple"
- @click="handleAllowedAllRegister"
- >允许注册会员开关</el-button>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table height="500" border v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="50" align="center" />
- <el-table-column label="ID" align="center" prop="userId" :show-overflow-tooltip="true" />
- <el-table-column label="员工账号" align="center" prop="userName" :show-overflow-tooltip="true" width="100" />
- <el-table-column label="员工昵称" align="center" prop="nickName" :show-overflow-tooltip="true" width="100"/>
- <el-table-column label="部门" align="center" prop="deptName" :show-overflow-tooltip="true" />
- <el-table-column label="手机号码" align="center" prop="phonenumber" width="120" />
- <el-table-column label="二维码" align="center" prop="qrCodeWeixin">
- <template slot-scope="scope">
- <!-- 显示已上传的二维码 -->
- <el-image
- v-if="scope.row.qrCodeWeixin"
- style="width: 80px; height: 80px; margin-bottom: 5px; display: block; margin-left: auto; margin-right: auto;"
- :src="scope.row.qrCodeWeixin"
- :preview-src-list="[scope.row.qrCodeWeixin]"
- fit="contain">
- <div slot="error" class="image-slot">
- <i class="el-icon-picture-outline"></i>
- </div>
- </el-image>
- <!-- 上传组件 -->
- <el-upload
- class="avatar-uploader"
- action="#"
- :show-file-list="false"
- :http-request="(options) => handleCustomUpload(options, scope.row)"
- :before-upload="(file) => beforeImageUpload(file, scope.row)"
- >
- <el-button size="small" type="primary" :loading="scope.row.uploading">
- {{ scope.row.qrCodeWeixin ? '更换图片' : '上传图片' }}
- <i class="el-icon-upload el-icon--right"></i>
- </el-button>
- </el-upload>
- <div v-if="scope.row.uploadError" class="el-upload__tip" style="color: red;">
- {{ scope.row.uploadError }}
- </div>
- </template>
- </el-table-column>
- <el-table-column label="状态" align="center">
- <template slot-scope="scope">
- <el-switch v-model="scope.row.status" active-value="0" inactive-value="1" @change="handleStatusChange(scope.row)"></el-switch>
- </template>
- </el-table-column>
- <el-table-column label="企微状态" align="center">
- <template slot-scope="scope">
- <dict-tag :options="qwStatusOptions" :value="scope.row.qwStatus"/>
- </template>
- </el-table-column>
- <el-table-column label="区域" align="center" prop="addressId">
- </el-table-column>
- <el-table-column label="是否单独注册会员" align="center" prop="isNeedRegisterMember" width="80px">
- <template slot-scope="scope">
- <el-tag
- :type="scope.row.isNeedRegisterMember === 1 ? 'success' : 'info'">{{scope.row.isNeedRegisterMember === 1 ? '是' : '否' }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="创建时间" sortable align="center" prop="createTime" width="160">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column label="允许注册会员" align="center" prop="isNeedRegisterMember" width="80px">
- <template slot-scope="scope">
- <el-tag
- :type="scope.row.isAllowedAllRegister === 1 ? 'success' : 'info'">{{scope.row.isAllowedAllRegister === 1 ? '是' : '否' }}</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- v-if="scope.row.qwStatus == 0"
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="qwBind(scope.row)"
- v-hasPermi="['qw:user:bind']"
- >绑定企微</el-button>
- <el-button
- v-else
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="qwBind(scope.row)"
- v-hasPermi="['qw:user:bind']"
- >查或换绑企微</el-button>
- <el-button v-if="scope.row.userType !== '00'" size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['company:user:edit']">修改</el-button>
- <!--<el-button v-if="scope.row.userType !== '00'" size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['company:user:remove']">删除</el-button>-->
- <el-button size="mini" type="text" icon="el-icon-key" @click="handleResetPwd(scope.row)" v-hasPermi="['company:user:resetPwd']">重置密码</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
- </el-col>
- </el-row>
- <el-dialog title="绑定企微账号" :visible.sync="qwOpen" width="800px" append-to-body >
- <el-form ref="form" :model="form" label-width="80px" >
- <el-form-item label="查询" prop="companyUserId">
- <el-button type="primary" icon="el-icon-search" @click="selectQwUser()" size="mini">搜索账号</el-button>
- </el-form-item>
- <el-form-item label="企微账号" prop="companyUserId">
- <el-tag
- style="margin-left: 5px"
- size="medium"
- :key="id"
- v-for="id in qwUser"
- closable
- :disable-transitions="false"
- @close="handleClosegroupUser(id)">
- <span v-for="list in qwUserList" :key="list.qwUserId" v-if="list.id==id">{{list.qwUserName}}({{list.corpName}})
- </span>
- </el-tag>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="qwSubmitForm">绑 定</el-button>
- <el-button @click="qwCancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog title="绑定个微账号" :visible.sync="gwOpen" width="800px" append-to-body>
- <el-form ref="gwForm" :model="gwForm" label-width="80px">
- <el-form-item label="查询" prop="companyUserId">
- <el-button type="primary" icon="el-icon-search" @click="selectGwUser()" size="mini">搜索账号</el-button>
- </el-form-item>
- <el-form-item label="个微账号" prop="companyUserId">
- <el-tag
- style="margin-left: 5px"
- size="medium"
- :key="id"
- v-for="id in qwUser"
- closable
- :disable-transitions="false"
- @close="handleClosegroupUser(id)">
- <span v-for="list in qwUserList" :key="list.qwUserId" v-if="list.id==id">{{list.qwUserName}}({{list.corpName}})
- </span>
- </el-tag>
- </el-form-item>
- </el-form>
- </el-dialog>
- <el-dialog title="选择企微主体" :visible.sync="synOpen" width="800px" append-to-body>
- <el-form label-width="80px">
- <el-form-item label="企微公司" prop="corpId">
- <el-select v-model="synform.corpId" placeholder="企微公司" >
- <el-option
- v-for="dict in myQwCompanyList"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="synSubmitForm">确 定</el-button>
- <el-button @click="synOpen=false">取 消</el-button>
- </div>
- </el-dialog>`
- <!-- 添加或修改参数配置对话框 -->
- <el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-row>
- <el-col :span="12">
- <el-form-item label="员工姓名" prop="nickName">
- <el-input v-model="form.nickName" placeholder="请输入员工后台昵称搜索" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="归属部门" prop="deptId">
- <treeselect v-model="form.deptId" :options="deptOptions" :show-count="true" placeholder="请选择归属部门" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="手机号码" prop="phonenumber">
- <el-input v-model="form.phonenumber" placeholder="请输入手机号码" maxlength="11" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="邮箱" prop="email">
- <el-input v-model="form.email" placeholder="请输入邮箱" maxlength="50" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item v-if="form.userId == undefined" label="员工工号" prop="userName">
- <el-input v-model="form.userName" placeholder="请输入员工工号" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item v-if="form.userId == undefined" label="用户密码" prop="password">
- <el-input v-model="form.password" placeholder="请输入用户密码" type="password" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="员工性别">
- <el-select v-model="form.sex" placeholder="请选择">
- <el-option v-for="dict in sexOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="状态">
- <el-radio-group v-model="form.status">
- <el-radio v-for="dict in statusOptions" :key="dict.dictValue" :label="dict.dictValue">{{dict.dictLabel}}</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="岗位">
- <el-select v-model="form.postIds" multiple placeholder="请选择">
- <el-option v-for="item in postOptions" :key="item.postId" :label="item.postName" :value="item.postId" :disabled="item.status == 1"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="角色">
- <el-select v-model="form.roleIds" multiple placeholder="请选择">
- <el-option v-for="item in roleOptions" :key="item.roleId" :label="item.roleName" :value="item.roleId" :disabled="item.status == 1"></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="12">
- <el-form-item label="身份证号">
- <el-input v-model="form.idCard" placeholder="请输入身份证号" maxlength="18" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="销售区域" prop="addressId">
- <el-select v-model="form.addressId" filterable placeholder="请选择所属销售的区域" style="width: 200px;">
- <el-option
- v-for="item in citysAreaList"
- :key="item.cityId"
- :label="item.cityName"
- :value="item.cityId"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-form-item label="数据权限" prop="userType">
- <el-radio-group v-model="form.userType">
- <el-radio v-for="dict in userTypeOptions" :key="dict.dictValue" :label="dict.dictValue">{{dict.dictLabel}}</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-form-item label="备注">
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-form-item label="二级域名">
- <el-input v-model="form.domain" :disabled="true" type="input" placeholder="请输入域名" style="width: 85%;"></el-input>
- <el-button type="primary" @click="generateSubDomain" style="margin-left: 10px;">生成</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <el-dialog :title="user.title" :visible.sync="user.open" width="800px" append-to-body>
- <selectUser ref="selectUser" @bindQwUser="bindQwUser"></selectUser>
- </el-dialog>
- <el-dialog :title="companyUserArea.title" :visible.sync="companyUserArea.open" width="300px" append-to-body>
- <el-select v-model="addressId" filterable placeholder="请选择所属销售的区域" style="width: 200px;">
- <el-option
- v-for="item in citysAreaList"
- :key="item.cityId"
- :label="item.cityName"
- :value="item.cityId"
- ></el-option>
- </el-select>
- <div slot="footer" style="text-align: center;">
- <el-button type="primary" @click="submitFormArea(addressId)">确 定</el-button>
- <el-button @click="cancelArea">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 设置单独注册会员弹窗 -->
- <el-dialog title="设置单独注册会员" :visible.sync="registerOpen" width="400px" append-to-body>
- <el-form ref="registerForm" :model="registerForm" label-width="180px">
- <el-form-item label="是否需要开启单独注册">
- <el-switch v-model="registerForm.status" active-value="true" inactive-value="false"></el-switch>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitRegisterForm">确 定</el-button>
- <el-button @click="registerOpen = false">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 是否允许所有方式注册会员弹窗 -->
- <el-dialog title="允许注册会员" :visible.sync="allowedAllRegisterOpen" width="400px" append-to-body>
- <el-form ref="registerForm" :model="allowedAllRegisterForm" label-width="180px">
- <el-form-item label="是否允许注册会员">
- <el-switch v-model="allowedAllRegisterForm.status" active-value="true" inactive-value="false"></el-switch>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitAllowedAllRegisterForm">确 定</el-button>
- <el-button @click="allowedAllRegisterOpen = false">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- qwList,
- delUser,
- addUser,
- getUser,
- updateUser,
- exportUser,
- resetUserPwd,
- changeUserStatus,
- importTemplate,
- generateSubDomain,
- getCitysAreaList, updateCompanyUserAreaList,
- setIsRegisterMember,
- isAllowedAllRegister
- } from '@/api/company/companyUser'
- import { getToken } from "@/utils/auth";
- import { treeselect } from "@/api/company/companyDept";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import {bindQwUser, getQwUserList, addQwUser, getQwUser, getQwUserByIds,addQwUserName} from '@/api/qw/user';
- import { syncDept } from '@/api/qw/qwDept';
- import { getMyQwUserList,getMyQwCompanyList } from "@/api/qw/user";
- import selectUser from "@/views/company/components/selectQwUser.vue";
- import {listWxUser} from "@/api/wxUser/wxUser";
- import GwQueryListDialog from "@/views/company/companyUser/gwQueryListDialog/gwQueryListDialog.vue";
- import axios from "axios";
- export default {
- name: "User",
- components: { Treeselect ,selectUser},
- data() {
- return {
- uploadUrl: process.env.VUE_APP_BASE_API+"/company/user/common/uploadOSS",
- // 遮罩层
- loading: false,
- qwUserList:[],
- qwUserId:[],
- myQwCompanyList:[],
- qwUser:[],
- user:{
- open:false,
- title:"搜索企业"
- },
- // 选中数组
- ids: [],
- synform:{corpId:null},
- synOpen:false,
- synNameform:{corpId:null},
- synNameOpen:false,
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 用户表格数据
- userList: null,
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- // 是否显示弹出层
- open: false,
- qwOpen:false,
- // 部门名称
- deptName: undefined,
- // 日期范围
- dateRange: [],
- // 状态数据字典
- statusOptions: [],
- // 性别状态字典
- sexOptions: [],
- // 岗位选项
- postOptions: [],
- // 角色选项
- roleOptions: [],
- userTypeOptions:[
- { "dictLabel": "临时管理员","dictValue": "02"},
- { "dictLabel": "普通用户","dictValue": "01"}
- ],
- qwForm:{
- id:null,
- companyUserId:null,
- },
- companyUserArea:{
- open:false,
- title:"分配区域",
- },
- //选择的区域
- addressId:null,
- citysAreaList:[],
- // 表单参数
- form: {},
- defaultProps: {
- children: "children",
- label: "label",
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- userName: null,
- phonenumber: null,
- status: null,
- deptId: null,
- qwStatus:null,
- },
- qwStatusOptions:[],
- // 表单校验
- rules: {
- userName: [
- { required: true, message: "员工工号不能为空", trigger: "blur" },
- ],
- nickName: [
- { required: true, message: "员工姓名不能为空", trigger: "blur" },
- ],
- deptId: [
- { required: true, message: "归属部门不能为空", trigger: "blur" },
- ],
- addressId: [
- { required: true, message: "销售所属区域不能为空", trigger: "blur" },
- ],
- password: [
- { required: true, message: "员工密码不能为空", trigger: "blur" },
- {
- pattern: /^(?=.*[A-Za-z])(?=.*\d)(?=.*[^A-Za-z0-9]).{8,20}$/,
- message: "密码长度为 8-20 位,必须包含字母、数字和特殊字符",
- trigger: ["blur", "change"],
- }
- ],
- idCard: [
- { required: true, message: "身份证号不能为空", trigger: "blur" },
- ],
- // email: [
- // { required: true, message: "邮箱地址不能为空", trigger: "blur" },
- // {
- // type: "email",
- // message: "'请输入正确的邮箱地址",
- // trigger: ["blur", "change"],
- // },
- // ],
- phonenumber: [
- { required: true, message: "手机号码不能为空", trigger: "blur" },
- {
- pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
- message: "请输入正确的手机号码",
- trigger: "blur",
- },
- ],
- userType: [
- { required: true, message: "数据权限不能为空", trigger: "change" },
- ],
- domain: [
- {
- pattern: /^(?:(?:(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]*[a-zA-Z0-9])?\.)+[a-zA-Z]{2,})|(?:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))$/,
- message: "请输入正确的二级域名",
- trigger: "blur",
- }
- ],
- },
- registerOpen: false,
- registerForm: {
- status: false
- },
- // 是否允许注册会员开关
- allowedAllRegisterOpen: false,
- allowedAllRegisterForm: {
- status: true
- },
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- },
- },
- created() {
- getCitysAreaList().then(res=>{
- this.citysAreaList=res.data;
- })
- this.getList();
- this.getTreeselect();
- this.getDicts("sys_normal_disable").then((response) => {
- this.statusOptions = response.data;
- });
- this.getDicts("company_user_sex").then((response) => {
- this.sexOptions = response.data;
- });
- this.getConfigKey("sys.user.initPassword").then((response) => {
- this.initPassword = response.msg;
- });
- this.getDicts("sys_qw_user_status").then(response => {
- this.qwStatusOptions = response.data;
- });
- getMyQwCompanyList().then(response => {
- this.myQwCompanyList = response.data;
- });
- },
- methods: {
- /**
- * 上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise且被 reject,则停止上传。
- * @param {File} file - 用户选择的文件对象
- * @param {Object} row - 当前行的数据对象
- */
- beforeImageUpload(file, row) {
- // 清除之前的错误信息
- this.$set(row, 'uploadError', '');
- const isJPG = file.type === 'image/jpeg';
- const isPNG = file.type === 'image/png';
- const isGIF = file.type === 'image/gif'; // 根据需要添加更多格式
- const isValidFormat = isJPG || isPNG || isGIF;
- const isLt2M = file.size / 1024 / 1024 < 2; // 限制图片大小为 2MB
- if (!isValidFormat) {
- const errorMsg = '上传二维码图片只能是 JPG/PNG/GIF 格式!';
- this.$message.error(errorMsg);
- this.$set(row, 'uploadError', errorMsg); // 在行内显示错误
- return false;
- }
- if (!isLt2M) {
- const errorMsg = '上传二维码图片大小不能超过 2MB!';
- this.$message.error(errorMsg);
- this.$set(row, 'uploadError', errorMsg); // 在行内显示错误
- return false;
- }
- return true; // 校验通过,允许上传
- },
- /**
- * 自定义上传方法
- * @param {Object} options - Element UI upload 组件传递的参数,包含 file, onSuccess, onError, onProgress 等
- * @param {Object} row - 当前行的数据对象
- */
- async handleCustomUpload(options, row) {
- const file = options.file;
- const formData = new FormData();
- formData.append('file', file);
- formData.append('userId',row.userId)
- this.$set(row, 'uploading', true);
- this.$set(row, 'uploadError', '');
- try {
- const response = await axios.post(this.uploadUrl, formData, {
- headers: {
- 'Content-Type': 'multipart/form-data',
- },
- onUploadProgress: progressEvent => {
- const percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total);
- console.log(`上传进度: ${percentCompleted}%`);
- }
- });
- if (response.data && (response.data.url || (response.data.data && response.data.data.url))) {
- const imageUrl = response.data.url || response.data.data.url;
- this.$set(row, 'qrCodeWeixin', imageUrl); // 更新行数据中的图片URL
- this.$message.success('图片上传成功!');
- options.onSuccess(response.data, file); // 通知el-upload上传成功 (虽然我们自定义了,但调用一下也无妨)
- } else {
- const errorMsg = response.data.message || '图片上传失败,服务器未返回有效URL';
- this.$message.error(errorMsg);
- this.$set(row, 'uploadError', errorMsg);
- options.onError(new Error(errorMsg), file); // 通知el-upload上传失败
- }
- } catch (error) {
- console.error('上传失败:', error);
- let errorMsg = '图片上传失败';
- if (error.response && error.response.data && error.response.data.message) {
- errorMsg = error.response.data.message;
- } else if (error.message) {
- errorMsg = error.message;
- }
- this.$message.error(errorMsg);
- this.$set(row, 'uploadError', errorMsg);
- options.onError(error, file); // 通知el-upload上传失败
- } finally {
- this.$set(row, 'uploading', false); // 无论成功失败,结束上传状态
- }
- },
- requestUpload() {
- },
- beforeUpload(){
- console.log(file.type)
- const isPic =
- file.type === 'image/jpeg' ||
- file.type === 'image/png' ||
- file.type === 'image/gif' ||
- file.type === 'image/jpg' ||
- file.type === 'audio/mpeg'
- const isLt2M = file.size / 1024 / 1024 < 2
- if (!isPic) {
- this.$message.error('上传图片只能是 JPG、JPEG、PNG、GIF 格式!')
- return false
- }
- if (!isLt2M) {
- this.$message.error('上传头像图片大小不能超过 2MB!')
- }
- return isPic && isLt2M
- },
- submitFormArea(address){
- const uIds = this.ids;
- if (address == null){
- this.$message.error("请选择地区");
- return;
- }
- updateCompanyUserAreaList({userIds:uIds,addressId:address}).then(res=>{
- this.companyUserArea.open=false;
- this.getList();
- this.msgSuccess("操作成功");
- })
- },
- // 绑定个微
- gwBind(row){
- this.gwOpen = true
- },
- // 查询个微账号
- selectGwUser(){
- listWxUser().then(res=>{
- this.gwSearchOpen = true;
- })
- },
- /** 查询用户列表 */
- getList() {
- this.loading = true;
- qwList(this.addDateRange(this.queryParams, this.dateRange)).then(
- (response) => {
- this.userList = response.rows;
- this.total = response.total;
- this.loading = false;
- console.log(" this.userList ", this.userList )
- }
- );
- },
- selectQwUser(){
- this.user.open=true;
- },
- handleClosegroupUser(list){
- const index = this.qwUser.findIndex(t => t === list);
- if (index !== -1) {
- this.qwUser.splice(index, 1);
- }
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then((response) => {
- this.deptOptions = response.data;
- });
- },
- // 筛选节点
- filterNode(value, data) {
- if (!value) return true;
- return data.label.indexOf(value) !== -1;
- },
- // 节点单击事件
- handleNodeClick(data) {
- this.queryParams.deptId = data.id;
- this.getList();
- },
- // 用户状态修改
- handleStatusChange(row) {
- let text = row.status === "0" ? "启用" : "停用";
- this.$confirm(
- '确认要"' + text + '""' + row.userName + '"用户吗?',
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- )
- .then(function () {
- return changeUserStatus(row.userId, row.status);
- })
- .then(() => {
- this.msgSuccess(text + "成功");
- })
- .catch(function () {
- row.status = row.status === "0" ? "1" : "0";
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- cancelArea(){
- this.companyUserArea.open=false;
- this.addressId=null;
- },
- qwCancel() {
- this.qwOpen = false;
- this.qwUserId=null;
- },
- handerCompanyUserAreaList(){
- this.companyUserArea.open=true;
- },
- // 表单重置
- reset() {
- this.form = {
- userId: undefined,
- deptId: undefined,
- userName: undefined,
- nickName: undefined,
- password: undefined,
- idCard: undefined,
- phonenumber: undefined,
- email: undefined,
- sex: undefined,
- status: "0",
- remark: undefined,
- domain: undefined,
- postIds: [],
- roleIds: [],
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.page = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.userId);
- this.single = selection.length != 1;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.getTreeselect();
- getUser().then((response) => {
- this.postOptions = response.posts;
- this.roleOptions = response.roles;
- this.open = true;
- this.title = "添加员工";
- this.form.password = null;
- this.form.userType = "01"; //普通用户
- });
- },
- qwBind(row){
- this.qwUser=[];
- this.qwUserList=[];
- this.qwForm.companyUserId=row.userId
- getUser(row.userId).then((response) => {
- if(response.data.qwUserId!=null){
- this.qwUser=((response.data.qwUserId).split(",").map(Number))
- getQwUserByIds(this.qwUser).then(res => {
- this.qwUserList=res.data;
- })
- // this.qwUser.forEach(item => {
- // getQwUser(item).then(response => {
- // this.qwUserList.push(response.data);
- // });
- // });
- }
- this.qwOpen = true;
- });
- },
- bindQwUser(row){
- this.user.open=false;
- if (!this.qwUserList.some(item => item.id == row.id)) {
- this.qwUserList.push(row)
- }
- if (!this.qwUser.some(item => item == row.id)) {
- this.qwUser.push(row.id);
- }
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- this.getTreeselect();
- const userId = row.userId || this.ids;
- getUser(userId).then((response) => {
- this.form = response.data;
- this.postOptions = response.posts;
- this.roleOptions = response.roles;
- this.form.postIds = response.postIds;
- this.form.roleIds = response.roleIds;
- this.open = true;
- this.title = "修改员工";
- this.form.password = "";
- });
- },
- /** 重置密码按钮操作 */
- handleResetPwd(row) {
- this.$prompt('请输入"' + row.userName + '"的新密码', "提示", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- inputPlaceholder: "8-20 位,包含字母、数字和特殊字符",
- inputValidator: (value) => {
- const pattern = /^(?=.*[A-Za-z])(?=.*\d)(?=.*[^A-Za-z0-9]).{8,20}/;
- const hasChinese = /[\u4e00-\u9fa5]/.test(value);
- const hasFullWidth = /[!-~]/.test(value);
- if (hasChinese) return '不能包含中文字符';
- if (hasFullWidth) return '不能包含全角符号,请使用英文输入法';
- if (!pattern.test(value)) return '密码格式错误:需包含字母、数字和英文特殊字符,长度为 8-20 位';
- return true;
- }
- })
- .then(({ value }) => {
- resetUserPwd(row.userId, value).then((response) => {
- if (response.code === 200) {
- this.msgSuccess("修改成功,新密码是:" + value);
- }
- });
- })
- .catch(() => {});
- },
- /** 提交按钮 */
- submitForm: function () {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- if (this.form.userId != undefined) {
- updateUser(this.form).then((response) => {
- if (response.code === 200) {
- this.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- }
- });
- } else {
- addUser(this.form).then((response) => {
- if (response.code === 200) {
- this.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- }
- });
- }
- }
- });
- },
- /**
- * 同步企业微信员工
- */
- synSubmitForm() {
- this.synOpen=false;
- this.loading=true;
- this.msgSuccess("");
- let loadingRock = this.$loading({
- lock: true,
- text: '同步中.....请等待.....请不要重复点击!!',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- addQwUser(this.synform.corpId).then(response => {
- this.msgSuccess("同步成功");
- this.getList();
- this.synOpen=false;
- }).finally(()=>{
- this.loading=false;
- this.synOpen=false;
- loadingRock.close();
- });
- },
- synNameSubmitForm() {
- this.synNameOpen=false;
- this.loading=true;
- this.msgSuccess("");
- let loadingRock = this.$loading({
- lock: true,
- text: '同步中.....请等待.....请不要重复点击!!',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- addQwUserName(this.synNameform.corpId).then(response => {
- this.msgSuccess("同步成功");
- this.getList();
- this.synNameOpen=false;
- }).finally(()=>{
- this.loading=false;
- this.synNameOpen=false;
- loadingRock.close();
- });
- },
- /**
- * 同步企业微信部门
- */
- qwSyncDept(){
- syncDept().then(response => {
- this.msgSuccess("同步成功");
- this.getList();
- }).catch(()=>{
- this.msgError("同步失败:"+response.msg);
- })
- },
- qwSubmitForm(){
- let loadingRock = this.$loading({
- lock: true,
- text: '绑定中.....同步客户信息中.....',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
- this.qwForm.id = (this.qwUser).join(',');
- bindQwUser(this.qwForm).then(response => {
- this.msgSuccess("绑定成功");
- this.qwOpen = false;
- this.getList();
- this.qwUserId=null;
- this.qwUser=[];
- }).finally(res=>{
- loadingRock.close()
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const userIds = row.userId || this.ids;
- this.$confirm(
- '是否确认删除员工编号为"' + userIds + '"的数据项?',
- "警告",
- {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- }
- )
- .then(function () {
- return delUser(userIds);
- })
- .then(() => {
- this.getList();
- this.msgSuccess("删除成功");
- })
- .catch(function () {});
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm("是否确认导出所有用户数据项?", "警告", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(function () {
- return exportUser(queryParams);
- })
- .then((response) => {
- this.download(response.msg);
- })
- .catch(function () {});
- },
- // /** 导入按钮操作 */
- // handleImport() {
- // this.upload.title = "用户导入";
- // this.upload.open = true;
- // },
- /** 下载模板操作 */
- importTemplate() {
- importTemplate().then((response) => {
- this.download(response.msg);
- });
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- // 生成子域名
- generateSubDomain() {
- generateSubDomain().then(response => {
- this.form.domain = response.data;
- });
- },
- /** 设置单独注册会员按钮操作 */
- handleSetRegister() {
- this.registerOpen = true;
- this.registerForm.status = false;
- },
- /** 提交设置单独注册会员 */
- submitRegisterForm() {
- setIsRegisterMember({status: this.registerForm.status}, this.ids).then(response => {
- if (response.code === 200) {
- this.msgSuccess("设置成功");
- this.registerOpen = false;
- this.getList();
- }
- });
- },
- /** 开关是否允许所有方式注册会员 */
- handleAllowedAllRegister() {
- this.allowedAllRegisterOpen = true;
- // this.allowedAllRegisterForm.status = true;
- },
- // 提交
- submitAllowedAllRegisterForm(){
- isAllowedAllRegister({status: this.allowedAllRegisterForm.status}, this.ids).then(response => {
- if (response.code === 200) {
- this.msgSuccess("操作成功");
- this.allowedAllRegisterOpen = false;
- this.getList();
- }
- });
- },
- },
- };
- </script>
|