3 changed files with 138 additions and 13 deletions
@ -0,0 +1,112 @@ |
|||||
|
<template> |
||||
|
<el-dialog :visible.sync="visible" title="详情" :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="nickName"> |
||||
|
<span>{{dataForm.nickName}} </span> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="手机号" prop="mobile"> |
||||
|
<span> {{dataForm.mobile}}</span> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="话题内容" prop="topicContent"> |
||||
|
<span>{{dataForm.topicContent}}</span> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="回复意见" prop="advice"> |
||||
|
<span> {{dataForm.advice}}</span> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="创建时间" prop="createdTime"> |
||||
|
<span >{{dataForm.createdTime}}</span> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="部门名称" prop="allDeptNames"> |
||||
|
<span> {{dataForm.allDeptNames}}</span> |
||||
|
</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: '', |
||||
|
userId: '', |
||||
|
nickName: '', |
||||
|
userFace: '', |
||||
|
mobile: '', |
||||
|
topicContent: '', |
||||
|
grid: '', |
||||
|
gridId: '', |
||||
|
eventState: '', |
||||
|
advice: '', |
||||
|
delFlag: '', |
||||
|
revision: '', |
||||
|
createdBy: '', |
||||
|
createdTime: '', |
||||
|
updatedBy: '', |
||||
|
updatedTime: '', |
||||
|
parentDeptIds: '', |
||||
|
parentDeptNames: '', |
||||
|
allDeptIds: '', |
||||
|
allDeptNames: '' |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
computed: { |
||||
|
dataRule () { |
||||
|
return { |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
init () { |
||||
|
this.visible = true |
||||
|
this.$nextTick(() => { |
||||
|
this.$refs['dataForm'].resetFields() |
||||
|
if (this.dataForm.id) { |
||||
|
this.getInfo() |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
// 获取信息 |
||||
|
getInfo () { |
||||
|
this.$http.get(`/events/veterantopic/${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']('/events/veterantopic/', 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> |
Loading…
Reference in new issue