| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- <template>
- <div class="app-container">
- <header>
- <!-- <img :src="userInfos.avatar" alt="" /> -->
- <van-image class="mr10" width="100px" height="100px" round :src="userInfos.avatar" />
- <div class="content">
- <p class="bold">
- <van-text-ellipsis :content="`${userInfos.nickName}(信用分:${userInfos.creditScore})`" />
- <van-icon name="setting" size="20" @click="onRouterPush('/user/edit')" />
- </p>
- <p class="flex justify-between">
- <van-text-ellipsis :content="userInfos.pgName" />
- </p>
- <p>
- <van-text-ellipsis :content="userInfos.deptName" />
- </p>
- </div>
- </header>
- <div class="main">
- <!-- <ul class="links">
- <li @click="onRouterPush('/training')">培训通知</li>
- <li>我的报名</li>
- <li>我的学习</li>
- <li>我的考试</li>
- </ul> -->
- <!-- <ul>
- <li>使用指引</li>
- <li>安全积分:{{ userInfos.creditScore }}分</li>
- </ul> -->
- <div class="card">
- <h4>经费统计</h4>
- <ul class="nav">
- <!-- <li>
- <span>123,000</span>
- <p>账户余额(¥)</p>
- </li> -->
- <li @click="onRouterPush('/my-cash-flow')">
- <span>{{ billInfo.totalFlowCount }}</span>
- <p>费用流水</p>
- </li>
- <li>
- <span>{{ billInfo.currentMonthFee }}</span>
- <p>本月支出</p>
- </li>
- <li>
- <span>{{ billInfo.totalFee }}</span>
- <p>累计支出</p>
- </li>
- </ul>
- </div>
- <div class="card" @click="showOperatingGuidelines">
- <h4>平台入室操作指引</h4>
- </div>
- <div class="card">
- <van-cell v-auth="'instr_open'" title="打开设备" is-link @click="openInst" />
- <van-cell v-auth="'instr_close'" title="关闭设备" is-link @click="closeInst" />
- </div>
- </div>
- <footer>
- <!-- <wx-open-subscribe template="-pVpM6TH1oz1cZntEhGzQjmMMODF9tLLzh_1yjjWYSk" @success="handleSubscribe">
- <component :is="'script'" type="text/wxtag-template">
- <button class="w100 ">订阅</button>
- </component>
- </wx-open-subscribe> -->
- <van-button class="w100 mt10" color="#1cb4fd" plain @click="onRouterPush('/user/password')">
- 修改密码
- </van-button>
- <van-button class="w100 mt10" @click="signOut" type="primary">
- 切换账号
- </van-button>
- </footer>
- <van-popup position="bottom" v-model:show="showPopup" :style="{ padding: '20px' }">
- <div class="operation-guide">
- <div class="guide-header">
- <h3>操作指引</h3>
- <van-icon name="cross" @click="showPopup = false" />
- </div>
- <div class="steps-container">
- <div v-for="(item, index) in handleStepList" :key="item.step" class="step-item"
- :class="{ 'last-step': index === handleStepList.length - 1 }">
- <div class="step-number-wrapper">
- <div class="step-number">{{ item.step }}</div>
- <div v-if="index < handleStepList.length - 1" class="step-line"></div>
- </div>
- <div class="step-content">
- <h4 class="step-title">{{ item.title }}</h4>
- <p class="step-desc">{{ item.desc }}</p>
- <!-- <van-button
- v-if="item.btn"
- size="small"
- type="primary"
- class="step-btn"
- @click="handleStepAction(item)"
- >
- {{ item.btn }}
- </van-button> -->
- </div>
- </div>
- </div>
- <div class="guide-footer">
- <van-icon name="info-o" />
- <span>请按照步骤顺序完成操作</span>
- </div>
- </div>
- </van-popup>
- </div>
- </template>
- <script lang="ts" setup>
- import { ref, onMounted } from 'vue'
- import { storeToRefs } from 'pinia'
- import to from 'await-to-js'
- import { showConfirmDialog, showDialog, showToast } from 'vant'
- import { useRouter } from 'vue-router'
- import { useUserInfo } from '/@/stores/userInfo'
- import { Local, Session } from '/@/utils/storage'
- import { useBillApi } from '/@/api/instr/finance/bill'
- import { useLoginApi } from '/@/api/login'
- import { scanCodeWxUrl, InstSwitchType } from '/@/constants/pageConstants'
- import wx from 'weixin-js-sdk'
- const billApi = useBillApi()
- const loginApi = useLoginApi()
- const router = useRouter()
- const storesUseUserInfo = useUserInfo()
- const { userInfos, openId } = storeToRefs(storesUseUserInfo)
- const showPopup = ref<boolean>(false)
- const billInfo = ref<{
- totalFlowCount: number
- currentMonthFee: number
- totalFee: number
- }>({
- totalFlowCount: 0,
- currentMonthFee: 0,
- totalFee: 0,
- })
- const handleStepList = ref([
- {
- title: '第一步:入室培训和考试',
- desc: '请先完成入室培训,掌握必要的安全操作知识和实验室规章制度,并通过考试',
- btn: '培训报名',
- step: 1,
- },
- {
- title: '第二步:提交入室申请',
- desc: '完成入室培训考核合格后,在入室管理里面提交入室申请,等待平台管理员审核',
- btn: '前往提交',
- step: 2,
- },
- // {
- // title: '第三步:上传入室资料',
- // desc: '整理相关凭证并将入室资料上传到系统中',
- // step: 3,
- // },
- {
- title: '第三步:等待审核和房间分配',
- desc: '由平台管理老师进行审核并分配细胞房或分配分子储物柜,收到审核通过的通知后,即可在申请的时段进入细胞房或分子室进行实验',
- step: 3,
- },
- ])
- const onRouterPush = (val: string) => {
- router.push(val)
- }
- const signOut = () => {
- showConfirmDialog({
- message: '确认切换账号?',
- }).then(async () => {
- // 先解绑微信
- const [unbindErr]: ToResponse = await to(
- loginApi.WeChatUnBindOpenId()
- )
- // 解绑失败则终止流程
- if (unbindErr) {
- showToast('解绑失败,请重试')
- return
- }
- // 调用退出登录接口
- const [err]: ToResponse = await to(loginApi.signOut())
- if (err) {
- showToast('退出登录失败,请重试')
- return
- }
- // 清理所有本地缓存
- Local.clear()
- Session.clear()
- // 重置用户信息
- storesUseUserInfo.resetUserInfo()
- // 关闭窗口
- wx.closeWindow()
- // 跳转登录重新走授权
- // router.replace('/login')
- })
- }
- const handleSubscribe = (errMsg: any, subscribeDetails: any) => {
- console.log(errMsg, subscribeDetails)
- }
- const showOperatingGuidelines = () => {
- showPopup.value = true
- }
- const handleStepAction = (item: any) => {
- // Implementation of handleStepAction
- }
- const checkPermi = (perms: string[]) => {
- const list = userInfos.value?.authBtnList || []
- return perms.some((p) => list.includes(p))
- }
- const openInst = () => {
- const url = scanCodeWxUrl('START_RUN', InstSwitchType.OPEN)
- window.location.href = url
- }
- const closeInst = () => {
- const url = scanCodeWxUrl('END_RUN', InstSwitchType.CLOSE)
- window.location.href = url
- }
- // 获取个人账单信息
- const getBillInfo = async () => {
- const [err, res]: ToResponse = await to(billApi.getMyOrderTotal())
- if (err) return
- billInfo.value = res?.data
- }
- onMounted(() => {
- getBillInfo()
- })
- </script>
- <style lang="scss" scoped>
- .app-container {
- display: flex;
- flex-direction: column;
- header {
- background-color: #1c9bfd;
- color: #fff;
- padding: 10px;
- border-radius: 8px;
- margin-top: 10px;
- display: flex;
- .content {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- overflow: hidden;
- .bold {
- display: flex;
- align-items: center;
- font-weight: bold;
- // flex-wrap: nowrap;
- white-space: nowrap;
- .van-text-ellipsis {
- flex: 1;
- }
- }
- }
- }
- .main {
- flex: 1;
- overflow-y: auto;
- >ul {
- display: flex;
- height: 60px;
- margin-top: 10px;
- li {
- flex: 1;
- background: #fff;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 4px;
- &+li {
- margin-left: 10px;
- }
- }
- &.links {
- li {
- color: #fff;
- background: #5eb7fc;
- &:nth-child(2) {
- background: #fd9c5e;
- }
- &:nth-child(3) {
- background: #53e3a7;
- }
- &:nth-child(4) {
- background: #888ac3;
- }
- }
- }
- }
- .card {
- margin-top: 10px;
- border-radius: 4px;
- background-color: #fff;
- padding: 10px;
- h4 {
- height: 18px;
- line-height: 18px;
- &::before {
- display: inline-block;
- content: '';
- width: 3px;
- height: 18px;
- background-color: #1c9bfd;
- margin-right: 4px;
- vertical-align: middle;
- }
- }
- .nav {
- display: flex;
- margin: 10px 0;
- flex-wrap: wrap;
- justify-content: space-between;
- li {
- flex: 0 0 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- span {
- font-size: 20px;
- }
- p {
- margin-top: 4px;
- }
- &:nth-child(n + 5) {
- margin-top: 10px;
- }
- }
- }
- }
- }
- footer {
- flex: 0 0 44px;
- margin-bottom: 20px;
- }
- }
- :deep(.van-popup--bottom) {
- padding: 20px !important;
- }
- .operation-guide {
- max-height: 70vh;
- overflow-y: auto;
- .guide-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- padding-bottom: 15px;
- border-bottom: 1px solid #eee;
- h3 {
- margin: 0;
- font-size: 18px;
- font-weight: 600;
- color: #333;
- }
- .van-icon {
- font-size: 18px;
- color: #999;
- cursor: pointer;
- &:hover {
- color: #666;
- }
- }
- }
- .steps-container {
- .step-item {
- display: flex;
- margin-bottom: 20px;
- &.last-step {
- margin-bottom: 0;
- }
- .step-number-wrapper {
- position: relative;
- margin-right: 15px;
- display: flex;
- flex-direction: column;
- align-items: center;
- .step-number {
- width: 32px;
- height: 32px;
- background: linear-gradient(135deg, #1c9bfd, #5eb7fc);
- color: white;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: 600;
- font-size: 14px;
- box-shadow: 0 2px 8px rgba(28, 155, 253, 0.3);
- }
- .step-line {
- width: 2px;
- height: 40px;
- background: linear-gradient(to bottom, #1c9bfd, #e0e0e0);
- margin-top: 8px;
- }
- }
- .step-content {
- flex: 1;
- padding-top: 2px;
- .step-title {
- margin: 0 0 8px 0;
- font-size: 16px;
- font-weight: 600;
- color: #333;
- line-height: 1.4;
- }
- .step-desc {
- margin: 0 0 12px 0;
- font-size: 14px;
- color: #666;
- line-height: 1.5;
- }
- .step-btn {
- border-radius: 20px;
- padding: 8px 16px;
- font-size: 12px;
- background: linear-gradient(135deg, #1c9bfd, #5eb7fc);
- border: none;
- box-shadow: 0 2px 8px rgba(28, 155, 253, 0.3);
- &:active {
- transform: translateY(1px);
- }
- }
- }
- }
- }
- .guide-footer {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20px;
- padding: 15px;
- background: #f8f9fa;
- border-radius: 8px;
- .van-icon {
- margin-right: 6px;
- color: #1c9bfd;
- font-size: 16px;
- }
- span {
- font-size: 13px;
- color: #666;
- }
- }
- }
- </style>
|