提交 40946ea4 编写于 作者: ibizdev's avatar ibizdev

lxm1993 发布系统代码 [TrainSys,网页端]

上级 0ad5c750
......@@ -13,13 +13,13 @@
"dependencies": {
"@floating-ui/dom": "^1.0.11",
"@ibiz-template/command": "^0.0.1-beta.50",
"@ibiz-template/controller": "^0.0.1-beta.94",
"@ibiz-template/core": "^0.0.1-beta.94",
"@ibiz-template/model": "^0.0.1-beta.94",
"@ibiz-template/runtime": "^0.0.1-beta.94",
"@ibiz-template/service": "^0.0.1-beta.94",
"@ibiz-template/theme": "^0.0.1-beta.94",
"@ibiz-template/vue-util": "^0.0.1-beta.94",
"@ibiz-template/controller": "^0.0.1-beta.95",
"@ibiz-template/core": "^0.0.1-beta.95",
"@ibiz-template/model": "^0.0.1-beta.95",
"@ibiz-template/runtime": "^0.0.1-beta.95",
"@ibiz-template/service": "^0.0.1-beta.95",
"@ibiz-template/theme": "^0.0.1-beta.95",
"@ibiz-template/vue-util": "^0.0.1-beta.95",
"@ibiz/dynamic-model-api": "^2.1.24",
"@riophae/vue-treeselect": "^0.4.0",
"dayjs": "^1.11.7",
......
此差异已折叠。
......@@ -15,14 +15,14 @@ export const IBizInputNumber = defineComponent({
const c = props.controller;
const currentVal = ref<number | null>(null);
const currentVal = ref<number | null | string>('');
watch(
() => props.value,
(newVal, oldVal) => {
if (newVal !== oldVal) {
const number = Number(newVal);
currentVal.value = Number.isNaN(number) ? 0 : number;
currentVal.value = Number.isNaN(number) ? '' : number;
}
},
{ immediate: true },
......
......@@ -84,7 +84,12 @@ export function useIndexExpRouteManage(
item => item.key === currentKey.value,
);
if (find) {
if (route.matched.length === 2) {
// 如果有缓存,并且现在matched为2说明少了参数,这样直接Push原来的路径即可
router.push(find.fullPath);
} else {
find.fullPath = route.fullPath;
}
} else {
// 全关闭后到首页只显示空白不需要加入到routeMsgs里
if (newVal === indexPath.value) {
......
......@@ -1238,16 +1238,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ]
}, {
......
......@@ -336,6 +336,10 @@
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSSysImage" : {
"glyph" : "xf04b@FontAwesome",
"cssClass" : "fa fa-play"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"defaultContent" : "启动流程",
......
......@@ -1965,6 +1965,10 @@
"width" : 100,
"widthMode" : "PX"
},
"getPSSysImage" : {
"glyph" : "xf021@FontAwesome",
"cssClass" : "fa fa-refresh"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"caption" : "刷新",
......
......@@ -1032,6 +1032,10 @@
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"getPSSysImage" : {
"glyph" : "xf04b@FontAwesome",
"cssClass" : "fa fa-play"
},
"getPSUIAction" : {
"getCapPSLanguageRes" : {
"defaultContent" : "启动流程",
......
......@@ -2662,6 +2662,10 @@
"width" : 100,
"widthMode" : "PX"
},
"getPSSysImage" : {
"glyph" : "xf021@FontAwesome",
"cssClass" : "fa fa-refresh"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"caption" : "刷新",
......
......@@ -2660,6 +2660,10 @@
"width" : 100,
"widthMode" : "PX"
},
"getPSSysImage" : {
"glyph" : "xf021@FontAwesome",
"cssClass" : "fa fa-refresh"
},
"getPSUIAction" : {
"actionTarget" : "SINGLEKEY",
"caption" : "刷新",
......
......@@ -2784,16 +2784,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ]
} ],
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册