zhengyiming
2025-03-17 7ed1e4f30ba4d8204152cb157ceaee07374da080
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() {
@@ -122,7 +122,7 @@
}
function goRegister() {
  Taro.navigateTo({
  RouteHelper.navigateTo({
    url: RouterPath.registerForm,
  });
}