分页器异常问题

This commit is contained in:
lai
2024-01-17 11:00:27 +08:00
parent bd256d7006
commit f1f583e1a5
5 changed files with 7 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ export async function listNeBackup(query: Record<string, any>) {
}
// 分页
const pageNum = query.pageNum - 1;
const pageNum = (query.pageNum - 1) * query.pageSize;
const limtSql = ` order by create_time desc limit ${pageNum},${query.pageSize} `;
// 发起请求

View File

@@ -18,7 +18,7 @@ export async function listLicense(query: Record<string, any>) {
}
// 分页
const pageNum = query.pageNum - 1;
const pageNum = (query.pageNum - 1) * query.pageSize;
const limtSql = ` order by created_at desc limit ${pageNum},${query.pageSize} `;
// 发起请求

View File

@@ -22,7 +22,7 @@ export async function listNeSoftware(query: Record<string, any>) {
}
// 分页
const pageNum = query.pageNum - 1;
const pageNum = (query.pageNum - 1) * query.pageSize;
const limtSql = ` order by update_time desc limit ${pageNum},${query.pageSize} `;
// 发起请求
@@ -180,7 +180,7 @@ export async function listNeVersion(query: Record<string, any>) {
}
// 分页
const pageNum = query.pageNum - 1;
const pageNum = (query.pageNum - 1) * query.pageSize;
const limtSql = ` order by update_time desc limit ${pageNum},${query.pageSize} `;
// 发起请求

View File

@@ -548,6 +548,7 @@ export default {
epsOdbTip: 'ODB (Operator-Determined Barring) Operator-determined blocking, i.e. the ability of a subscriber to access the EPS network is determined by the operator.',
hplmnOdbTip: 'HPLMN-ODB homing operator-determined blocking, i.e., the ability of a subscriber to access services in the EPS network is determined by the subscriber is homing operator',
ardTip:'Access-Restriction-Data (Access-Restriction-Data), can be used to distinguish between 2G/3G/LTE users, to facilitate the coexistence of 2G/3G/LTE network for different types of users to distinguish between the service',
smDataTip:'The IP in sm_data=1-000001&internet-1.2.3.4&ims-1.2.3.5: 1.2.3.4 is the static IP assigned to the APN of 5G user internet, and 1.2.3.5 is the static IP assigned to the APN of 5G user ims. If it is dynamic allocation, just remove the IP and the previous connector. Need to support multiple dnn uses & connections'
},
pcf: {
neType: 'PCF Object',

View File

@@ -128,7 +128,7 @@ export default {
unlock:'解锁',
validSucc:'校验通过',
validError:'校验失败',
backLogin:'返回登录',
backLogin:'返回登录',
},
},
@@ -548,6 +548,7 @@ export default {
epsOdbTip: 'ODB(Operator-Determined Barring)运营商决定的闭锁,即用户接入EPS网络的业务能力由运营商决定.选中 ---对应服务被允许 未选 --- 对应服务被禁止',
hplmnOdbTip: 'HPLMN-ODB归属运营商决定的闭锁,即用户接入EPS网络的业务能力由用户归宿运营商决定.选中 --- 对应服务被允许 未选 -- 对应服务被禁止',
ardTip:'接入控制标志(Access-Restriction-Data),可用于区分2G/3G/LTE用户,便于为2G/3G/LTE网络共存时,对不同类型用户进行区分服务',
smDataTip:'sm_data=1-000001&internet-1.2.3.4&ims-1.2.3.5中的IP1.2.3.4为5G用户internet这个APN分配的静态IP1.2.3.5为5G用户ims这个APN分配的静态IP。如果是动态分配把IP以及前面一个连接符去掉即可。需支持多个dnn用&连接'
},
pcf: {
neType: 'PCF网元对象',