zhengyiming
2025-03-27 55c03f35a31979aefd46aead13a145c9b293e6d8
apps/taro/src/subpackages/login/loginByForm/verificationCodeLoginForm.vue
@@ -32,7 +32,7 @@
</template>
<script setup lang="ts">
import * as commonServices from '@life-payment/services/api/Common';
// import * as commonServices from '@life-payment/services/api/Common';
import { FormRules } from '@nutui/nutui-taro/dist/types/__VUE/form/types';
import { FormValidator, Message } from '@/utils';
import { ProFormCaptcha } from 'senin-mini/components';
@@ -74,13 +74,13 @@
});
async function onGetCaptcha() {
  await commonServices.sendVerificationCode(
    {
      phoneNumber: form.phoneNumber,
      businessType: VerificationCodeBusinessType.LifePayPhoneMesssageCodeLogin,
    },
    { showLoading: false }
  );
  // await commonServices.sendVerificationCode(
  //   {
  //     phoneNumber: form.phoneNumber,
  //     businessType: VerificationCodeBusinessType.LifePayPhoneMesssageCodeLogin,
  //   },
  //   { showLoading: false }
  // );
}
async function handleLogin() {
@@ -104,7 +104,7 @@
        );
        userStore.loginVirtualSuccess({
          virtualPhoneNumber: form.phoneNumber,
          virtualUserId: res,
          virtualUserId: res.userId,
        });
        jump();
      }