123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <template>
- <div class="app-container">
- <div class="setting_title">嘉贤子账号</div>
- <el-divider />
- <div class="mymain-container">
- <div class="btn-group clearfix">
- <div class="fl">
- <el-button
- v-if="checkBtnRole('add')"
- size="small"
- type="primary"
- icon="el-icon-plus"
- @click="addOrEdit('add')"
- >新增账号</el-button>
- </div>
- <!-- <div class="fr">-->
- <!-- <ImportButton :im-url="'stock/importToll'" @importSuccess="getList" />-->
- <!-- </div>-->
- </div>
- <div class="table">
- <el-table
- v-loading="listLoading"
- :data="dataList"
- element-loading-text="Loading"
- border
- fit
- highlight-current-row
- stripe
- >
- <el-table-column align="left" label="序号" type="index" width="50" />
- <el-table-column align="left" label="账号" prop="userName" />
- <el-table-column align="left" label="创建时间" prop="createTime" />
- <el-table-column align="left" label="最后登录时间" prop="lastLoginTime" />
- <el-table-column align="left" label="主帐号" prop="isMaster">
- <template slot-scope="scope">
- <el-tag v-if="scope.row.isMaster" type="success">是</el-tag>
- <el-tag v-else type="danger">否</el-tag>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" width="180">
- <template slot-scope="scope">
- <el-button type="text" @click="addOrEdit('edit', scope.row)">修改</el-button>
- <el-button
- v-if="checkBtnRole('detail')"
- type="text"
- @click="setMenuRole(scope.row.adminUserId, 'role')"
- >设置权限</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <div class="pagination clearfix">
- <div class="fr">
- <el-pagination
- :current-page="currentPage"
- :page-sizes="[10, 20, 30, 50]"
- :page-size="10"
- layout="total, sizes, prev, pager, next, jumper"
- :total="listTotal"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </div>
- </div>
- </div>
- <!-- 设置权限 -->
- <el-dialog
- title="设置权限"
- :visible.sync="roleFormVisible"
- :show-close="false"
- width="40%"
- :close-on-click-modal="false"
- custom-class="tree-dialog"
- top="50px"
- >
- <el-tree
- ref="tree"
- :data="menuRoleList"
- show-checkbox
- :check-strictly="true"
- :default-expand-all="true"
- :expand-on-click-node="false"
- node-key="moduleId"
- highlight-current
- :props="defaultProps"
- >
- <span slot-scope="{ node, data }" class="custom-tree-node">
- <span>{{ node.label }}</span>
- <span v-if="data.type < 3">
- <el-button type="text" size="mini" @click="() => quickSelection(data)">一键全选</el-button>
- <el-button
- type="text"
- size="mini"
- style="color: #f56c6c"
- @click="() => quickCancel(data)"
- >一键取消</el-button>
- </span>
- </span>
- </el-tree>
- <div slot="footer" class="dialog-footer">
- <el-button @click="roleFormVisible = false">{{ editId != 1 ? '取 消' : '关 闭' }}</el-button>
- <el-button v-if="editId != 1" type="primary" @click="submitRoleForm('role')">确 定</el-button>
- </div>
- </el-dialog>
- <el-dialog
- :visible.sync="dialogVisible"
- :close-on-click-modal="false"
- width="45%"
- :title="'add' === addFormType ? '新增' : '修改'"
- @close="cancelAddForm"
- >
- <el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="100px" class="demo-ruleForm">
- <el-form-item v-if="addFormType !== 'edit'" label="账号" prop="account">
- <el-input v-model="ruleForm.account" type="text" autocomplete="off" disabled placeholder="系统自动生成" />
- </el-form-item>
- <el-form-item label="子经销商" prop="customerId">
- <el-select v-model="ruleForm.customerId" placeholder="请选择子经销商" filterable style="width:100%">
- <el-option
- v-for="item in subCustomerList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="密码" prop="password">
- <el-input v-model="ruleForm.password" type="password" autocomplete="off" />
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <!-- <el-button type="primary" style="float: left;" @click="setMenuRole">设置权限</el-button>-->
- <el-button @click="cancelAddForm">取 消</el-button>
- <el-button type="primary" @click="submitAddForm">确 定</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { getStagecustomerListV2 } from '@/api/basic_data/dealer'
- import {
- addJiaXianUser,
- deleteRole,
- editRole,
- getJiaXianUserList,
- getMenuList,
- getRoleChecked,
- setMenuRole,
- changePassword
- } from '@/api/setting'
- export default {
- data() {
- return {
- imageURL: this.$imageUrl,
- dataList: null, // 列表数据
- listLoading: true, // 列表加载loading
- currentPage: 1, // 当前页码
- pageSize: 10, // 每页数量
- listTotal: 0, // 列表总数
- editId: null,
- addFormType: 'add',
- addFormVisible: false,
- addForm: {
- name: '' // 角色名
- },
- addFormRules: {
- name: [{ required: true, message: '请输入角色名', trigger: 'blur' }]
- },
- roleFormVisible: false,
- menuRoleList: [],
- defaultProps: {
- children: 'children',
- label: 'moduleName'
- },
- dialogVisible: false,
- ruleForm: {
- account: '',
- password: '',
- customerId: ''
- },
- rules: {
- password: [{ required: true, message: '请输入密码', trigger: 'blur' }],
- customerId: [{ required: true, message: '请选择子经销商', trigger: 'blur' }]
- },
- subCustomerList: []
- }
- },
- computed: {
- ...mapGetters(['userid', 'name', 'customerId'])
- },
- created() {
- this.getList()
- },
- methods: {
- // 查询按钮权限
- checkBtnRole(value) {
- // let btnRole = this.$route.meta.roles;
- // if(!btnRole) {return true}
- // let index = btnRole.indexOf(value);
- // return index >= 0 ? true : false;
- return true
- },
- // 获取子经销商
- getStagecustomerListV2() {
- getStagecustomerListV2({
- pageNum: 1,
- pageSize: -1,
- params: [
- // {
- // param: 'a.higher_prant_number',
- // compare: 'like',
- // value: this.customerId
- // }
- ]
- }).then(res => {
- this.subCustomerList = res.data.records
- })
- },
- getList() {
- this.listLoading = true
- const params = {
- pageNum: this.currentPage,
- pageSize: this.pageSize,
- customerId: this.customerId,
- isMaster: false
- }
- getJiaXianUserList(params).then(res => {
- this.dataList = res.data.records
- this.listTotal = res.data.total
- this.listLoading = false
- })
- },
- // 更改每页数量
- handleSizeChange(val) {
- this.pageSize = val
- this.currentPage = 1
- this.getList()
- },
- // 更改当前页
- handleCurrentChange(val) {
- this.currentPage = val
- this.getList()
- },
- // 操作 - 删除
- handleDelete(id) {
- deleteRole({ adminRoleId: id }).then(res => {
- this.getList()
- this.$successMsg()
- })
- },
- // 新增编辑
- addOrEdit(type, row) {
- this.addFormType = type
- this.dialogVisible = true
- if (type === 'edit') {
- this.$nextTick(() => {
- this.ruleForm = {
- account: row.userName,
- password: '',
- adminUserId: row.adminUserId,
- customerId: row.customerId
- }
- })
- }
- this.getStagecustomerListV2()
- },
- // 取消 新增编辑
- cancelAddForm() {
- this.dialogVisible = false
- this.$nextTick(() => {
- this.$refs.tree && this.$refs.tree.setCheckedKeys([])
- })
- this.$refs.ruleForm.resetFields()
- },
- // 提交 新增编辑
- submitAddForm() {
- this.$refs.ruleForm.validate(valid => {
- const params = {
- userName: this.ruleForm.account,
- password: this.ruleForm.password,
- customerId: this.ruleForm.customerId
- // adminModuleIds:this.$refs.tree ? this.$refs.tree.getCheckedKeys().join(',') :
- }
- if (valid) {
- if (this.addFormType === 'edit') {
- changePassword({
- userName: this.ruleForm.account,
- password: this.ruleForm.password,
- newPassword: this.ruleForm.password
- }).then(res => {
- this.cancelAddForm()
- this.getList()
- this.$successMsg('编辑成功')
- })
- } else {
- addJiaXianUser(params).then(res => {
- this.cancelAddForm()
- this.getList()
- this.$successMsg('新增成功')
- })
- }
- }
- })
- },
- // 设置权限 - 获取列表
- setMenuRole(id, type) {
- this.roleFormVisible = true
- this.editId = id
- getMenuList({ adminUserId: this.userid }).then(res => {
- this.menuRoleList = res.data
- })
- getRoleChecked({ adminUserId: id }).then(res => {
- this.$refs.tree.setCheckedKeys(res.data)
- })
- },
- // 设置权限 - 提交数据
- submitRoleForm(type) {
- const params = {
- adminModuleIds: this.$refs.tree.getCheckedKeys().join(','),
- adminRoleId: this.editId
- }
- setMenuRole(params).then(res => {
- this.getList()
- this.$successMsg()
- })
- this.roleFormVisible = false
- },
- // 一键全选
- quickSelection(data) {
- const nowChecked = this.$refs.tree.getCheckedKeys()
- const thisId = data.moduleId
- let childId = []
- if (data.children.length) {
- childId = this.familyTree(data.children)
- }
- const setChecked = nowChecked.concat([thisId]).concat(childId)
- this.$refs.tree.setCheckedKeys(setChecked)
- },
- // 一键取消
- quickCancel(data) {
- const nowChecked = this.$refs.tree.getCheckedKeys()
- const thisId = data.moduleId
- let childId = []
- if (data.children.length) {
- childId = this.familyTree(data.children)
- }
- const setChecked = nowChecked
- if (setChecked.indexOf(thisId) >= 0) {
- setChecked.splice(setChecked.indexOf(thisId), 1)
- }
- if (childId.length) {
- for (var i = 0; i < childId.length; i++) {
- if (setChecked.indexOf(childId[i]) >= 0) {
- setChecked.splice(setChecked.indexOf(childId[i]), 1)
- }
- }
- }
- this.$refs.tree.setCheckedKeys(setChecked)
- },
- // 递归子id
- familyTree(arr) {
- var temp = []
- var forFn = function(list) {
- for (var i = 0; i < list.length; i++) {
- var item = list[i]
- if (item.children) {
- temp.push(item.moduleId)
- forFn(item.children)
- }
- }
- }
- forFn(arr)
- return temp
- },
- changeStatus(id, status) {
- editRole({
- adminRoleId: id,
- visitSysStatus: status
- }).then(res => {
- this.getList()
- this.$successMsg('编辑成功')
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- ::v-deep .tree-dialog {
- .el-dialog__body {
- padding: 20px;
- .el-tree {
- max-height: calc(100vh - 140px - 54px - 70px);
- overflow-y: scroll;
- padding: 0 30px;
- > .el-tree-node {
- padding: 15px 0;
- border: 1px dashed #ddd;
- margin-bottom: 15px;
- border-radius: 10px;
- }
- }
- }
- }
- ::v-deep .custom-tree-node {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- padding-right: 8px;
- }
- </style>
|