feat: 新增接待人填写以及接待人类型
This commit is contained in:
parent
dcd5d5b12d
commit
733f5e32ad
@ -100,6 +100,26 @@
|
|||||||
<el-input placeholder="请填写年龄" type="number" :min="1" v-model="queryParams.visitorAge"/>
|
<el-input placeholder="请填写年龄" type="number" :min="1" v-model="queryParams.visitorAge"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="接待人">
|
||||||
|
<el-input placeholder="请填写接待人" v-model="queryParams.receptionist"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="接待人类型">
|
||||||
|
<el-select
|
||||||
|
v-model="queryParams.receptionistType"
|
||||||
|
placeholder="请选择接待人类型"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="item in receptionist_type"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
:key="item.label"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="联系住址">
|
<el-form-item label="联系住址">
|
||||||
<el-input placeholder="请填写联系住址" v-model="queryParams.visitorAddress"/>
|
<el-input placeholder="请填写联系住址" v-model="queryParams.visitorAddress"/>
|
||||||
@ -259,8 +279,14 @@ const {
|
|||||||
visit_field,
|
visit_field,
|
||||||
visit_type,
|
visit_type,
|
||||||
sys_user_sex,
|
sys_user_sex,
|
||||||
people_degree
|
people_degree,
|
||||||
} = proxy.useDict('boolean_yes_no', 'visit_level', 'visit_field', 'visit_type', 'visit_reply_type', 'sys_user_sex', 'people_degree')
|
receptionist_type
|
||||||
|
} = proxy.useDict(
|
||||||
|
'boolean_yes_no', 'visit_level',
|
||||||
|
'visit_field', 'visit_type',
|
||||||
|
'visit_reply_type', 'sys_user_sex',
|
||||||
|
'people_degree', 'receptionist_type'
|
||||||
|
)
|
||||||
|
|
||||||
const emit = defineEmits(['refresh'])
|
const emit = defineEmits(['refresh'])
|
||||||
|
|
||||||
@ -311,7 +337,11 @@ const defaultParams = {
|
|||||||
// 年龄
|
// 年龄
|
||||||
visitorAge: '',
|
visitorAge: '',
|
||||||
// 地址
|
// 地址
|
||||||
visitorAddress: ''
|
visitorAddress: '',
|
||||||
|
// 接待人
|
||||||
|
receptionist: '',
|
||||||
|
// 接待人类型
|
||||||
|
receptionistType: ''
|
||||||
}
|
}
|
||||||
const queryParams = ref({...defaultParams})
|
const queryParams = ref({...defaultParams})
|
||||||
const registerList = ref([])
|
const registerList = ref([])
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
{{ dayjs(queryParams.visitTime).format('YYYY-MM-DD') }}
|
{{ dayjs(queryParams.visitTime).format('YYYY-MM-DD') }}
|
||||||
</td>
|
</td>
|
||||||
<td width=87 style="text-align: center;" colspan="4">承办(接待)人</td>
|
<td width=87 style="text-align: center;" colspan="4">承办(接待)人</td>
|
||||||
<td width=77 style="text-align: center;" colspan="2">{{ queryParams.createBy }}</td>
|
<td width=77 style="text-align: center;" colspan="2">{{ queryParams.receptionist }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr style="height: 45px">
|
<tr style="height: 45px">
|
||||||
<td style="text-align: center;width: 80px;" colspan="2">信访类型</td>
|
<td style="text-align: center;width: 80px;" colspan="2">信访类型</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user