This commit is contained in:
王一嘉
2025-07-15 11:11:24 +08:00
parent 2ea567a76d
commit c953ec5354
20 changed files with 194 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
<script setup>
import {defineModel, defineProps, ref} from 'vue';
import {Message, Notification} from "@arco-design/web-vue";
import {Message} from "@arco-design/web-vue";
import Api from "../../api/index.js";
const verificationCode = defineModel('verificationCode', {type: String});
@@ -40,7 +40,7 @@ const verifyPhone = async () => {
}
return true;
} else {
Notification.error({
Message.warning({
title: '手机号错误',
content: '请检查后重新输入'
});