提交 96c824d7 编写于 作者: ibizdev's avatar ibizdev

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

上级 511324c3
...@@ -13,13 +13,13 @@ ...@@ -13,13 +13,13 @@
"dependencies": { "dependencies": {
"@floating-ui/dom": "^1.0.11", "@floating-ui/dom": "^1.0.11",
"@ibiz-template/command": "^0.0.1-beta.50", "@ibiz-template/command": "^0.0.1-beta.50",
"@ibiz-template/controller": "^0.0.1-beta.97", "@ibiz-template/controller": "^0.0.1-beta.98",
"@ibiz-template/core": "^0.0.1-beta.97", "@ibiz-template/core": "^0.0.1-beta.98",
"@ibiz-template/model": "^0.0.1-beta.97", "@ibiz-template/model": "^0.0.1-beta.98",
"@ibiz-template/runtime": "^0.0.1-beta.97", "@ibiz-template/runtime": "^0.0.1-beta.98",
"@ibiz-template/service": "^0.0.1-beta.97", "@ibiz-template/service": "^0.0.1-beta.98",
"@ibiz-template/theme": "^0.0.1-beta.97", "@ibiz-template/theme": "^0.0.1-beta.98",
"@ibiz-template/vue-util": "^0.0.1-beta.97", "@ibiz-template/vue-util": "^0.0.1-beta.98",
"@ibiz/dynamic-model-api": "^2.1.24", "@ibiz/dynamic-model-api": "^2.1.24",
"@riophae/vue-treeselect": "^0.4.0", "@riophae/vue-treeselect": "^0.4.0",
"dayjs": "^1.11.7", "dayjs": "^1.11.7",
......
此差异已折叠。
...@@ -9,6 +9,7 @@ export const AppPortalView = defineComponent({ ...@@ -9,6 +9,7 @@ export const AppPortalView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -8,6 +8,7 @@ export const EditView = defineComponent({ ...@@ -8,6 +8,7 @@ export const EditView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -9,6 +9,7 @@ export const EditView3 = defineComponent({ ...@@ -9,6 +9,7 @@ export const EditView3 = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -13,6 +13,7 @@ export const GridView = defineComponent({ ...@@ -13,6 +13,7 @@ export const GridView = defineComponent({
params: { type: Object as PropType<IParams>, default: () => ({}) }, params: { type: Object as PropType<IParams>, default: () => ({}) },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -24,6 +24,7 @@ export const ListExpView = defineComponent({ ...@@ -24,6 +24,7 @@ export const ListExpView = defineComponent({
srfnav: String, srfnav: String,
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -8,6 +8,7 @@ export const ListView = defineComponent({ ...@@ -8,6 +8,7 @@ export const ListView = defineComponent({
params: { type: Object as PropType<IParams>, default: () => ({}) }, params: { type: Object as PropType<IParams>, default: () => ({}) },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -12,6 +12,7 @@ export const MPickupView = defineComponent({ ...@@ -12,6 +12,7 @@ export const MPickupView = defineComponent({
params: { type: Object as PropType<IParams>, default: () => ({}) }, params: { type: Object as PropType<IParams>, default: () => ({}) },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -9,6 +9,7 @@ export const OptView = defineComponent({ ...@@ -9,6 +9,7 @@ export const OptView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -8,6 +8,7 @@ export const PickupGridView = defineComponent({ ...@@ -8,6 +8,7 @@ export const PickupGridView = defineComponent({
params: { type: Object as PropType<IParams>, default: () => ({}) }, params: { type: Object as PropType<IParams>, default: () => ({}) },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -8,6 +8,7 @@ export const PickupView = defineComponent({ ...@@ -8,6 +8,7 @@ export const PickupView = defineComponent({
params: { type: Object as PropType<IParams>, default: () => ({}) }, params: { type: Object as PropType<IParams>, default: () => ({}) },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -22,6 +22,7 @@ export const TabExpView = defineComponent({ ...@@ -22,6 +22,7 @@ export const TabExpView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -19,6 +19,7 @@ export const TreeExpView = defineComponent({ ...@@ -19,6 +19,7 @@ export const TreeExpView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -13,6 +13,7 @@ export const WFDynaActionView = defineComponent({ ...@@ -13,6 +13,7 @@ export const WFDynaActionView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -14,6 +14,7 @@ export const WFDynaEditView3 = defineComponent({ ...@@ -14,6 +14,7 @@ export const WFDynaEditView3 = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -13,6 +13,7 @@ export const WFDynaStartView = defineComponent({ ...@@ -13,6 +13,7 @@ export const WFDynaStartView = defineComponent({
params: { type: Object as PropType<IParams> }, params: { type: Object as PropType<IParams> },
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -12,6 +12,7 @@ export const WFStepTraceView = defineComponent({ ...@@ -12,6 +12,7 @@ export const WFStepTraceView = defineComponent({
modelPath: { type: String, required: true }, modelPath: { type: String, required: true },
modal: { type: Object as PropType<IModal> }, modal: { type: Object as PropType<IModal> },
deName: { type: String, required: true }, deName: { type: String, required: true },
noLoadDefault: { type: Boolean, required: false },
}, },
setup(props) { setup(props) {
const { proxy } = getCurrentInstance()!; const { proxy } = getCurrentInstance()!;
......
...@@ -55,6 +55,7 @@ export const FormDRUIPart = defineComponent({ ...@@ -55,6 +55,7 @@ export const FormDRUIPart = defineComponent({
params: this.$props.controller.params, params: this.$props.controller.params,
modal: this.modal, modal: this.modal,
modelPath: this.viewPath, modelPath: this.viewPath,
noLoadDefault: true,
}, },
key: this.controller.viewComponentKey, key: this.controller.viewComponentKey,
on: { on: {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册