改正了电话号码前有多几个0的问题

This commit is contained in:
Lei PAN
2023-08-01 11:22:07 +02:00
parent 3403f02684
commit 5f74705498
+2 -1
View File
@@ -334,7 +334,8 @@ class CommandorPage {
if (field) {
field.value = phone
}
}, "0" + this.contact.phoneNumber)
}, "" + this.contact.phoneNumber)
// }, "0" + this.contact.phoneNumber)
// 如果需要显示键盘的话,使用下面方法
// await page.evaluate(() => {
// let field = document.getElementById("phone_number");