|
|
@ -267,6 +267,17 @@ |
|
|
|
<br/> |
|
|
|
</div> |
|
|
|
<el-checkbox v-model="welfareFlag">享受福利</el-checkbox> |
|
|
|
<div> |
|
|
|
<br/> |
|
|
|
</div> |
|
|
|
<el-date-picker v-model="deathDate" |
|
|
|
type="date" |
|
|
|
value-format="yyyy-MM-dd HH:mm:ss" |
|
|
|
format="yyyy-MM-dd" |
|
|
|
placeholder="请选择死亡日期" |
|
|
|
style="width:200px" |
|
|
|
:clearable="false"> |
|
|
|
</el-date-picker> |
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
<el-button @click="blacklistVisible = false">取 消</el-button> |
|
|
|
<el-button type="primary" @click="confirmJoinDeathlist">确 定</el-button> |
|
|
@ -348,6 +359,7 @@ export default { |
|
|
|
blacklistReason: '', // 加入黑名单原因 |
|
|
|
welfareFlag: false, |
|
|
|
rowData: {}, // 加入黑名单的人员信息 |
|
|
|
deathDate: '' |
|
|
|
} |
|
|
|
}, |
|
|
|
props: { |
|
|
@ -427,7 +439,8 @@ export default { |
|
|
|
type: '1', |
|
|
|
userId: this.rowData.icResiUserId, |
|
|
|
joinReason: this.blacklistReason, |
|
|
|
welfareFlag: this.welfareFlag |
|
|
|
welfareFlag: this.welfareFlag, |
|
|
|
deathDate: this.deathDate |
|
|
|
} |
|
|
|
this.$http.post('/epmetuser/rentDeath/save', params).then(({ data: res }) => { |
|
|
|
if (res.code !== 0) { |
|
|
|