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.
137 lines
4.4 KiB
137 lines
4.4 KiB
<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="streetId" v-if="!dataForm.id">
|
|
<el-cascader
|
|
v-model="deptIdList"
|
|
:options="deptIdOptions"
|
|
clearable
|
|
ref="name"
|
|
></el-cascader>
|
|
</el-form-item>
|
|
<el-form-item label="群众底数" prop="residentBaseNum">
|
|
<el-input-number v-model="dataForm.residentBaseNum" :min="0" label="群众底数"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item label="党员底数" prop="partyBaseNum">
|
|
<el-input-number v-model="dataForm.partyBaseNum" :min="0" label="群众底数"></el-input-number>
|
|
</el-form-item>
|
|
<el-form-item label="企业底数" prop="companyBaseNum">
|
|
<el-input-number v-model="dataForm.companyBaseNum" :min="0" label="群众底数"></el-input-number>
|
|
</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'
|
|
import Cookies from 'js-cookie'
|
|
export default {
|
|
data () {
|
|
return {
|
|
visible: false,
|
|
dataForm: {
|
|
id: '',
|
|
street: '',
|
|
streetId: '',
|
|
residentBaseNum: '',
|
|
partyBaseNum: '',
|
|
companyBaseNum: ''
|
|
},
|
|
// 所属机构配置
|
|
deptIdOptions: [],
|
|
deptIdList: []
|
|
}
|
|
},
|
|
computed: {
|
|
dataRule () {
|
|
return {
|
|
streetId: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
],
|
|
residentBaseNum: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
],
|
|
partyBaseNum: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
],
|
|
companyBaseNum: [
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
]
|
|
}
|
|
}
|
|
},
|
|
created () {
|
|
this.uploadUrl = `${window.SITE_CONFIG['apiURL']}/kpi/manualScore/importManualScoreExcel?token=${Cookies.get('token')}`
|
|
// 所属机构创建
|
|
this.$http
|
|
.get(`/sys/user/deptOptions/getStreetByLoginUser`)
|
|
.then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg)
|
|
}
|
|
this.deptIdOptions = res.data.options
|
|
})
|
|
.catch(() => {})
|
|
},
|
|
watch: {
|
|
'deptIdList': function (val) {
|
|
if (val.length === 0) {
|
|
this.dataForm.streetId = ''
|
|
} else if (val.length > 0) {
|
|
this.dataForm.streetId = this.deptIdList[val.length - 1]
|
|
this.dataForm.street = this.$refs['name'].getCheckedNodes()[0].label
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
init () {
|
|
this.visible = true
|
|
this.$nextTick(() => {
|
|
this.$refs['dataForm'].resetFields()
|
|
if (this.dataForm.id) {
|
|
this.getInfo()
|
|
}
|
|
this.deptIdList = []
|
|
})
|
|
},
|
|
// 获取信息
|
|
getInfo () {
|
|
this.$http.get(`/kpi/streetpersonbase/${this.dataForm.id}`).then(({ data: res }) => {
|
|
if (res.code !== 0) {
|
|
return this.$message.error(res.msg)
|
|
}
|
|
this.dataForm = {
|
|
...this.dataForm,
|
|
...res.data
|
|
}
|
|
}).catch(() => {})
|
|
},
|
|
// 表单提交
|
|
dataFormSubmitHandle: debounce(function () {
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
if (!valid) {
|
|
return false
|
|
}
|
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/kpi/streetpersonbase/', 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>
|
|
|