| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612 |
- <template>
- <CustomNav title="我的医生" leftType="back" />
- <view class="page-container">
- <view class="doctor-card" v-if="doctorInfo">
- <view class="doctor-header">
- <view class="avatar-section">
- <view class="avatar-frame">
- <image class="avatar-img" :src="doctorAvatar" mode="aspectFill" />
- </view>
- </view>
- <view class="doctor-info">
- <text class="doctor-name">{{ doctorInfo.name }}</text>
- <!-- 根据当前API返回数据,只显示姓名和电话 -->
- <text class="doctor-phone" v-if="doctorInfo.phone">联系电话: {{ doctorInfo.phone }}</text>
- <text class="doctor-phone" v-else>联系电话: 未提供</text>
- </view>
- </view>
- <!-- 复诊记录 -->
- <view class="followup-section" v-show="followUps.length > 0">
- <view class="section-title">我的复诊记录</view>
- <view class="followup-list">
- <view class="followup-card" v-for="followUp in followUps" :key="followUp.id">
- <view class="card-header">
- <view class="status-badge" :class="followUp.status">
- {{ getFollowUpStatusText(followUp.status) }}
- </view>
- </view>
- <view class="card-content">
- <view class="info-row">
- <text class="info-label">预约时间:</text>
- <text class="info-value">{{ formatDate(followUp.appointmentTime) }}</text>
- </view>
- <view class="info-row" v-if="followUp.reason">
- <text class="info-label">复诊原因:</text>
- <text class="info-value reason-text">{{ followUp.reason }}</text>
- </view>
- <!-- 操作按钮:仅对PENDING和CONFIRMED状态显示 -->
- <view class="action-row" v-if="followUp.status === 'PENDING' || followUp.status === 'CONFIRMED'">
- <button class="action-btn secondary" @click="editFollowUp(followUp)">编辑</button>
- <button class="action-btn cancel" @click="cancelFollowUp(followUp.id)">取消</button>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="action-buttons" v-if="!hasPendingOrConfirmedFollowUp">
- <button class="action-btn primary" @click="makeAppointment">预约复诊</button>
- </view>
- </view>
- <view class="empty-state" v-else>
- <image class="empty-icon" src="/static/icons/remixicon/account-circle-line.svg" />
- <text class="empty-text">暂无绑定的医生</text>
- <button class="bind-btn" @click="bindDoctor">绑定医生</button>
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { ref, computed, onMounted } from 'vue'
- import { onLoad, onShow } from '@dcloudio/uni-app'
- import CustomNav from '@/components/custom-nav.vue'
- import { listUserBindingsByPatient, type UserBindingResponse, type UserBindingPageResponse } from '@/api/userBinding'
- import { downloadAvatar } from '@/api/user'
- import { getFollowUpList, updateFollowUp, deleteFollowUp } from '@/api/followUp'
- import type { FollowUp } from '@/api/followUp'
- import { formatDate } from '@/utils/date'
- // 简化医生信息接口,只包含API实际返回的字段
- interface LocalDoctorInfo {
- id: string
- name: string
- phone?: string
- avatar?: string
- }
- const doctorInfo = ref<LocalDoctorInfo | null>(null)
- const userBindings = ref<UserBindingResponse[]>([])
- const pageData = ref({
- pageNum: 1,
- pageSize: 10,
- total: 0,
- pages: 0
- })
- // 复诊记录相关
- const followUps = ref<FollowUp[]>([])
- // 计算是否有待处理或已确认的复诊请求
- const hasPendingOrConfirmedFollowUp = computed(() => {
- return followUps.value.some(followUp =>
- followUp.status === 'PENDING' || followUp.status === 'CONFIRMED'
- )
- })
- // 调试信息
- const debugInfo = ref('')
- const defaultAvatar = 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
- // 下载后本地临时保存的图片路径(uni.downloadFile 会产出 tempFilePath)
- const downloadedAvatar = ref<string | null>(null)
- // 优先使用已下载的本地头像,若无则使用后端返回的 avatar 字段,再次 fallback 到默认头像
- const doctorAvatar = computed(() => {
- if (downloadedAvatar.value) {
- return downloadedAvatar.value
- }
- if (doctorInfo.value?.avatar) {
- return doctorInfo.value.avatar
- }
- return defaultAvatar
- })
- // 获取医生信息
- const fetchDoctorInfo = async () => {
- uni.showLoading({ title: '加载中...' })
- try {
- const token = uni.getStorageSync('token')
- if (!token) {
- uni.hideLoading()
- uni.showToast({
- title: '未登录',
- icon: 'none'
- })
- return
- }
- // 获取当前用户ID
- const userInfo = uni.getStorageSync('user_info')
- const patientUserId = userInfo?.id
- if (!patientUserId) {
- uni.hideLoading()
- uni.showToast({
- title: '获取用户信息失败',
- icon: 'none'
- })
- return
- }
- // 查询患者绑定的医生列表
- const doctorResponse = await listUserBindingsByPatient(
- patientUserId,
- 'DOCTOR',
- {
- pageNum: pageData.value.pageNum,
- pageSize: pageData.value.pageSize
- }
- )
- uni.hideLoading()
- const resp = doctorResponse.data as any
- if (resp && resp.code === 200 && resp.data) {
- const pageResult = resp.data as UserBindingPageResponse
- userBindings.value = pageResult.records
- pageData.value.total = pageResult.total
- pageData.value.pages = pageResult.pages
- // 如果有绑定的医生,获取第一个医生的详细信息
- if (pageResult.records && pageResult.records.length > 0) {
- const boundDoctor = pageResult.records[0]
- // 直接使用绑定接口返回的信息,不再调用额外的用户详情接口
- doctorInfo.value = {
- id: boundDoctor.id,
- name: boundDoctor.boundUserNickname || '未知医生',
- phone: boundDoctor.boundUserPhone || '未提供', // 当电话为null时显示"未提供"
- }
- // 尝试下载头像(绑定接口返回的数据中可能没有 avatar)
- try {
- if (boundDoctor.boundUserId) {
- const dlRes: any = await downloadAvatar(String(boundDoctor.boundUserId))
- if (dlRes && dlRes.statusCode === 200 && dlRes.tempFilePath) {
- downloadedAvatar.value = dlRes.tempFilePath
- }
- }
- } catch (err) {
- console.warn('下载医生头像失败:', err)
- }
- } else {
- doctorInfo.value = null
- }
- } else {
- uni.showToast({
- title: '获取医生信息失败',
- icon: 'none'
- })
- }
- } catch (error) {
- uni.hideLoading()
- console.error('获取医生信息失败:', error)
- uni.showToast({
- title: '获取医生信息失败',
- icon: 'none'
- })
- }
- }
- // 获取复诊记录
- const fetchFollowUpRecords = async () => {
- try {
- const followUpResponse: any = await getFollowUpList({
- pageNum: 1,
- pageSize: 10
- })
- // 检查响应结构
- if (!followUpResponse) {
- return
- }
- if (!followUpResponse.data) {
- return
- }
- // 注意:这里需要访问 followUpResponse.data.data 才是真正的数据
- const apiResponse = followUpResponse.data
- if (apiResponse.code !== 200) {
- return
- }
- // 检查实际数据字段
- const data = apiResponse.data
- if (!data) {
- return
- }
- if (!data.records) {
- return
- }
- if (!Array.isArray(data.records)) {
- return
- }
- // 正常处理records
- followUps.value = data.records || []
- // 隐藏加载提示(如果有)
- uni.hideLoading()
- } catch (error) {
- console.error('获取复诊记录失败:', error)
- uni.showToast({
- title: '获取复诊记录失败',
- icon: 'none'
- })
- // 隐藏加载提示(如果有)
- uni.hideLoading()
- }
- }
- const makeAppointment = () => {
- // 跳转到复诊申请页面,传递医生信息
- if (doctorInfo.value) {
- uni.navigateTo({
- url: `/pages/patient/profile/infos/followup-request?doctorId=${doctorInfo.value.id}&doctorName=${encodeURIComponent(doctorInfo.value.name)}&boundUserId=${userBindings.value[0]?.boundUserId || ''}`
- })
- } else {
- uni.showToast({
- title: '未获取到医生信息',
- icon: 'none'
- })
- }
- }
- const bindDoctor = () => {
- uni.showToast({
- title: '绑定医生功能开发中',
- icon: 'none'
- })
- }
- // 编辑复诊记录
- const editFollowUp = (followUp: FollowUp) => {
- // 跳转到复诊编辑页面,传递复诊记录信息
- uni.navigateTo({
- url: `/pages/patient/profile/infos/followup-edit?id=${followUp.id}&doctorId=${doctorInfo.value?.id}&doctorName=${encodeURIComponent(doctorInfo.value?.name || '')}&appointmentTime=${encodeURIComponent(followUp.appointmentTime)}&reason=${encodeURIComponent(followUp.reason || '')}&boundUserId=${userBindings.value[0]?.boundUserId || ''}`
- })
- }
- // 取消复诊记录
- const cancelFollowUp = (id: string) => {
- uni.showModal({
- title: '确认取消',
- content: '确定要取消这个复诊预约吗?',
- success: (res) => {
- if (res.confirm) {
- // 调用接口取消复诊记录
- updateFollowUp(id, { status: 'CANCELLED' })
- .then((res: any) => {
- if (res && res.data && res.data.code === 200) {
- uni.showToast({
- title: '取消成功',
- icon: 'success'
- })
- // 重新获取复诊记录列表
- fetchFollowUpRecords()
- } else {
- uni.showToast({
- title: '取消失败',
- icon: 'none'
- })
- }
- })
- .catch((error) => {
- console.error('取消复诊记录失败:', error)
- uni.showToast({
- title: '取消失败',
- icon: 'none'
- })
- })
- }
- }
- })
- }
- onLoad(() => {
- fetchDoctorInfo()
- fetchFollowUpRecords()
- })
- onShow(() => {
- // 页面每次显示时都刷新复诊记录列表
- // 这样从创建或编辑页面返回时能获取最新数据
- fetchFollowUpRecords()
- })
- // 获取复诊状态文本
- const getFollowUpStatusText = (status: string) => {
- switch (status) {
- case 'PENDING': return '待处理'
- case 'CONFIRMED': return '已确认'
- case 'CANCELLED': return '已取消'
- case 'COMPLETED': return '已完成'
- default: return status
- }
- }
- </script>
- <style scoped>
- .page-container {
- min-height: 100vh;
- background-color: #f5f5f5;
- padding-top: calc(var(--status-bar-height) + 44px);
- padding-bottom: 40rpx;
- }
- .doctor-card {
- background-color: #fff;
- margin: 20rpx;
- border-radius: 20rpx;
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
- overflow: hidden;
- }
- .doctor-header {
- display: flex;
- padding: 40rpx;
- border-bottom: 1rpx solid #eee;
- }
- .avatar-section {
- margin-right: 30rpx;
- }
- .avatar-frame {
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- overflow: hidden;
- border: 1px solid rgba(128, 128, 128, 0.5);
- }
- .avatar-img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .doctor-info {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .doctor-name {
- font-size: 36rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 10rpx;
- }
- .doctor-phone {
- font-size: 28rpx;
- color: #666;
- }
- .action-buttons {
- display: flex;
- padding: 30rpx 40rpx;
- gap: 20rpx;
- }
- .action-btn {
- flex: 1;
- border-radius: 10rpx;
- font-size: 32rpx;
- line-height: 80rpx;
- }
- .primary {
- background-color: #3742fa;
- color: #fff;
- }
- .secondary {
- background-color: #f0f0f0;
- color: #333;
- }
- .empty-state {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 100rpx 40rpx;
- }
- .empty-icon {
- width: 120rpx;
- height: 120rpx;
- margin-bottom: 30rpx;
- opacity: 0.5;
- }
- .empty-text {
- font-size: 32rpx;
- color: #666;
- margin-bottom: 40rpx;
- }
- .bind-btn {
- background-color: #3742fa;
- color: #fff;
- border-radius: 10rpx;
- font-size: 32rpx;
- line-height: 80rpx;
- width: 80%;
- }
- .followup-section {
- margin: 0 20rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
- overflow: hidden;
- border: 1rpx solid #eee;
- }
- .section-title {
- padding: 24rpx 30rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #333;
- border-bottom: 1rpx solid #eee;
- }
- .followup-list {
- padding: 20rpx;
- }
- .followup-card {
- background: #fff;
- border-radius: 12rpx;
- box-shadow: 0 2rpx 6rpx rgba(0, 0, 0, 0.05);
- margin-bottom: 20rpx;
- overflow: hidden;
- border: 1rpx solid #eee;
- }
- .followup-card:last-child {
- margin-bottom: 0;
- }
- .card-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 24rpx;
- background-color: #f8f9fa;
- border-bottom: 1rpx solid #eee;
- }
- .status-badge {
- font-size: 24rpx;
- padding: 6rpx 20rpx;
- border-radius: 30rpx;
- color: #fff;
- font-weight: normal;
- }
- .status-badge.PENDING {
- background-color: #ff9500;
- }
- .status-badge.CONFIRMED {
- background-color: #007aff;
- }
- .status-badge.COMPLETED {
- background-color: #34c759;
- }
- .status-badge.CANCELLED {
- background-color: #8e8e93;
- }
- .appointment-time {
- font-size: 24rpx;
- color: #666;
- }
- .card-content {
- padding: 24rpx;
- }
- .info-row {
- display: flex;
- margin-bottom: 16rpx;
- align-items: flex-start;
- }
- .info-row:last-child {
- margin-bottom: 0;
- }
- .info-label {
- color: #888;
- font-size: 26rpx;
- width: 140rpx;
- flex-shrink: 0;
- }
- .info-value {
- flex: 1;
- color: #333;
- font-size: 26rpx;
- line-height: 1.5;
- }
- .reason-text {
- color: #555;
- }
- .action-row {
- display: flex;
- gap: 20rpx;
- margin-top: 20rpx;
- padding-top: 20rpx;
- border-top: 1rpx solid #eee;
- }
- .action-btn {
- flex: 1;
- border-radius: 10rpx;
- font-size: 28rpx;
- line-height: 70rpx;
- }
- .primary {
- background-color: #3742fa;
- color: #fff;
- }
- .secondary {
- background-color: #f0f0f0;
- color: #333;
- }
- .cancel {
- background-color: #ff4757;
- color: #fff;
- }
- .debug-info {
- padding: 20rpx;
- background-color: #ffeb3b;
- color: #333;
- font-size: 28rpx;
- margin: 20rpx;
- border-radius: 10rpx;
- white-space: pre-wrap;
- }
- </style>
|