diff --git a/simpleadmin/www/network.html b/simpleadmin/www/network.html
index 0b2dfd5..d9a8fc4 100644
--- a/simpleadmin/www/network.html
+++ b/simpleadmin/www/network.html
@@ -122,7 +122,7 @@
class="btn btn-info m-2"
id="uncheckAll"
>
- 取消全部勾选
+ 取消勾选
@@ -285,7 +285,7 @@
@@ -490,8 +493,8 @@
updatedLockedBands: null,
sim: "-",
newSim: null,
- cellLockStatus: "未知",
- bands: "获取 Bands...",
+ cellLockStatus: "Unknown",
+ bands: "Fetching Bands...",
isGettingBands: false,
rawdata: null,
@@ -860,12 +863,12 @@
scs === null ||
band === null
) {
- alert("请填写所有必填字段");
+ alert("Please enter all the required fields");
return; // Exit the function early if any of the fields are null
}
// Construct the AT command using the valid pairs
- let atcmd = `AT+QNWLOCK="common/5g",${pci},${earfcn},${scs},${band}`;
+ let atcmd = `AT+QNWLOCK="common/5g",${earfcn},${pci},${scs},${band}`;
// Mock data
this.showModal = true;
@@ -900,7 +903,7 @@
},
cellLockDisableNR() {
// Send the atcmd command to reset the locked bands
- const atcmd = 'AT+QNWLOCK="common/5g",0';
+ const atcmd = 'AT+QNWLOCK="common/5g,0"';
this.showModal = true;