|
|
@ -34,13 +34,13 @@ |
|
|
|
placeholder="请输入身份证号或护照号"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="关注原因" |
|
|
|
<el-form-item :label="reasonTitle" |
|
|
|
prop="mobile"> |
|
|
|
<el-input v-model="formData.reason" |
|
|
|
size="small" |
|
|
|
class="list_item_width_1" |
|
|
|
clearable |
|
|
|
placeholder="请输入关注原因"> |
|
|
|
:placeholder="'请输入'+reasonTitle"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="隔离状态" |
|
|
@ -245,7 +245,7 @@ |
|
|
|
<el-table-column prop="reason" |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
label="关注原因" |
|
|
|
:label="reasonTitle" |
|
|
|
width="180"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="isolatedState" |
|
|
@ -392,6 +392,7 @@ |
|
|
|
@closed="diaClose"> |
|
|
|
<nat-focus-add ref="ref_form_add" |
|
|
|
:isPanshi="isPanshi" |
|
|
|
:reasonTitle="reasonTitle" |
|
|
|
@dialogCancle="diaClose" |
|
|
|
@dialogOk="addFormOk"></nat-focus-add> |
|
|
|
</el-dialog> |
|
|
@ -408,6 +409,7 @@ |
|
|
|
:fromSource="'focusGroupSpecialAttentionQuarantine'" |
|
|
|
:view_real_data="btnAuths.focus_groups_view_real_data" |
|
|
|
:isPanshi="isPanshi" |
|
|
|
:reasonTitle="reasonTitle" |
|
|
|
@dialogCancle="diaClose" |
|
|
|
@dialogOk="addFormOk"></nat-focus-edit> |
|
|
|
</el-dialog> |
|
|
@ -480,6 +482,7 @@ export default { |
|
|
|
tableLoading: false, |
|
|
|
customerId: '', |
|
|
|
isPanshi: false, |
|
|
|
reasonTitle: '关注原因', |
|
|
|
|
|
|
|
selection: [], |
|
|
|
|
|
|
@ -557,8 +560,10 @@ export default { |
|
|
|
//磐石街道:1580460084738760705 |
|
|
|
this.customerId = localStorage.getItem("customerId"); |
|
|
|
this.isPanshi = true |
|
|
|
this.reasonTitle = '关注原因' |
|
|
|
if (this.customerId === '1580460084738760705') { |
|
|
|
this.isPanshi = true |
|
|
|
this.reasonTitle = '隔离原因' |
|
|
|
} |
|
|
|
console.log('customerId', this.customerId) |
|
|
|
this.updateBtnAuths(); |
|
|
|