Compare commits

..

2 Commits

Author SHA1 Message Date
砂糖
331faa3971 Merge branch 'master' of http://49.232.154.205:10100/liujingchao/klp-mono 2025-10-30 18:20:49 +08:00
砂糖
a9e72e15be fix: 更新基础URL并修复分页同步问题
- 将hand-factory的基础URL从本地IP更改为公网IP
- 修复L2日志页面分页组件的v-model语法问题
- 调整hand-factory页面配置中登录页面的顺序
2025-10-30 18:20:46 +08:00
3 changed files with 11 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
// 应用全局配置 // 应用全局配置
module.exports = { module.exports = {
baseUrl: 'http://192.168.31.116:8080', // baseUrl: 'http://192.168.31.116:8080',
baseUrl: 'http://140.143.206.120:8080',
// baseUrl: 'http://localhost:8080', // baseUrl: 'http://localhost:8080',
// 应用信息 // 应用信息
appInfo: { appInfo: {

View File

@@ -1,11 +1,5 @@
{ {
"pages": [ "pages": [
{
"path": "pages/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{ {
"path": "pages/index", "path": "pages/index",
"style": { "style": {
@@ -13,6 +7,13 @@
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
{
"path": "pages/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{ {
"path": "pages/mine/index", "path": "pages/mine/index",
"style": { "style": {

View File

@@ -93,8 +93,8 @@
<Pagination <Pagination
v-show="total>0" v-show="total>0"
:total="total" :total="total"
v-model:page="queryForm.pageNum" :page.sync="queryForm.pageNum"
v-model:limit="queryForm.pageSize" :limit.sync="queryForm.pageSize"
@pagination="getLogData" @pagination="getLogData"
/> />