ykt-wxapp/pages/work/work.vue

243 lines
6.3 KiB
Vue
Raw Normal View History

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-23 14:36:28 +08:00
<view class="mt-15 px-15 py-12 text-dark text-lg font-semibold bg-white border-b">
待办列表11
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-23 14:36:28 +08:00
<scroll-view v-if="list.length" scroll-y="true" class="h-full bg-white">
<view class="p-15">
<view v-for="i in 10" class="p-15 bg-primary mb-10"></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-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-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
// 更多操作
const handleMore = () => {
uni.showActionSheet({
itemList: ["设置", "关于"],
success: (res) => {
console.log("选择了第" + (res.tapIndex + 1) + "个按钮");
},
});
};
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;
}
}
// .empty-state {
// min-height: 600rpx;
// padding: 100rpx 0;
// display: flex;
// flex-direction: column;
// align-items: center;
// justify-content: center;
// width: 100%;
2026-01-23 14:36:28 +08:00
// }</style>