feat(custom): 地图apiKey更换,订单核销详情新增支付方式
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-29 15:45:16 +08:00
parent 92d7bf1933
commit 896acaef9e
70 changed files with 408 additions and 376 deletions

View File

@@ -3,7 +3,7 @@
<view
class="user-center-card__header__transparent"
v-if="isLogin"
:style="{width: isLogin ? '100%' : '70%'}">
:style="{ width: isLogin ? '100%' : '70%' }">
<view
class="user-center-card__header__avatar"
@click="toPage('/pages/users/user_setting/index')">
@@ -182,12 +182,12 @@
</template>
<script lang="ts" setup>
import {ref} from 'vue';
import {ArrowRight, IconFont} from '@nutui/icons-vue-taro';
import { ref } from 'vue';
import { ArrowRight, IconFont } from '@nutui/icons-vue-taro';
import Taro from '@tarojs/taro';
import Auth from '@/components/Auth.vue';
import {getPersonalInfo, getPhone, bindParent} from '@/api/user';
import {maskString} from '@/utils';
import { getPersonalInfo, getPhone, bindParent } from '@/api/user';
import { maskString } from '@/utils';
const isShowLogin = ref(false);