|
|
@ -9,25 +9,34 @@ |
|
|
|
<el-cascader v-model="ids" :options="options" :props="{ checkStrictly: true }" clearable style="width:200px;"> |
|
|
|
</el-cascader> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="议题内容"> |
|
|
|
<el-form-item label="举报内容"> |
|
|
|
<el-input |
|
|
|
v-model="dataForm.eventContent" |
|
|
|
placeholder="请输入议题内容" |
|
|
|
placeholder="请输入举报内容" |
|
|
|
clearable |
|
|
|
@keyup.native="btKeyUpEventContent" |
|
|
|
style="width:200px;" |
|
|
|
></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="提交人"> |
|
|
|
<el-form-item label="提交人昵称"> |
|
|
|
<el-input |
|
|
|
v-model="dataForm.nickName" |
|
|
|
placeholder="请输入议题提交人" |
|
|
|
placeholder="请输入提交人昵称" |
|
|
|
clearable |
|
|
|
@keyup.native="btKeyUpNickName" |
|
|
|
style="width:200px;" |
|
|
|
></el-input> |
|
|
|
</el-form-item> |
|
|
|
<br> |
|
|
|
<el-form-item label="手机号"> |
|
|
|
<el-input |
|
|
|
v-model="dataForm.mobile" |
|
|
|
placeholder="请输入手机号" |
|
|
|
clearable |
|
|
|
@keyup.native="btKeyUpMobile" |
|
|
|
style="width:200px;" |
|
|
|
></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="提交时间" |
|
|
|
prop="startTime" label-width="72px"> |
|
|
|
<el-date-picker v-model="dataForm.startTime" |
|
|
@ -73,7 +82,7 @@ |
|
|
|
align="center" |
|
|
|
width="50"></el-table-column> |
|
|
|
<el-table-column prop="eventContent" |
|
|
|
label="议题内容" |
|
|
|
label="举报内容" |
|
|
|
header-align="center" |
|
|
|
min-width="400" |
|
|
|
align="left" |
|
|
@ -84,7 +93,19 @@ |
|
|
|
width="180px" |
|
|
|
align="center"></el-table-column> |
|
|
|
<el-table-column prop="nickName" |
|
|
|
label="提交人" |
|
|
|
label="提交人昵称" |
|
|
|
header-align="center" |
|
|
|
min-width="120" |
|
|
|
align="center" |
|
|
|
show-overflow-tooltip></el-table-column> |
|
|
|
<el-table-column prop="realName" |
|
|
|
label="提交人姓名" |
|
|
|
header-align="center" |
|
|
|
min-width="120" |
|
|
|
align="center" |
|
|
|
show-overflow-tooltip></el-table-column> |
|
|
|
<el-table-column prop="mobile" |
|
|
|
label="手机号" |
|
|
|
header-align="center" |
|
|
|
min-width="120" |
|
|
|
align="center" |
|
|
@ -147,7 +168,8 @@ export default { |
|
|
|
communityId: '', |
|
|
|
gridId: '', |
|
|
|
eventContent: '', |
|
|
|
nickName: '' |
|
|
|
nickName: '', |
|
|
|
mobile: '' |
|
|
|
}, |
|
|
|
ids: [], |
|
|
|
options: [], |
|
|
@ -219,6 +241,10 @@ export default { |
|
|
|
btKeyUpNickName (e) { |
|
|
|
e.target.value = e.target.value.replace(/[`~!#$%^&*()_\+=<>?:"{}|~!#¥%……&*()={}|《》?:“”【】\\[\]、;‘’,。、\s+]/g, '') |
|
|
|
this.dataForm.nickName = e.target.value |
|
|
|
}, |
|
|
|
btKeyUpMobile (e) { |
|
|
|
e.target.value = e.target.value.replace(/[`~!#$%^&*()_\+=<>?:"{}|~!#¥%……&*()={}|《》?:“”【】\\[\]、;‘’,。、\s+]/g, '') |
|
|
|
this.dataForm.mobile = e.target.value |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|