From 69c2f8c24c2052bed7bc4683e277913c67e60a5d Mon Sep 17 00:00:00 2001
From: zoujiandong <10130823232@qq.com>
Date: Fri, 13 Oct 2023 16:20:32 +0800
Subject: [PATCH] =?UTF-8?q?=E5=8C=BB=E7=94=9F=E5=BC=80=E5=90=AF=E6=9C=8D?=
=?UTF-8?q?=E5=8A=A1=E6=98=BE=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/doctor/doctor-list/index.vue | 54 +++++++++++++-------------
1 file changed, 26 insertions(+), 28 deletions(-)
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) => {