搜索条件添加
This commit is contained in:
parent
d3e4cb68bb
commit
be7435e207
@ -14,8 +14,8 @@
|
||||
<!-- <a-form-item field="department_custom_name" label="科室名称">
|
||||
<a-input v-model="queryForm.department_custom_name" placeholder="请输入科室名称" @press-enter="handleQuery" />
|
||||
</a-form-item> -->
|
||||
<a-form-item field="doctor_title" label="服务类型">
|
||||
<a-select v-model="queryForm.doctor_title" placeholder="请选择服务类型" :style="{ width: '182px' }">
|
||||
<a-form-item field="doctor_title" label="职 称">
|
||||
<a-select v-model="queryForm.doctor_title" placeholder="请选择职称" :style="{ width: '182px' }">
|
||||
<!-- 医生职称(1:主任医师 2:主任中医师 3:副主任医师 4:副主任中医师 5:主治医师 6:住院医师) -->
|
||||
<a-option :value="1">主任医师</a-option>
|
||||
<a-option :value="2">主任中医师</a-option>
|
||||
@ -67,8 +67,8 @@
|
||||
<a-option :value="1">是</a-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
<a-form-item field="is_enterprise_deep_cooperation" label="深度合作">
|
||||
<a-select v-model="queryForm.is_enterprise_deep_cooperation" placeholder="请选择是否是平台深度合作" :style="{ width: '180px' }">
|
||||
<a-form-item field="is_platform_deep_cooperation" label="深度合作">
|
||||
<a-select v-model="queryForm.is_platform_deep_cooperation" placeholder="请选择是否是平台深度合作" :style="{ width: '180px' }">
|
||||
<!-- 实名认证状态(0:未认证 1:认证通过 2:认证失败) -->
|
||||
<a-option :value="0">否</a-option>
|
||||
<a-option :value="1">是</a-option>
|
||||
@ -94,7 +94,7 @@
|
||||
</div>
|
||||
|
||||
<!-- table -->
|
||||
<a-table :columns="columns" :data="tableData" :scroll="{ x: 1500 }"
|
||||
<a-table :columns="columns" :data="tableData" :scroll="{ x: 1700 }"
|
||||
:row-selection="{ type: 'checkbox', showCheckedAll: true }"
|
||||
:pagination="{ 'show-total': true, 'show-jumper': true, 'show-page-size': true, total: pager.total, current: currentPage }"
|
||||
row-key="doctor_id" @selection-change="(selection) => {deleteData = selection;console.log(selection)}"
|
||||
@ -132,16 +132,21 @@
|
||||
<a-tag v-else-if="record.multi_point_status == 3" color="red">认证失败</a-tag>
|
||||
</template>
|
||||
<template #is_recommend="{ record }">
|
||||
<!-- 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败) -->
|
||||
|
||||
<a-tag v-if="record.is_recommend == 0" color="gray">否</a-tag>
|
||||
<a-tag v-else color="green">是</a-tag>
|
||||
</template>
|
||||
<template #is_platform_deep_cooperation="{ record }">
|
||||
<!-- 身份认证状态(0:未认证 1:认证通过 2:审核中 3:认证失败) -->
|
||||
|
||||
<a-tag v-if="record.is_platform_deep_cooperation == 0" color="gray">否</a-tag>
|
||||
<a-tag v-else color="green">是</a-tag>
|
||||
</template>
|
||||
|
||||
<template #idcard_status="{ record }">
|
||||
<!-- 实名认证状态(0:未认证 1:认证通过2:认证失败) -->
|
||||
<a-tag v-if="record.idcard_status == 0" color="gray">未认证</a-tag>
|
||||
<a-tag v-else-if="record.idcard_status == 1" color="green">认证通过</a-tag>
|
||||
<a-tag v-else-if="record.idcard_status == 2" color="red">认证失败</a-tag>
|
||||
</template>
|
||||
<template #status="{ record }">
|
||||
<!-- 状态(0:禁用 1:正常 2:删除) -->
|
||||
<a-tag v-if="record.status == 0" color="#ffb400">禁用</a-tag>
|
||||
@ -933,6 +938,8 @@
|
||||
{ title: '深度合作', dataIndex: 'is_platform_deep_cooperation', slotName: 'is_platform_deep_cooperation' },
|
||||
{ title: '申请人', dataIndex: 'user_name' },
|
||||
{ title: '审核状态', dataIndex: 'iden_auth_status', slotName: 'iden_auth_status' },
|
||||
{ title: '实名认证', dataIndex: 'idcard_status', slotName: 'iden_auth_status' },
|
||||
|
||||
{ title: '状态', dataIndex: 'status', slotName: 'status' },
|
||||
// { title: '创建时间', dataIndex: 'created_at', slotName: 'created_at' },
|
||||
{ title: '操作', slotName: 'action', fixed: "right", width: 180 },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user