|
|
|
|
<template>
|
|
|
|
|
<el-dialog :visible.sync="visible" :title="!dataForm.id ? $t('add') : $t('update')" :close-on-click-modal="false" :close-on-press-escape="false">
|
|
|
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" :label-width="$i18n.locale === 'en-US' ? '120px' : '80px'">
|
|
|
|
|
<el-form-item label="姓名" prop="realName">
|
|
|
|
|
<el-input v-model="dataForm.realName" placeholder="姓名"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="手机号" prop="mobile">
|
|
|
|
|
<el-input v-model="dataForm.mobile" placeholder="手机号"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="身份证号" prop="identityNo">
|
|
|
|
|
<el-input v-model="dataForm.identityNo" placeholder="身份证号"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="街道党工委" prop="streetId">
|
|
|
|
|
<el-select v-model="dataForm.streetId" placeholder="请选择" @change="getCommunityList">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in streetOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="社区党委" prop="communityId">
|
|
|
|
|
<el-select v-model="dataForm.communityId" placeholder="请选择" @change="getGridList">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in communityOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="网格党支部" prop="gridId">
|
|
|
|
|
<el-select v-model="dataForm.gridId" placeholder="请选择" @change="evaluation">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in gridOptions"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="干部下沉" prop="cadreFlag">
|
|
|
|
|
<el-select v-model="dataForm.cadreFlag" placeholder="请选择">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in cadreOptions"
|
|
|
|
|
:key="item.cadreFlag"
|
|
|
|
|
:label="item.cadreTitle"
|
|
|
|
|
:value="item.cadreFlag">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="用户角色" prop="tagIds">
|
|
|
|
|
<el-checkbox-group v-model="dataForm.tagIds">
|
|
|
|
|
<el-checkbox v-for="item in tagOptions" :key="item.tagName" :label="item.id">{{item.tagName}}</el-checkbox>
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template slot="footer">
|
|
|
|
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button>
|
|
|
|
|
<el-button type="primary" @click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import debounce from 'lodash/debounce'
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
visible: false,
|
|
|
|
|
dataForm: {
|
|
|
|
|
id: '',
|
|
|
|
|
realName: '',
|
|
|
|
|
mobile: '',
|
|
|
|
|
identityNo: '',
|
|
|
|
|
cadreFlag: '',
|
|
|
|
|
streetId: '',
|
|
|
|
|
streetName: '',
|
|
|
|
|
communityId: '',
|
|
|
|
|
communityName: '',
|
|
|
|
|
gridId: '',
|
|
|
|
|
gridName: '',
|
|
|
|
|
tagIds: []
|
|
|
|
|
},
|
|
|
|
|
streetOptions: [],
|
|
|
|
|
communityOptions: [],
|
|
|
|
|
gridOptions: [],
|
|
|
|
|
cadreOptions: [{
|
|
|
|
|
cadreFlag: '1',
|
|
|
|
|
cadreTitle: '是'
|
|
|
|
|
}, {
|
|
|
|
|
cadreFlag: '0',
|
|
|
|
|
cadreTitle: '否'
|
|
|
|
|
}],
|
|
|
|
|
tagOptions: []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
dataRule () {
|
|
|
|
|
return {
|
|
|
|
|
realName: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
mobile: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
identityNo: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
streetId: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
communityId: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
gridId: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
cadreFlag: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
tagIds: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
init () {
|
|
|
|
|
this.getStreetList()
|
|
|
|
|
this.getTagOptions()
|
|
|
|
|
this.visible = true
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs['dataForm'].resetFields()
|
|
|
|
|
if (this.dataForm.id) {
|
|
|
|
|
this.getInfo()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getTagOptions () {
|
|
|
|
|
this.$http.get(`/app-user/usertag/list`).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.tagOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
getStreetList () {
|
|
|
|
|
this.$http.get(`/sys/dept/sublist/1169154711480528897`).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.streetOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
getCommunityList () {
|
|
|
|
|
let choosenItem = this.streetOptions.filter(item => item.id === this.dataForm.streetId)[0]
|
|
|
|
|
this.dataForm.streetName = choosenItem.name
|
|
|
|
|
this.dataForm.communityId = ''
|
|
|
|
|
this.dataForm.gridId = ''
|
|
|
|
|
this.$http.get(`/sys/dept/sublist/` + this.dataForm.streetId).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.communityOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
getGridList () {
|
|
|
|
|
let choosenItem = this.communityOptions.filter(item => item.id === this.dataForm.communityId)[0]
|
|
|
|
|
this.dataForm.communityName = choosenItem.name
|
|
|
|
|
this.dataForm.gridId = ''
|
|
|
|
|
this.$http.get(`/sys/dept/sublist/` + this.dataForm.communityId).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.gridOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
evaluation () {
|
|
|
|
|
let choosenItem = this.gridOptions.filter(item => item.id === this.dataForm.gridId)[0]
|
|
|
|
|
this.dataForm.gridName = choosenItem.name
|
|
|
|
|
},
|
|
|
|
|
// 获取信息
|
|
|
|
|
getInfo () {
|
|
|
|
|
this.$http.get(`/app-user/partymembers/${this.dataForm.id}`).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.dataForm = {
|
|
|
|
|
...this.dataForm,
|
|
|
|
|
...res.data
|
|
|
|
|
}
|
|
|
|
|
this.dataForm.tagIds = res.data.tagIdsNew
|
|
|
|
|
this.$http.get(`/sys/dept/sublist/` + this.dataForm.streetId).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.communityOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
this.$http.get(`/sys/dept/sublist/` + this.dataForm.communityId).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.gridOptions = res.data
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
// 表单提交
|
|
|
|
|
dataFormSubmitHandle: debounce(function () {
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/app-user/partymembers/', this.dataForm).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.$message({
|
|
|
|
|
message: this.$t('prompt.success'),
|
|
|
|
|
type: 'success',
|
|
|
|
|
duration: 500,
|
|
|
|
|
onClose: () => {
|
|
|
|
|
this.visible = false
|
|
|
|
|
this.$emit('refreshDataList')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
})
|
|
|
|
|
}, 1000, { 'leading': true, 'trailing': false })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|