2026-01-20 10:49:33 +08:00
|
|
|
|
<template>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<full-page :showSafeArea="false" :customScroll="true">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<view class="user-header bg-white px-15 py-15">
|
2026-01-27 17:09:31 +08:00
|
|
|
|
<view class="flex items-center justify-between">
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<view class="flex items-center flex-grow">
|
2026-01-27 17:09:31 +08:00
|
|
|
|
<view class="relative user-avatar mr-10" @click="editProfile()">
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<image v-if="doctorInfo && doctorInfo.avatar" class="avatar-img rounded-full overflow-hidden"
|
|
|
|
|
|
:src="doctorInfo.avatar" mode="aspectFill" />
|
|
|
|
|
|
<image v-else class="avatar-img rounded-full overflow-hidden" src="/static/default-avatar.png"
|
|
|
|
|
|
mode="aspectFill" />
|
|
|
|
|
|
<view v-if="doctorInfo" class="edit-sub flex items-center justify-center rounded-full bg-primary">
|
|
|
|
|
|
<image class="edit-icon" src="/static/work/pen.svg" mode="aspectFill" />
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="flex-col">
|
|
|
|
|
|
<text v-if="doctorInfo && doctorInfo.anotherName" class="user-name text-dark text-lg font-semibold">
|
|
|
|
|
|
{{ doctorInfo.anotherName }}
|
|
|
|
|
|
</text>
|
2026-01-27 17:09:31 +08:00
|
|
|
|
<text v-else class="user-name text-black text-lg font-semibold" @click="editProfile()">请完善信息</text>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<view class="flex items-center mt-5">
|
|
|
|
|
|
<view v-if="!doctorInfo || !doctorInfo.anotherName" class="status-tag tag-orange mr-10">
|
|
|
|
|
|
<text class="tag-text text-white">信息待完善</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view v-if="certStatus" class="px-10 py-3 text-sm rounded-full" :class="certStatus.classnames"
|
2026-01-26 14:52:33 +08:00
|
|
|
|
@click.stop="handleCert()">
|
2026-01-23 14:36:28 +08:00
|
|
|
|
{{ certStatus.text }}
|
|
|
|
|
|
</view>
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<!-- 右侧:操作按钮 -->
|
|
|
|
|
|
<view class="flex items-center">
|
2026-01-27 17:09:31 +08:00
|
|
|
|
<view class="action-btn flex-col items-center mr-10" @click="invitePatient()">
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<image class="mb-5 qrcode-icon" src="/static/work/qrcode.svg" />
|
|
|
|
|
|
<text class="action-text text-dark text-sm">邀请</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="action-btn flex-col items-center" @click="handleMore">
|
|
|
|
|
|
<image class="mb-5 qrcode-icon" src="/static/work/more.svg" />
|
|
|
|
|
|
<text class="action-text text-dark text-sm">更多</text>
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2026-01-29 09:41:51 +08:00
|
|
|
|
<view class="mt-15 px-15 py-12 flex items-center justify-between bg-white">
|
|
|
|
|
|
<view class="text-dark text-lg font-semibold">待办列表</view>
|
|
|
|
|
|
<view class="flex text-base rounded-full bg-gray">
|
|
|
|
|
|
<view class="py-5 px-15 rounded-full bg-primary text-white">个人</view>
|
|
|
|
|
|
<view class="py-5 px-15">团队</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="py-10 px-15 flex items-center">
|
|
|
|
|
|
<view class="flex-shrink-0 text-sm mr-10">
|
|
|
|
|
|
<text class="text-dark">共</text>
|
|
|
|
|
|
<text class="text-danger">23</text>
|
|
|
|
|
|
<text class="text-dark">条</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="flex">
|
|
|
|
|
|
<view v-for="i in statusList" :key="i.value" class="mr-5 py-5 px-10 bg-white text-sm rounded-sm"
|
|
|
|
|
|
:class="current == i.value ? 'text-primary' : 'text-dark'">
|
|
|
|
|
|
{{ i.label }}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="flex-shrink-0 flex-grow flex justify-end" @click="filtered = !filtered">
|
|
|
|
|
|
<image class="icon-filter" :src="`/static/work/icon-filter${filtered ? 'ed' : ''}.svg`" />
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
</template>
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-29 09:41:51 +08:00
|
|
|
|
<scroll-view v-if="list.length" scroll-y="true" class="h-full">
|
|
|
|
|
|
<view v-for="i in 10" :key="i" class="mb-10 shadow-lg bg-white">
|
|
|
|
|
|
<view class="flex items-center justify-between px-15 py-10 border-b">
|
|
|
|
|
|
<view class="text-base text-dark">计划执行: 2025-10-22</view>
|
|
|
|
|
|
<view class="flex items-center">
|
|
|
|
|
|
<view class="text-base text-dark">患者: 李珊珊</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="py-10 px-15 flex items-center">
|
|
|
|
|
|
<view class="mr-5 text-lg font-semibold">患者满意度调查</view>
|
|
|
|
|
|
<view class="bg-opacity px-10 py-3 leading-normal text-base text-success rounded overflow-hidden">
|
|
|
|
|
|
待处理
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="px-15 text-base leading-normal text-gray">对于门诊就诊患者的满意度做统计,以便优化…</view>
|
|
|
|
|
|
<view class="mt-10 px-15 flex items-center">
|
|
|
|
|
|
<view class="mr-5 w-0 flex-grow truncate text-base leading-normal text-dark">
|
|
|
|
|
|
发送内容:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX…
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="bg-primary px-10 py-3 text-base text-white rounded-sm">发送</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="mt-10 px-15 text-base leading-normal text-gray">张敏西(张敏希服务团队)</view>
|
|
|
|
|
|
<view class="px-15 pb-10 text-base leading-normal text-gray">创建:2026-01-08 张敏西</view>
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
</scroll-view>
|
|
|
|
|
|
|
|
|
|
|
|
<view v-else class="flex flex-col items-center justify-center h-full bg-white">
|
|
|
|
|
|
<empty-data text="暂无记录" />
|
2026-01-20 16:30:03 +08:00
|
|
|
|
</view>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
<template #footer>
|
|
|
|
|
|
<view class="border-b"></view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</full-page>
|
|
|
|
|
|
<cert-popup :visible="visible" @close="visible = false" />
|
2026-01-20 10:49:33 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
<script setup>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
import { computed, ref } from 'vue';
|
|
|
|
|
|
import { storeToRefs } from "pinia";
|
2026-01-20 16:30:03 +08:00
|
|
|
|
import useGuard from "@/hooks/useGuard.js";
|
2026-01-27 17:09:31 +08:00
|
|
|
|
import useInfoCheck from '@/hooks/useInfoCheck';
|
2026-01-23 14:36:28 +08:00
|
|
|
|
import useAccountStore from "@/store/account.js";
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
import certPopup from "./components/cert-popup.vue";
|
|
|
|
|
|
import EmptyData from "@/components/empty-data.vue";
|
|
|
|
|
|
import fullPage from '@/components/full-page.vue';
|
2026-01-26 14:52:33 +08:00
|
|
|
|
import { toast } from '@/utils/widget';
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
const certConfig = {
|
2026-01-26 14:52:33 +08:00
|
|
|
|
failed: { text: '认证失败', classnames: 'bg-danger text-white' },
|
2026-01-23 14:36:28 +08:00
|
|
|
|
verified: { text: '已认证', classnames: 'bg-success text-white' },
|
2026-01-23 18:08:14 +08:00
|
|
|
|
verifying: { text: '认证中', classnames: 'bg-warning text-white' },
|
2026-01-23 14:36:28 +08:00
|
|
|
|
unverified: { text: '未认证', classnames: 'bg-gray text-dark' },
|
2026-01-20 16:30:03 +08:00
|
|
|
|
};
|
2026-01-29 09:41:51 +08:00
|
|
|
|
const statusList = [{ label: '全部', value: 'all' }, { label: '待处理', value: 'pending' }, { label: '已处理', value: 'processed' }]
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
const { useLoad, useShow } = useGuard();
|
|
|
|
|
|
const { getDoctorInfo } = useAccountStore();
|
2026-01-27 17:09:31 +08:00
|
|
|
|
const { doctorInfo } = storeToRefs(useAccountStore());
|
|
|
|
|
|
const { withInfo } = useInfoCheck();
|
2026-01-23 14:36:28 +08:00
|
|
|
|
const list = ref([1]);
|
|
|
|
|
|
const visible = ref(false);
|
2026-01-29 09:41:51 +08:00
|
|
|
|
const current = ref('all');
|
|
|
|
|
|
const filtered = ref(false)
|
2026-01-23 14:36:28 +08:00
|
|
|
|
|
2026-01-23 18:08:14 +08:00
|
|
|
|
const certStatus = computed(() => doctorInfo.value?.verifyStatus ? certConfig[doctorInfo.value.verifyStatus] : null)
|
2026-01-23 14:36:28 +08:00
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
// 认证
|
|
|
|
|
|
const handleVerify = () => {
|
|
|
|
|
|
uni.showToast({
|
|
|
|
|
|
title: "跳转到认证页面",
|
|
|
|
|
|
icon: "none",
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// 邀请患者
|
2026-01-27 17:09:31 +08:00
|
|
|
|
const invitePatient = withInfo(() => uni.navigateTo({ url: '/pages/work/team/invite/invite-patient' }));
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-29 09:41:51 +08:00
|
|
|
|
const handleMore = withInfo(() => {
|
2026-01-20 16:30:03 +08:00
|
|
|
|
uni.showActionSheet({
|
2026-01-29 09:41:51 +08:00
|
|
|
|
itemList: ["我的团队", "联系客服"], //, "关于"
|
2026-01-20 16:30:03 +08:00
|
|
|
|
success: (res) => {
|
2026-01-29 09:41:51 +08:00
|
|
|
|
const url = res.tapIndex === 0 ? '/pages/work/team/list/team-list' : '/pages/work/service/contact-service';
|
|
|
|
|
|
uni.navigateTo({ url });
|
2026-01-20 16:30:03 +08:00
|
|
|
|
},
|
|
|
|
|
|
});
|
2026-01-29 09:41:51 +08:00
|
|
|
|
})
|
2026-01-20 16:30:03 +08:00
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
function editProfile() {
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: "/pages/work/profile",
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-26 14:52:33 +08:00
|
|
|
|
function handleCert() {
|
|
|
|
|
|
if (doctorInfo.value.verifyStatus === 'verifying') {
|
|
|
|
|
|
toast('信息认证中,请耐心等待!')
|
|
|
|
|
|
} else {
|
|
|
|
|
|
visible.value = true
|
|
|
|
|
|
}
|
2026-01-23 14:36:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
useLoad(() => {
|
|
|
|
|
|
console.log("工作台页面加载");
|
|
|
|
|
|
});
|
2026-01-23 14:36:28 +08:00
|
|
|
|
|
|
|
|
|
|
useShow(() => {
|
2026-01-26 14:52:33 +08:00
|
|
|
|
getDoctorInfo();
|
2026-01-23 14:36:28 +08:00
|
|
|
|
})
|
2026-01-20 10:49:33 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
<style lang="scss" scoped>
|
2026-01-23 14:36:28 +08:00
|
|
|
|
.edit-sub {
|
|
|
|
|
|
width: 36rpx;
|
|
|
|
|
|
height: 36rpx;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
right: 0;
|
|
|
|
|
|
bottom: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.edit-icon {
|
|
|
|
|
|
width: 24rpx;
|
|
|
|
|
|
height: 24rpx;
|
2026-01-20 16:30:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-header {
|
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-avatar {
|
|
|
|
|
|
width: 80rpx;
|
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.avatar-img {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.user-name {
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-23 14:36:28 +08:00
|
|
|
|
.py-3 {
|
|
|
|
|
|
padding-top: 6rpx;
|
|
|
|
|
|
padding-bottom: 6rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-20 16:30:03 +08:00
|
|
|
|
.status-tag {
|
|
|
|
|
|
padding: 6rpx 16rpx;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
&.tag-orange {
|
|
|
|
|
|
background: #ff6b35;
|
|
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
&.tag-gray {
|
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-text {
|
|
|
|
|
|
font-size: 22rpx;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.action-btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
.qrcode-icon {
|
2026-01-23 14:36:28 +08:00
|
|
|
|
width: 40rpx;
|
|
|
|
|
|
height: 40rpx;
|
2026-01-20 16:30:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.action-text {
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.more-btn {
|
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
.more-icon {
|
|
|
|
|
|
font-size: 48rpx;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
line-height: 1;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.todo-section {
|
|
|
|
|
|
.section-title {
|
|
|
|
|
|
padding-top: 20rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-29 09:41:51 +08:00
|
|
|
|
.icon-filter {
|
|
|
|
|
|
width: 42rpx;
|
|
|
|
|
|
height: 42rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bg-opacity {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bg-opacity::after {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
opacity: 0.2;
|
|
|
|
|
|
background: currentColor;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.py-3 {
|
|
|
|
|
|
padding-top: 6rpx;
|
|
|
|
|
|
padding-bottom: 6rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|