264 lines
8.8 KiB
Vue
Raw Normal View History

2024-01-23 17:05:40 +08:00
<template>
<a-modal
2024-03-25 11:01:45 +08:00
title='操作'
style='top: 20px;'
:width='800'
v-model='visible'
:confirmLoading='confirmLoading'
@ok='handleSubmit'
2024-01-23 17:05:40 +08:00
>
2024-03-25 11:01:45 +08:00
<a-spin :spinning='spinning'>
<a-form :form='form'>
<a-form-item style='display:none'>
<a-input v-decorator="['id']" />
2024-01-23 17:05:40 +08:00
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='用户名'>
<a-input placeholder='用户名'
v-decorator="['username', {rules: [{ required: true, message: '请输入用户名' }]}]" />
2024-01-23 17:05:40 +08:00
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='昵称'>
<a-input v-decorator="['nickname', {rules: [{ required: true, message: '请输入昵称' }]}] "
placeholder='起一个名字' />
2024-01-23 17:05:40 +08:00
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='手机'>
<a-input placeholder='手机' v-decorator="['mobile', {rules: [{ required: true, message: '请输入手机' }]}]" />
2024-01-23 17:05:40 +08:00
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='状态'>
2024-01-23 17:05:40 +08:00
<a-select v-decorator="['status', {initialValue:'0',rules: [{ required: true, message: '请选择状态' }]}]">
<a-select-option :value="'0'">正常</a-select-option>
<a-select-option :value="'1'">禁用</a-select-option>
</a-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item v-if='tenantId !== null' :labelCol='labelCol' :wrapperCol='wrapperCol' label='部门'>
2024-01-23 17:05:40 +08:00
<a-tree-select
v-decorator="['deptId', {rules: [{ required: true, message: '请选择部门' }]}]"
:dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
2024-03-25 11:01:45 +08:00
:treeData='deptTree'
@change='onChange'
placeholder='部门'
2024-01-23 17:05:40 +08:00
treeDefaultExpandAll
>
</a-tree-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item v-if='tenantId === null' :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属租户'>
2024-01-23 17:05:40 +08:00
<a-select v-decorator="['tenantId', {rules: [{ required: true, message: '请选择所属租户' }]}]">
2024-03-25 11:01:45 +08:00
<a-select-option v-for='item in tenantData' :key='item.value'>{{ item.text }}</a-select-option>
2024-01-23 17:05:40 +08:00
</a-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item v-if='tenantId !== null' :labelCol='labelCol' :wrapperCol='wrapperCol' label='所属园区'>
2024-01-23 17:05:40 +08:00
<a-select v-decorator="['parkId', {rules: [{ required: true, message: '请选择所属园区' }]}]">
2024-03-25 11:01:45 +08:00
<a-select-option v-for='item in parkData' :key='item.value'>{{ item.text }}</a-select-option>
2024-01-23 17:05:40 +08:00
</a-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='拥有角色' hasFeedback>
2024-01-23 17:05:40 +08:00
<a-select
2024-03-25 11:01:45 +08:00
style='width: 100%'
mode='multiple'
2024-01-23 17:05:40 +08:00
v-decorator="['roleIds', {rules: [{ required: true, message: '请选择角色' }]}]"
2024-03-25 11:01:45 +08:00
:allowClear='true'
2024-01-23 17:05:40 +08:00
>
2024-03-25 11:01:45 +08:00
<a-select-option v-for='(action) in roleAll' :key='action.id'>{{ action.roleName }}</a-select-option>
2024-01-23 17:05:40 +08:00
</a-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='选择企业'>
<a-select v-decorator="['customerId', {rules: [{ required: true, message: '请选择企业' }]}]">
2024-03-25 11:01:45 +08:00
<a-select-option v-for='item in customerList' :key='item.value'>{{ item.text }}</a-select-option>
</a-select>
</a-form-item>
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='选择用户'>
<a-select
show-search
v-decorator="['staffId', {rules: [{required: true, message: '请选择手机号码'}]}]"
2024-03-25 11:01:45 +08:00
placeholder='请选择手机号码'
style='width: 200px'
:default-active-first-option='false'
:show-arrow='false'
:filter-option='false'
:not-found-content='null'
@search='handleSearch'
@change='handleChange'
>
2024-03-25 11:01:45 +08:00
<a-select-option v-for='item in data' :value='item.id' :key='item.id'>
{{ item.username }} -{{ item.mobile }}
</a-select-option>
</a-select>
</a-form-item>
2024-01-23 17:05:40 +08:00
2024-03-25 11:01:45 +08:00
<a-form-item :labelCol='labelCol' :wrapperCol='wrapperCol' label='描述'>
<a-textarea :rows='3' placeholder='...' v-decorator="['remark']" />
2024-01-23 17:05:40 +08:00
</a-form-item>
</a-form>
</a-spin>
</a-modal>
</template>
<script>
import { getRoleAll, saveUser, getUser } from '@/api/system'
2024-03-25 11:01:45 +08:00
import { saveCustomerContacts, getStaffList, updateStaff, getStaffListByUser } from '@/api/admin/customer'
import {
getCustomerList
} from '@/api/admin/meeting/roomContent'
2024-01-23 17:05:40 +08:00
import { getTenantList } from '@/api/tenant'
import { getParkList } from '@/api/admin/park'
import pick from 'lodash.pick'
import { mapGetters } from 'vuex'
2024-03-25 11:01:45 +08:00
2024-01-23 17:05:40 +08:00
export default {
name: 'UserModal',
props: {
deptTree: {
type: Array,
required: true
}
},
computed: {
...mapGetters(['parkId', 'tenantId'])
},
2024-03-25 11:01:45 +08:00
data() {
2024-01-23 17:05:40 +08:00
return {
description: '列表使用场景:后台管理中的权限管理以及角色管理,可用于基于 RBAC 设计的角色权限控制,颗粒度细到每一个操作类型。',
visible: false,
labelCol: {
xs: { span: 24 },
sm: { span: 5 }
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 }
},
confirmLoading: false,
roleAll: [],
mdl: {},
2024-03-25 11:01:45 +08:00
data: [],
customerList: [],
2024-01-23 17:05:40 +08:00
deptCheck: true,
spinning: false,
tenantData: [],
parkData: [],
form: this.$form.createForm(this)
}
},
2024-03-25 11:01:45 +08:00
beforeCreate() {
2024-01-23 17:05:40 +08:00
},
2024-03-25 11:01:45 +08:00
created() {
getCustomerList().then(res => {
2024-03-22 17:34:16 +08:00
res.rows.forEach(r => {
this.customerList.push({ value: r.id, text: r.name })
})
})
2024-01-23 17:05:40 +08:00
// 租户
getTenantList().then(res => {
if (res.code === 0) {
res.rows.forEach(r => {
this.tenantData.push({ value: r.id, text: r.name })
})
}
})
// 获取园区
getParkList().then(res => {
if (res.code === 0) {
res.rows.forEach(r => {
this.parkData.push({ value: r.id, text: r.name })
})
}
})
this.loadRoleAll()
},
methods: {
2024-03-25 11:01:45 +08:00
handleSearch(value) {
let param = {
2024-03-25 11:01:45 +08:00
mobile: value
}
2024-03-25 11:01:45 +08:00
getStaffList(param).then(res => {
2024-03-25 10:30:28 +08:00
this.data = res.rows
})
},
2024-03-25 11:01:45 +08:00
handleChange() {
},
2024-03-25 11:01:45 +08:00
add() {
2024-01-23 17:05:40 +08:00
this.form.resetFields()
this.mdl = Object.assign({}, { id: 0, deptId: '' })
this.visible = true
this.$nextTick(() => {
2024-03-25 11:01:45 +08:00
this.form.setFieldsValue(pick(this.mdl, 'id', 'username', 'nickname', 'status', 'mobile', 'roleIds', 'staffId', 'customerId', 'remark', 'deptId', 'parkId', 'tenantId'))
2024-01-23 17:05:40 +08:00
})
2024-03-25 11:01:45 +08:00
let param = {}
getStaffListByUser(param).then(res => {
2024-03-25 10:30:28 +08:00
this.data = res.rows
2024-03-25 10:30:28 +08:00
})
2024-01-23 17:05:40 +08:00
},
2024-03-25 11:01:45 +08:00
edit(record) {
2024-01-23 17:05:40 +08:00
if (record.id > 0) {
2024-03-25 11:01:45 +08:00
//
2024-01-23 17:05:40 +08:00
this.spinning = true
getUser(record.id).then(res => {
this.mdl = Object.assign({}, res)
this.visible = true
this.$nextTick(() => {
2024-03-25 11:01:45 +08:00
this.form.setFieldsValue(pick(this.mdl, 'id', 'username', 'nickname', 'status', 'mobile', 'roleIds', 'customerId', 'staffId', 'remark', 'deptId', 'parkId', 'tenantId'))
2024-01-23 17:05:40 +08:00
this.spinning = false
// this.form.setFieldsValue({ ...record })
2024-03-25 11:01:45 +08:00
// 查询 选择用户
getStaffListByUser({
staffId: this.mdl.staffId
}).then(res => {
console.log('edit getStaffListByUser', res)
this.data = res.rows
})
2024-01-23 17:05:40 +08:00
})
2024-03-25 10:30:28 +08:00
2024-01-23 17:05:40 +08:00
})
}
},
2024-03-25 11:01:45 +08:00
onChange(value, label, extra) {
2024-01-23 17:05:40 +08:00
if (extra.triggerNode.$children.length > 0) {
this.$message.error('不能选择父节点' + `${label}`)
this.deptCheck = false
} else {
this.deptCheck = true
}
},
2024-03-25 11:01:45 +08:00
loadRoleAll() {
2024-01-23 17:05:40 +08:00
getRoleAll().then(res => {
this.roleAll = res.rows
})
},
2024-03-25 11:01:45 +08:00
handleSubmit(e) {
2024-01-23 17:05:40 +08:00
e.preventDefault()
if (!this.deptCheck) {
this.$message.error('不能选择父节点')
return
}
this.form.validateFields((err, values) => {
if (!err) {
console.log('Received values of form: ', values)
this.confirmLoading = true
saveUser(values).then(res => {
if (res.code === 0) {
this.$message.success('保存成功')
this.$emit('ok')
this.visible = false
} else {
this.$message.success(res.msg)
}
}).catch(() => {
this.$message.error('系统错误,请稍后再试')
}).finally(() => {
this.confirmLoading = false
})
}
})
}
}
}
</script>