diff --git a/src/views/doctor/doctor-list/index.vue b/src/views/doctor/doctor-list/index.vue
index 542abeb..249bfc5 100644
--- a/src/views/doctor/doctor-list/index.vue
+++ b/src/views/doctor/doctor-list/index.vue
@@ -120,9 +120,7 @@
{{record.hospital_name}}
-
- {{filterService(record)}}
-
+
未认证
@@ -941,7 +939,7 @@
{ title: '手机号码', dataIndex: 'mobile', width: 125 },
{ title: '医院', dataIndex: 'hospital_name', width: '150', slotName: 'hospital_name' },
{ title: '职称', dataIndex: 'doctor_title', slotName: 'doctor_title' },
- { title: '开启服务', dataIndex: 'inquiry_service', slotName: 'inquiry_service' },
+ { title: '开启服务', dataIndex: 'inquiry_type' },
{ title: '多点审核状态', dataIndex: 'multi_point_status', slotName: 'multi_point_status', width: 140 },
{ title: '是否推荐', dataIndex: 'is_recommend', slotName: 'is_recommend' },
{ title: '深度合作', dataIndex: 'is_platform_deep_cooperation', slotName: 'is_platform_deep_cooperation' },
@@ -1116,30 +1114,30 @@
};
//开启服务处理
- const filterService = (record) => {
- let arr = [];
- let str = '';
- if (record.is_img_expert_reception == 1) {
- arr.push("专家问诊");
- }
- if (record.is_img_welfare_reception == 1) {
- arr.push("公益问诊")
- }
- if (record.is_img_quick_reception == 1) {
- arr.push("快速问诊")
- };
- if (record.multi_point_status == 1) {
- arr.push("问诊购药")
- }
- arr.forEach((item) => {
- if (!str) {
- str += item
- } else {
- str += ',' + item
- }
- })
- return str ? str : "暂无"
- }
+ // const filterService = (record) => {
+ // let arr = [];
+ // let str = '';
+ // if (record.is_img_expert_reception == 1) {
+ // arr.push("专家问诊");
+ // }
+ // if (record.is_img_welfare_reception == 1) {
+ // arr.push("公益问诊")
+ // }
+ // if (record.is_img_quick_reception == 1) {
+ // arr.push("快速问诊")
+ // };
+ // if (record.multi_point_status == 1) {
+ // arr.push("问诊购药")
+ // }
+ // arr.forEach((item) => {
+ // if (!str) {
+ // str += item
+ // } else {
+ // str += ',' + item
+ // }
+ // })
+ // return str ? str : "暂无"
+ // }
// Modal ok
// 异步关闭Modal需要调用 done()
const handleSubmit = (done) => {