mirror of
https://github.com/certd/certd.git
synced 2026-05-15 04:27:31 +08:00
chore:
This commit is contained in:
@@ -79,16 +79,19 @@ defineOptions({
|
||||
});
|
||||
|
||||
const testMobile = ref("");
|
||||
function testSendSms() {
|
||||
async function testSendSms() {
|
||||
if (!testMobile.value) {
|
||||
notification.error({
|
||||
message: "请输入测试手机号"
|
||||
});
|
||||
return;
|
||||
}
|
||||
api.TestSms({
|
||||
await api.TestSms({
|
||||
mobile: testMobile.value
|
||||
});
|
||||
notification.success({
|
||||
message: "发送成功"
|
||||
});
|
||||
}
|
||||
const formState = reactive<Partial<SysSettings>>({
|
||||
public: {
|
||||
|
||||
Reference in New Issue
Block a user