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

@@ -1,10 +1,10 @@
<script lang="ts" setup>
import {computed, ref} from 'vue';
import { computed, ref } from 'vue';
import Taro from '@tarojs/taro';
import headImg from '../static/def_avatar.png';
import logoImg from '../static/logo.jpg';
import {BASE_URL} from '@/utils/request';
import {getPhone, login} from '@/api/user';
import { BASE_URL } from '@/utils/request';
import { getPhone, login } from '@/api/user';
const props = defineProps({
isShow: {
@@ -36,7 +36,7 @@ const closeAttr = () => {
};
const onChooseAvatar = e => {
const {avatarUrl} = e.detail;
const { avatarUrl } = e.detail;
Taro.uploadFile({
url: `${BASE_URL}/upload`,
filePath: avatarUrl,
@@ -57,7 +57,7 @@ const getPhoneNumber = async (e: any) => {
title: '授权手机号中',
mask: true,
});
const {code} = e.detail;
const { code } = e.detail;
const res = await getPhone({
code: code,
});
@@ -112,7 +112,7 @@ const formSubmit = async (e: any) => {
position="bottom"
safe-area-inset-bottom
closeable
:style="{padding: '20px 10px'}"
:style="{ padding: '20px 10px' }"
v-model:visible="show"
@close="closeAttr"
:close-on-click-overlay="false">