yuang-framework-ui-pc 1.1.68 → 1.1.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/yu-uims-organization-dialog/index.js +1 -1
- package/es/yu-uims-role-dialog/index.js +1 -1
- package/es/yu-uims-user-dialog/index.js +1 -1
- package/lib/yu-uims-organization-dialog/index.cjs +2 -2
- package/lib/yu-uims-role-dialog/index.cjs +2 -2
- package/lib/yu-uims-user-dialog/index.cjs +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineComponent, mergeModels, watch, useModel, ref, computed, resolveComponent, createElementBlock, openBlock, Fragment, createBlock, createCommentVNode, unref } from "vue";
|
|
2
|
+
import { EleMessage } from "../utils/message";
|
|
2
3
|
import OrganizationDialog from "./components/organization-dialog";
|
|
3
4
|
import { Select } from "@element-plus/icons-vue";
|
|
4
|
-
import { EleMessage } from "../../es/components";
|
|
5
5
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
6
6
|
...{ name: "YuUimsOrganizationDialog" },
|
|
7
7
|
__name: "index",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent, mergeModels, useModel, ref, computed, watch, resolveComponent, createElementBlock, openBlock, Fragment, createBlock, createCommentVNode, unref } from "vue";
|
|
2
|
+
import { EleMessage } from "../utils/message";
|
|
2
3
|
import RoleDialog from "./components/role-dialog";
|
|
3
4
|
import { Select } from "@element-plus/icons-vue";
|
|
4
5
|
import { http } from "yuang-framework-ui-common/lib/config/httpConfig";
|
|
5
6
|
import { application } from "yuang-framework-ui-common/lib/config/applicationConfig";
|
|
6
|
-
import { EleMessage } from "../../es/components";
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
8
|
...{ name: "YuUimsRoleDialog" },
|
|
9
9
|
__name: "index",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { defineComponent, mergeModels, useModel, ref, computed, watch, resolveComponent, createElementBlock, openBlock, Fragment, createBlock, createCommentVNode, unref } from "vue";
|
|
2
|
+
import { EleMessage } from "../utils/message";
|
|
2
3
|
import { Select } from "@element-plus/icons-vue";
|
|
3
4
|
import UserDialog from "./components/user-dialog";
|
|
4
5
|
import { http } from "yuang-framework-ui-common/lib/config/httpConfig";
|
|
5
6
|
import { application } from "yuang-framework-ui-common/lib/config/applicationConfig";
|
|
6
|
-
import { EleMessage } from "../../es/components";
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
8
|
...{ name: "YuUimsUserDialog" },
|
|
9
9
|
__name: "index",
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const vue = require("vue");
|
|
3
|
+
const message = require("../utils/message");
|
|
3
4
|
const OrganizationDialog = require("./components/organization-dialog");
|
|
4
5
|
const iconsVue = require("@element-plus/icons-vue");
|
|
5
|
-
const components = require("../../es/components");
|
|
6
6
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
7
7
|
...{ name: "YuUimsOrganizationDialog" },
|
|
8
8
|
__name: "index",
|
|
@@ -70,7 +70,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
70
70
|
};
|
|
71
71
|
const hideDialog = () => {
|
|
72
72
|
if (!isInitSuccess.value) {
|
|
73
|
-
|
|
73
|
+
message.EleMessage.warning("请等待初始化成功");
|
|
74
74
|
return;
|
|
75
75
|
}
|
|
76
76
|
isShowDialog.value = false;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const vue = require("vue");
|
|
3
|
+
const message = require("../utils/message");
|
|
3
4
|
const RoleDialog = require("./components/role-dialog");
|
|
4
5
|
const iconsVue = require("@element-plus/icons-vue");
|
|
5
6
|
const httpConfig = require("yuang-framework-ui-common/lib/config/httpConfig");
|
|
6
7
|
const applicationConfig = require("yuang-framework-ui-common/lib/config/applicationConfig");
|
|
7
|
-
const components = require("../../es/components");
|
|
8
8
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
9
9
|
...{ name: "YuUimsRoleDialog" },
|
|
10
10
|
__name: "index",
|
|
@@ -60,7 +60,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
60
60
|
};
|
|
61
61
|
const hideDialog = () => {
|
|
62
62
|
if (!isInitSuccess.value) {
|
|
63
|
-
|
|
63
|
+
message.EleMessage.warning("请等待初始化成功");
|
|
64
64
|
return;
|
|
65
65
|
}
|
|
66
66
|
isShowDialog.value = false;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
const vue = require("vue");
|
|
3
|
+
const message = require("../utils/message");
|
|
3
4
|
const iconsVue = require("@element-plus/icons-vue");
|
|
4
5
|
const UserDialog = require("./components/user-dialog");
|
|
5
6
|
const httpConfig = require("yuang-framework-ui-common/lib/config/httpConfig");
|
|
6
7
|
const applicationConfig = require("yuang-framework-ui-common/lib/config/applicationConfig");
|
|
7
|
-
const components = require("../../es/components");
|
|
8
8
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
9
9
|
...{ name: "YuUimsUserDialog" },
|
|
10
10
|
__name: "index",
|
|
@@ -60,7 +60,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
60
60
|
};
|
|
61
61
|
const hideDialog = () => {
|
|
62
62
|
if (!isInitSuccess.value) {
|
|
63
|
-
|
|
63
|
+
message.EleMessage.warning("请等待初始化成功");
|
|
64
64
|
return;
|
|
65
65
|
}
|
|
66
66
|
isShowDialog.value = false;
|