提交 983d5c3e 编写于 作者: ibizdev's avatar ibizdev

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

上级 4c4face0
......@@ -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.68",
"@ibiz-template/core": "^0.0.1-beta.68",
"@ibiz-template/model": "^0.0.1-beta.68",
"@ibiz-template/runtime": "^0.0.1-beta.68",
"@ibiz-template/service": "^0.0.1-beta.68",
"@ibiz-template/theme": "^0.0.1-beta.68",
"@ibiz-template/vue-util": "^0.0.1-beta.68",
"@ibiz-template/controller": "^0.0.1-beta.69",
"@ibiz-template/core": "^0.0.1-beta.69",
"@ibiz-template/model": "^0.0.1-beta.69",
"@ibiz-template/runtime": "^0.0.1-beta.69",
"@ibiz-template/service": "^0.0.1-beta.69",
"@ibiz-template/theme": "^0.0.1-beta.69",
"@ibiz-template/vue-util": "^0.0.1-beta.69",
"@ibiz/dynamic-model-api": "^2.1.17",
"@riophae/vue-treeselect": "^0.4.0",
"dayjs": "^1.11.7",
......
此差异已折叠。
import { useNamespace } from '@ibiz-template/vue-util';
import { computed, defineComponent, PropType } from 'vue';
import { computed, defineComponent, PropType, ref, watch } from 'vue';
import './exp-view-base.scss';
import { IExpBarModel } from '@ibiz-template/model';
import { ListExpViewController } from '@ibiz-template/controller';
......@@ -18,14 +18,18 @@ export const ExpViewBase = defineComponent({
setup(props) {
const ns = useNamespace('exp-view');
const cssVars = computed(() => {
if (props.controller.model?.expBarWidth) {
return ns.cssVarBlock({
'left-width': `${props.controller.model.expBarWidth}px`,
});
}
return {};
});
const cssVars = ref({});
watch(
() => props.expBarModel?.width,
(newVal, oldVal) => {
if (newVal !== oldVal && newVal) {
cssVars.value = ns.cssVarBlock({
'left-width': `${newVal}px`,
});
}
},
);
// 是否显示头部
const isShowHeader = computed(() => {
......
......@@ -651,54 +651,54 @@
dependencies:
qx-util "^0.4.8"
"@ibiz-template/controller@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/controller/-/controller-0.0.1-beta.68.tgz#cb82bf8fb5e8f546a03a9d0a9493c012a4f2f2be"
integrity sha512-Cq1OhcG8qpr9WFBbgvxP8ExOWYfNFJF/iAA2vaEviyDNOCB68dHO4zhH8ZwSEg+qgQ8VBeHmxTOW/v18jckJQQ==
"@ibiz-template/controller@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/controller/-/controller-0.0.1-beta.69.tgz#72aabd8f12942366a55b42c734385ec0aa232530"
integrity sha512-L9v25592x2PZAyxXoFjGCIPUmTv3Pgd0RSQiFxwPpVq3QcW9neBU2YV5uP/6chjK7FN0Iacs4sS+2mQ8blPoVA==
dependencies:
async-validator "^4.2.5"
dayjs "^1.11.5"
"@ibiz-template/core@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/core/-/core-0.0.1-beta.68.tgz#dfeac4d6b0edc2ee443f5ec954b910557c8ccad9"
integrity sha512-2/E4OHx0VJHx3CjSfK4ftHbAjyuKUTv25jcv0MfFBBJedydvaJan3yIFbCa8Bd6dhV8BkgCGrgj3vwmQz9z4rQ==
"@ibiz-template/core@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/core/-/core-0.0.1-beta.69.tgz#c4b0a5f7de4949f204ac47f257a667c62b8e711d"
integrity sha512-3jVqFi10VnZKyogUsBI7yo2aQ6/+0Ad/cIj6DdZK4CiQWSOcmCsNaAeWFv59/FDGY54qI0qzMvJkJNuMC6YL9w==
dependencies:
axios "^1.2.1"
loglevel "^1.8.0"
pluralize "^8.0.0"
qs "^6.11.0"
"@ibiz-template/model@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/model/-/model-0.0.1-beta.68.tgz#bd568e217681858ced252c4b8ddbbda4b492f0e8"
integrity sha512-fj5lENQ2+Y4LHaRdc0PtMul3U9hjDd31+QHjhdsWhPTma8y8Lk4IibHnZ2u3d9nPmAfzHnD6GHiF3EDuhT7arw==
"@ibiz-template/model@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/model/-/model-0.0.1-beta.69.tgz#9ed70802dcb6b1561499733033d86095e3e5594b"
integrity sha512-VdGa/lvfiFETLgeUx/EMwzBH67aTb7m+HAhXm6yGDlqcXkNNufXYXCKHCnENY0BubOGrQQ9sG/LgIYmL7Tn01w==
dependencies:
"@ibiz/dynamic-model-api" "^2.1.17"
pluralize "^8.0.0"
"@ibiz-template/runtime@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/runtime/-/runtime-0.0.1-beta.68.tgz#b9f9a35f279679d8b8a5715ce49385ef1fc7c556"
integrity sha512-QpQPkreAJdOptGVQIg0CO10ChZyCX6OvO9jbQ4HIO8xu/sEZ1bOmvQ0SzjMmzjuEwA1DX3/62GuNW4xRsyLsIg==
"@ibiz-template/runtime@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/runtime/-/runtime-0.0.1-beta.69.tgz#53f1e63b7cc2b82de1750705e04fc3a9ace81529"
integrity sha512-pvJEIYmCrZey17O2d5YVYHUqMqdsfkY//nym4WEHBoMmVe6z+Z1pdasHxJy+tFN1u/xyetD7f6f1E9UEGpOutQ==
dependencies:
"@ibiz-template/command" "^0.0.1-beta.50"
qs "^6.11.0"
"@ibiz-template/service@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/service/-/service-0.0.1-beta.68.tgz#59e35f99368580cdbd40ccb538e3badc8d065a65"
integrity sha512-TwOHsx7YdQqsL9EKmAStbaL30DoemKoQBmTfhIOYT30iVsAgdtWa4cx/+aU+YsZQfPJBWqiaT1eh8SmBdks9zg==
"@ibiz-template/service@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/service/-/service-0.0.1-beta.69.tgz#6c1f1ebd012a1164fb5191bb1e39c218fdbc0730"
integrity sha512-DAzZ0Ydc4fXP4RcKq/5hSMVVNQ2Z2HAHAmdyU7pxnwf/0GsulYsceHczl/gzjhuAF9VnP67VnQWQw1RcaWbgNQ==
"@ibiz-template/theme@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/theme/-/theme-0.0.1-beta.68.tgz#a5db254177e3b647764df358d800f71796f8d81c"
integrity sha512-jtuUsSCd6ZdMSPf0tNM0/0j2PmrOU3EhlijksAoIZzbKtprhd4tGZ4z3K8obQleWIQNQV/aCONyBq910ZQWAUg==
"@ibiz-template/theme@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/theme/-/theme-0.0.1-beta.69.tgz#38fd60549d54485405181137af12774578e83fcd"
integrity sha512-HmP83AzxejFdxNsNYME+ndRRTyWoefs5KorFuImYEAJFJziUhCKrYNs4N/hgU/0DqW5CZGKg4YMeNvdkc20NgA==
"@ibiz-template/vue-util@^0.0.1-beta.68":
version "0.0.1-beta.68"
resolved "http://npm.zhr.icu/@ibiz-template/vue-util/-/vue-util-0.0.1-beta.68.tgz#02b543396c3ecd86d864e8df8fbc61c043b7de38"
integrity sha512-C4QGVn6Z3B6KdWGDHv0D0uQhE9UHoyhZJIKJXwbfvWe3qi1as/yPXSfUyzSQ1+aDxHxne/K5J8WPUOCsQmN14w==
"@ibiz-template/vue-util@^0.0.1-beta.69":
version "0.0.1-beta.69"
resolved "http://npm.zhr.icu/@ibiz-template/vue-util/-/vue-util-0.0.1-beta.69.tgz#138026362e4a39dda01b922335ba6828bf57ca98"
integrity sha512-y2z056YA3uF0Z6PIZitlzCf7WI3CYcObdDr3FTILFoo9tO3ANscvqapHV+rt5+zWUQjGM64BflL5O+1z/K7VwQ==
"@ibiz/dynamic-model-api@^2.1.17":
version "2.1.17"
......
......@@ -1224,16 +1224,16 @@
"mOSFilePath" : "pssysapps/TemplatePublish/psappviewmsggroups/VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ],
"rTMOSFilePath" : "pssysapps/TemplatePublish/psappviewmsggroups/VMGroup2"
......
......@@ -2451,16 +2451,16 @@
"mOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息2",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg3"
"id" : "ViewMsg2"
}
}, {
"name" : "视图消息",
"name" : "视图消息2",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg2"
"id" : "ViewMsg3"
}
} ],
"rTMOSFilePath" : "pssysapps/Web/psappviewmsggroups/VMGroup2"
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册