zhengyiming
3 天以前 312cde772d4f8836ab182f0046b71288fe918863
fix: 开发中
12个文件已修改
42 ■■■■ 已修改文件
apps/cMiniApp/src/hooks/user.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/pages/mine/index.vue 21 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/authentication/authenticationFaRen/authenticationFaRen.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/authentication/authenticationHome/authenticationHome.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/authentication/authenticationJBR/authenticationJBR.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/authentication/authenticationResult/authenticationResult.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/mine/mineAgreementSign/mineAgreementSign.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/wallet/bindBankCard/bindBankCard.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/wallet/incomeDetail/incomeDetail.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/wallet/incomeDetailInfo/incomeDetailInfo.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/wallet/mineWallet/mineWallet.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/subpackages/wallet/unboundBankCard/unboundBankCard.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
apps/cMiniApp/src/hooks/user.ts
@@ -32,7 +32,7 @@
  });
  const isCertified = computed(() => {
    return userDetail.value?.frontStatus === UserCertificationFrontStatus.Certified;
    return false;
  });
  return {
apps/cMiniApp/src/pages/mine/index.vue
@@ -17,17 +17,17 @@
            <UserAvatar :size="52" class="mine-avatar" />
            <div class="user-info" v-if="isLogin">
              <div class="user-info-item">{{ detail?.name ?? '' }}</div>
              <!-- <div class="user-info-auth">
              <div class="user-info-auth">
                <div class="user-info-auth-item">
                  <div class="user-info-unCertified" v-if="isCertified">
                    <img :src="IconAuth" class="user-info-unCertified-icon" />
                    <div class="user-info-unCertified-text">已实名</div>
                  </div>
                  <div class="user-info-unCertified" v-else>
                    <div class="user-info-unCertified-text">未实名</div>
                    <div class="user-info-unCertified-btn" @click.stop="goAuthentication">
                      立即实名
                    </div>
                  </div>
                  <div class="user-info-unCertified" v-else>
                    <img :src="IconAuth" class="user-info-unCertified-icon" />
                    <div class="user-info-unCertified-text">已实名</div>
                  </div>
                </div>
                <div class="user-info-auth-item">
@@ -42,7 +42,7 @@
                    <div class="user-info-unCertified-text">已认证</div>
                  </div>
                </div>
              </div> -->
              </div>
            </div>
            <div class="mine-go-login" v-else>去登录</div>
          </div>
@@ -50,14 +50,14 @@
      </UserHomeTopView>
    </ContentView>
    <ContentScrollView v-if="isLogin" class="mine-content-scroll-view">
      <!-- <List class="mine-list-wrapper mine-balance">
      <List class="mine-list-wrapper mine-balance">
        <div class="mine-balance-title">我的余额</div>
        <div class="mine-balance-money">¥{{ toThousand(100) }}</div>
        <div class="mine-balance-money">¥{{ toThousand(0) }}</div>
        <div class="mine-balance-btn" @click="goMineWallet">
          进入我的钱包
          <img :src="IconArrow" class="mine-balance-btn-icon" />
        </div>
      </List> -->
      </List>
      <List class="mine-list-wrapper mine-order-list">
        <div class="mine-order-list-title">
          <div class="mine-order-list-title-text">我的订单</div>
@@ -95,7 +95,7 @@
      </List>
      <List class="mine-list-wrapper mine-setting-list">
        <ListItem :icon="IconCollect" title="我收藏的任务" @click="goMineCollectTask"></ListItem>
        <!-- <ListItem :icon="IconAgreement" title="协议签约" @click="goMineAgreementSign"></ListItem> -->
        <ListItem :icon="IconAgreement" title="协议签约" @click="goMineAgreementSign"></ListItem>
        <ListItem :icon="IconSetting" title="设置" @click="goSetting"></ListItem>
        <!-- <ListItem :icon="IconRecruit" title="我要招人/用人" @click="goSetting"></ListItem> -->
      </List>
@@ -125,6 +125,7 @@
import * as authServices from '@12333/services/apiV2/auth';
const { userDetail, isCertified } = useUser();
console.log('isCertified: ', isCertified);
const isLogin = useIsLogin();
const systemStore = useSystemStore();
apps/cMiniApp/src/subpackages/authentication/authenticationFaRen/authenticationFaRen.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout title="企业法人认证" class="authenticationFaRen-page-wrapper" hasBorder>
  <PageLayout title="企业法人认证" class="authenticationFaRen-page-wrapper" hasBorder developing>
    <InnerPage />
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/authentication/authenticationHome/authenticationHome.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="authenticationHome-page-wrapper">
  <PageLayout class="authenticationHome-page-wrapper" developing>
    <template #navigationBar>
      <TransparentNavigationBar title="实名认证" :is-absolute="false"></TransparentNavigationBar>
    </template>
apps/cMiniApp/src/subpackages/authentication/authenticationJBR/authenticationJBR.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout title="企业经办人认证" class="authenticationJBR-page-wrapper" hasBorder>
  <PageLayout title="企业经办人认证" class="authenticationJBR-page-wrapper" hasBorder developing>
    <InnerPage />
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/authentication/authenticationResult/authenticationResult.vue
@@ -4,6 +4,7 @@
    class="authenticationResult-page-wrapper"
    hasBorder
    :backFn="handleBack"
    developing
  >
    <InnerPage />
  </PageLayout>
apps/cMiniApp/src/subpackages/mine/mineAgreementSign/mineAgreementSign.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayoutWithBg class="mineAgreementSign-page-wrapper" :title="'协议签约'">
  <PageLayoutWithBg class="mineAgreementSign-page-wrapper" :title="'协议签约'" developing>
    <InnerPage></InnerPage>
  </PageLayoutWithBg>
</template>
apps/cMiniApp/src/subpackages/wallet/bindBankCard/bindBankCard.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="bindBankCard-page-wrapper" :title="'绑定银行卡'">
  <PageLayout class="bindBankCard-page-wrapper" :title="'绑定银行卡'" developing>
    <InnerPage></InnerPage>
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/wallet/incomeDetail/incomeDetail.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="incomeDetail-page-wrapper" :title="'收入明细'">
  <PageLayout class="incomeDetail-page-wrapper" :title="'收入明细'" developing>
    <InnerPage></InnerPage>
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/wallet/incomeDetailInfo/incomeDetailInfo.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="incomeDetailInfo-page-wrapper" :title="'收入详情'">
  <PageLayout class="incomeDetailInfo-page-wrapper" :title="'收入详情'" developing>
    <InnerPage></InnerPage>
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/wallet/mineWallet/mineWallet.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="mineWallet-page-wrapper" :title="'我的钱包'">
  <PageLayout class="mineWallet-page-wrapper" :title="'我的钱包'" developing>
    <InnerPage></InnerPage>
  </PageLayout>
</template>
apps/cMiniApp/src/subpackages/wallet/unboundBankCard/unboundBankCard.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayout class="unboundBankCard-page-wrapper" title="绑定银行卡" has-border>
  <PageLayout class="unboundBankCard-page-wrapper" title="绑定银行卡" has-border developing>
    <InnerPage></InnerPage>
  </PageLayout>
</template>