|
@@ -46,7 +46,9 @@
|
|
|
label="人员"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- {{ peopleType[scope.row.type] }}
|
|
|
+ <span v-for="(item, index) in scope.row.type" :key="index">
|
|
|
+ {{ peopleTypes[item] }}
|
|
|
+ </span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -80,12 +82,13 @@
|
|
|
<el-dialog :title="title" :visible.sync="dialogFormVisible">
|
|
|
<el-form ref="form" :model="form" label-width="120px">
|
|
|
<el-form-item v-for="item in addInput" :key="item.type" :label="item.name" label-width="120px">
|
|
|
- <el-select v-if="item.select" v-model="form[item.type]" :placeholder="item.select">
|
|
|
+ <el-input v-if="!item.select" v-model="form[item.type]" autocomplete="off" />
|
|
|
+ <el-select v-else v-for="(peopleItem, index) in item.peopleType" :key="index" v-model="form[item.type][index]" :placeholder="item.select">
|
|
|
<el-option label="管理员" value="0" />
|
|
|
<el-option label="安装员" value="1" />
|
|
|
<el-option label="维护员" value="2" />
|
|
|
+ <el-option label="无" value=" " />
|
|
|
</el-select>
|
|
|
- <el-input v-else v-model="form[item.type]" autocomplete="off" />
|
|
|
</el-form-item>
|
|
|
<!--
|
|
|
<el-form-item label="人员名称" label-width="120px">
|
|
@@ -164,7 +167,7 @@ export default {
|
|
|
gridTile: '',
|
|
|
handleType: '',
|
|
|
title: '',
|
|
|
- peopleType: ['管理员', '安装员', '维护员'],
|
|
|
+ peopleTypes: ['管理员', '安装员', '维护员'],
|
|
|
loginName: '',
|
|
|
name: '',
|
|
|
mobile: '',
|
|
@@ -221,6 +224,7 @@ export default {
|
|
|
{
|
|
|
name: '人员类型',
|
|
|
type: 'type',
|
|
|
+ peopleType: [' ', ' '],
|
|
|
select: '请选择人员类型'
|
|
|
}]
|
|
|
this.form = {
|
|
@@ -228,12 +232,13 @@ export default {
|
|
|
mobile: '',
|
|
|
password: '',
|
|
|
loginName: '',
|
|
|
- type: ''
|
|
|
+ type: [' ', ' ']
|
|
|
}
|
|
|
this.title = '添加人员'
|
|
|
this.handleType = 'add'
|
|
|
},
|
|
|
handleOk() {
|
|
|
+ this.form.type = this.form.type.join(',')
|
|
|
if (this.handleType === 'add') {
|
|
|
this.$store.dispatch('admin/addDeviceModifierData', this.form)
|
|
|
}
|
|
@@ -258,21 +263,28 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
handleSet(index, row) {
|
|
|
- console.log(index, row)
|
|
|
+ const length = row.type.length
|
|
|
+ const peopleType = length >= 2 ? row.type : [...row.type, ' ']
|
|
|
this.dialogFormVisible = true
|
|
|
this.addInput = [{
|
|
|
name: '人员名称',
|
|
|
type: 'name'
|
|
|
},
|
|
|
{
|
|
|
+ name: '手机号码',
|
|
|
+ type: 'mobile'
|
|
|
+ },
|
|
|
+ {
|
|
|
name: '人员类型',
|
|
|
type: 'type',
|
|
|
+ peopleType,
|
|
|
select: '请选择人员类型'
|
|
|
}]
|
|
|
this.form = {
|
|
|
id: row.id,
|
|
|
name: row.name,
|
|
|
- type: row.type
|
|
|
+ mobile: row.mobile,
|
|
|
+ type: peopleType
|
|
|
}
|
|
|
this.title = '修改人员'
|
|
|
this.handleType = 'set'
|