You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
4.5 KiB
176 lines
4.5 KiB
1 year ago
|
<template>
|
||
|
<el-dialog
|
||
|
title="关联用户"
|
||
|
append-to-body
|
||
|
:visible.sync="dialogVisible"
|
||
|
destroy-on-close
|
||
|
width="1000px"
|
||
|
@close="close"
|
||
|
@open="open"
|
||
|
>
|
||
|
<el-form
|
||
|
:inline="true"
|
||
|
class="demo-form-inline"
|
||
|
label-position="right"
|
||
|
label-width="80px"
|
||
|
label-suffix=":"
|
||
|
>
|
||
|
<el-form-item label="模糊搜索">
|
||
|
<el-input
|
||
|
v-model="query.blurry"
|
||
|
clearable
|
||
|
size="mini"
|
||
|
placeholder="输入账号或者名称"
|
||
|
@keyup.enter.native="crud.toQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<rrOperation />
|
||
|
</el-form>
|
||
|
|
||
|
<!--表格渲染-->
|
||
|
<el-table
|
||
|
ref="table"
|
||
|
v-loading="crud.loading"
|
||
|
:data="crud.data"
|
||
|
style="width: 100%;"
|
||
|
size="mini"
|
||
|
border
|
||
|
:header-cell-style="{background:'#f5f7fa',color:'#606266'}"
|
||
|
@select="handleSelectionChange"
|
||
|
@current-change="clickChange"
|
||
|
>
|
||
|
<el-table-column v-if="!isSingle" type="selection" width="55" />
|
||
|
<el-table-column v-if="isSingle" label="选择" width="55">
|
||
|
<template slot-scope="scope">
|
||
|
<el-radio v-model="tableRadio" :label="scope.row"><i /></el-radio>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column prop="username" label="用户名" :min-width="flexWidth('username',crud.data,'用户名')" />
|
||
|
<el-table-column
|
||
|
prop="personName"
|
||
|
label="姓名"
|
||
|
:min-width="flexWidth('personName',crud.data,'姓名')"
|
||
|
/>
|
||
|
<el-table-column show-overflow-tooltip prop="deptnames" label="部门" />
|
||
|
<el-table-column label="状态" align="center" prop="enabled">
|
||
|
<template slot-scope="scope">
|
||
|
{{ scope.row.isUsed==1?'启用':'禁用' }}
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
<!--分页组件-->
|
||
|
<pagination />
|
||
|
<span slot="footer" class="dialog-footer">
|
||
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
||
|
<el-button type="primary" @click="submit">确 定</el-button>
|
||
|
</span>
|
||
|
</el-dialog>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import crudUser from '../user'
|
||
|
import CRUD, { header, presenter } from '@crud/crud'
|
||
|
import rrOperation from '@crud/RR.operation'
|
||
|
import pagination from '@crud/Pagination'
|
||
|
|
||
|
export default {
|
||
|
name: 'RelevanceUserDialog',
|
||
|
components: { rrOperation, pagination },
|
||
|
cruds() {
|
||
|
return CRUD({ title: '用户', idField: 'userId', url: 'api/users', crudMethod: { ...crudUser }, query: { isUsed: '1' }})
|
||
|
},
|
||
|
mixins: [presenter(), header()],
|
||
|
dicts: ['product_series'],
|
||
|
props: {
|
||
|
dialogShow: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
isSingle: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
users: {
|
||
|
type: Array
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
dialogVisible: false,
|
||
|
classes: [],
|
||
|
tableRadio: null,
|
||
|
class_idStr: null,
|
||
|
checkrow: null,
|
||
|
rows: []
|
||
|
}
|
||
|
},
|
||
|
watch: {
|
||
|
dialogShow: {
|
||
|
handler(newValue) {
|
||
|
this.dialogVisible = newValue
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
clickChange(item) {
|
||
|
this.tableRadio = item
|
||
|
},
|
||
|
open() {
|
||
|
this.$nextTick(function() {
|
||
|
console.log(this.crud.data)
|
||
|
for (var k = 0; k < this.users.length; k++) {
|
||
|
for (var i = 0; i < this.crud.data.length; i++) {
|
||
|
if (this.crud.data[i].userId == this.users[k].userId) {
|
||
|
this.$refs.table.toggleRowSelection(this.crud.data[i], true)
|
||
|
break
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
handleSelectionChange(val, row) {
|
||
|
if (val.length > 1 && this.isSingle) {
|
||
|
this.$refs.table.clearSelection()
|
||
|
this.$refs.table.toggleRowSelection(val.pop())
|
||
|
} else {
|
||
|
this.checkrow = row
|
||
|
}
|
||
|
},
|
||
|
onSelectAll() {
|
||
|
this.$refs.table.clearSelection()
|
||
|
},
|
||
|
close() {
|
||
|
this.crud.resetQuery(false)
|
||
|
this.$emit('update:dialogShow', false)
|
||
|
},
|
||
|
submit() {
|
||
|
// 处理单选
|
||
|
if (this.isSingle && this.tableRadio) {
|
||
|
this.$emit('update:dialogShow', false)
|
||
|
this.$emit('selectUsers', this.tableRadio)
|
||
|
return
|
||
|
}
|
||
|
this.rows = this.$refs.table.selection
|
||
|
if (this.rows.length <= 0) {
|
||
|
this.$message('请先勾选用户')
|
||
|
return
|
||
|
}
|
||
|
this.crud.resetQuery(false)
|
||
|
this.$emit('update:dialogShow', false)
|
||
|
this.$emit('selectUsers', this.rows)
|
||
|
// console.log(this.rows)
|
||
|
},
|
||
|
[CRUD.HOOK.afterRefresh]() {
|
||
|
this.open()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
||
|
::v-deep .el-dialog__body {
|
||
|
padding-top: 0px;
|
||
|
}
|
||
|
</style>
|
||
|
|