tx-sider 2.3.29 → 2.3.31
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/lib/TXUI.mjs +269 -293
- package/lib/TXUI.umd.js +15 -15
- package/lib/style.css +1 -1
- package/package.json +58 -58
package/lib/TXUI.mjs
CHANGED
|
@@ -4,7 +4,7 @@ var __publicField = (obj, key2, value) => {
|
|
|
4
4
|
__defNormalProp(obj, typeof key2 !== "symbol" ? key2 + "" : key2, value);
|
|
5
5
|
return value;
|
|
6
6
|
};
|
|
7
|
-
import { Fragment, isVNode, Comment, Text, defineComponent, reactive, getCurrentInstance, onMounted, onUpdated, onUnmounted, watch, inject, computed, unref, createVNode, provide, Transition as Transition$2,
|
|
7
|
+
import { Fragment, isVNode, Comment, Text, defineComponent, reactive, getCurrentInstance, onMounted, onUpdated, onUnmounted, watch, inject, computed, unref, createVNode, provide, nextTick, Transition as Transition$2, TransitionGroup as TransitionGroup$1, Teleport, ref, render, h as h$2, watchEffect, withDirectives, resolveDirective, onBeforeUnmount, cloneVNode, toRef, withModifiers, vShow, onBeforeMount, toRaw, onBeforeUpdate, shallowRef, resolveComponent, openBlock, createBlock, withCtx, renderSlot, createElementBlock, createElementVNode, toDisplayString, renderList, normalizeClass, pushScopeId, popScopeId, createCommentVNode, toRefs, normalizeStyle, createTextVNode, createStaticVNode } from "vue";
|
|
8
8
|
const index$d = "";
|
|
9
9
|
function _defineProperty$q(obj, key2, value) {
|
|
10
10
|
if (key2 in obj) {
|
|
@@ -12182,7 +12182,6 @@ var useInjectRow = function useInjectRow2() {
|
|
|
12182
12182
|
})
|
|
12183
12183
|
});
|
|
12184
12184
|
};
|
|
12185
|
-
const useProvideRow$1 = useProvideRow;
|
|
12186
12185
|
tuple("top", "middle", "bottom", "stretch");
|
|
12187
12186
|
tuple("start", "end", "center", "space-around", "space-between");
|
|
12188
12187
|
var rowProps = function rowProps2() {
|
|
@@ -12247,7 +12246,7 @@ var ARow = defineComponent({
|
|
|
12247
12246
|
});
|
|
12248
12247
|
return results;
|
|
12249
12248
|
});
|
|
12250
|
-
useProvideRow
|
|
12249
|
+
useProvideRow({
|
|
12251
12250
|
gutter,
|
|
12252
12251
|
supportFlexGap,
|
|
12253
12252
|
wrap: computed(function() {
|
|
@@ -20993,7 +20992,7 @@ const index$a = "";
|
|
|
20993
20992
|
const index$9 = "";
|
|
20994
20993
|
const index$8 = "";
|
|
20995
20994
|
const index$7 = "";
|
|
20996
|
-
const _sfc_main$4 =
|
|
20995
|
+
const _sfc_main$4 = defineComponent({
|
|
20997
20996
|
__name: "MrpModal",
|
|
20998
20997
|
props: {
|
|
20999
20998
|
show: {
|
|
@@ -21010,7 +21009,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
21010
21009
|
}
|
|
21011
21010
|
},
|
|
21012
21011
|
emits: ["cancelHandle", "update:show"],
|
|
21013
|
-
setup(__props, { emit }) {
|
|
21012
|
+
setup(__props, { emit: __emit2 }) {
|
|
21013
|
+
const emit = __emit2;
|
|
21014
21014
|
const props = __props;
|
|
21015
21015
|
const inputV = computed({
|
|
21016
21016
|
get() {
|
|
@@ -21034,8 +21034,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
21034
21034
|
__props.removePadding ? "" : "not-padding",
|
|
21035
21035
|
__props.isScroll ? "module-class modal-components scroll-npm-class" : "module-class modal-components npm-class"
|
|
21036
21036
|
],
|
|
21037
|
-
visible:
|
|
21038
|
-
"onUpdate:visible": _cache[0] || (_cache[0] = ($event) =>
|
|
21037
|
+
visible: inputV.value,
|
|
21038
|
+
"onUpdate:visible": _cache[0] || (_cache[0] = ($event) => inputV.value = $event),
|
|
21039
21039
|
onCancel: cancel,
|
|
21040
21040
|
destroyOnClose: "",
|
|
21041
21041
|
footer: null
|
|
@@ -27978,6 +27978,14 @@ const GetUnReadCountList = (data3) => {
|
|
|
27978
27978
|
requestBase: "USER_BASE_URL"
|
|
27979
27979
|
});
|
|
27980
27980
|
};
|
|
27981
|
+
const getWorkFlowMenuCount = (data3) => {
|
|
27982
|
+
return cwRequest({
|
|
27983
|
+
url: "/api/wf-management/WorkFlow/menuCount",
|
|
27984
|
+
method: "get",
|
|
27985
|
+
data: data3,
|
|
27986
|
+
requestBase: "GATEWAY_URL"
|
|
27987
|
+
});
|
|
27988
|
+
};
|
|
27981
27989
|
var e = "undefined" != typeof globalThis ? globalThis : "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof self ? self : {};
|
|
27982
27990
|
function t(e10) {
|
|
27983
27991
|
return e10 && e10.__esModule && Object.prototype.hasOwnProperty.call(e10, "default") ? e10.default : e10;
|
|
@@ -50833,7 +50841,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
50833
50841
|
}
|
|
50834
50842
|
return target;
|
|
50835
50843
|
};
|
|
50836
|
-
const _withScopeId$2 = (n10) => (pushScopeId("data-v-
|
|
50844
|
+
const _withScopeId$2 = (n10) => (pushScopeId("data-v-8ae1c0f2"), n10 = n10(), popScopeId(), n10);
|
|
50837
50845
|
const _hoisted_1$2 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
|
|
50838
50846
|
const _hoisted_2$2 = { class: "relative w-[30px] h-[30px]" };
|
|
50839
50847
|
const _hoisted_3$2 = {
|
|
@@ -50880,19 +50888,20 @@ const _hoisted_9$2 = { class: "text-xl focusTC pl-2" };
|
|
|
50880
50888
|
const _hoisted_10$2 = { class: "flex flex-col px-5 pr-0 h-full" };
|
|
50881
50889
|
const _hoisted_11$2 = ["onClick"];
|
|
50882
50890
|
const _hoisted_12$2 = { class: "w-full h-full overflow-y-auto content" };
|
|
50883
|
-
const _hoisted_13$
|
|
50884
|
-
const _sfc_main$2 =
|
|
50891
|
+
const _hoisted_13$2 = { class: "mb-[20px]" };
|
|
50892
|
+
const _sfc_main$2 = defineComponent({
|
|
50885
50893
|
__name: "ModuleVersionModal",
|
|
50886
50894
|
props: {
|
|
50887
50895
|
show: { type: Boolean },
|
|
50888
|
-
paramsQuery:
|
|
50889
|
-
title:
|
|
50896
|
+
paramsQuery: {},
|
|
50897
|
+
title: {}
|
|
50890
50898
|
},
|
|
50891
50899
|
emits: ["update:show", "getItem"],
|
|
50892
|
-
setup(__props, { emit }) {
|
|
50900
|
+
setup(__props, { emit: __emit2 }) {
|
|
50893
50901
|
var _a2;
|
|
50894
|
-
const
|
|
50902
|
+
const emit = __emit2;
|
|
50895
50903
|
const editorRef = ref(null);
|
|
50904
|
+
const props = __props;
|
|
50896
50905
|
const inputV = computed({
|
|
50897
50906
|
get() {
|
|
50898
50907
|
return props.show;
|
|
@@ -50937,8 +50946,8 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
50937
50946
|
const _component_a_row = __unplugin_components_9;
|
|
50938
50947
|
const _component_MrpModal = _sfc_main$4;
|
|
50939
50948
|
return openBlock(), createBlock(_component_MrpModal, {
|
|
50940
|
-
show:
|
|
50941
|
-
"onUpdate:show": _cache[1] || (_cache[1] = ($event) =>
|
|
50949
|
+
show: inputV.value,
|
|
50950
|
+
"onUpdate:show": _cache[1] || (_cache[1] = ($event) => inputV.value = $event),
|
|
50942
50951
|
onCancelHandle: moduleHandle,
|
|
50943
50952
|
"remove-padding": false,
|
|
50944
50953
|
isScroll: false
|
|
@@ -50949,7 +50958,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
50949
50958
|
(openBlock(), createElementBlock("svg", _hoisted_3$2, _hoisted_5$2)),
|
|
50950
50959
|
(openBlock(), createElementBlock("svg", _hoisted_6$2, _hoisted_8$2))
|
|
50951
50960
|
]),
|
|
50952
|
-
createElementVNode("span", _hoisted_9$2, toDisplayString(
|
|
50961
|
+
createElementVNode("span", _hoisted_9$2, toDisplayString(_ctx.title), 1)
|
|
50953
50962
|
])
|
|
50954
50963
|
]),
|
|
50955
50964
|
body: withCtx(() => [
|
|
@@ -50983,7 +50992,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
50983
50992
|
style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
|
|
50984
50993
|
}),
|
|
50985
50994
|
createElementVNode("div", _hoisted_12$2, [
|
|
50986
|
-
createElementVNode("div", _hoisted_13$
|
|
50995
|
+
createElementVNode("div", _hoisted_13$2, [
|
|
50987
50996
|
createVNode(unref(Toolbar), {
|
|
50988
50997
|
editor: editorRef.value,
|
|
50989
50998
|
defaultConfig: { readOnly: true },
|
|
@@ -51010,7 +51019,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
51010
51019
|
};
|
|
51011
51020
|
}
|
|
51012
51021
|
});
|
|
51013
|
-
const __unplugin_components_6 = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
51022
|
+
const __unplugin_components_6 = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-8ae1c0f2"]]);
|
|
51014
51023
|
const index$6 = "";
|
|
51015
51024
|
const index$5 = "";
|
|
51016
51025
|
const index$4 = "";
|
|
@@ -51373,7 +51382,9 @@ const _sfc_main$1 = {
|
|
|
51373
51382
|
menuTitle: String,
|
|
51374
51383
|
ccflow: Array,
|
|
51375
51384
|
ccflowData: Object,
|
|
51376
|
-
noBaseTwoMenu: Boolean
|
|
51385
|
+
noBaseTwoMenu: Boolean,
|
|
51386
|
+
userFlow: Array,
|
|
51387
|
+
userFlowData: Array
|
|
51377
51388
|
},
|
|
51378
51389
|
setup(props, ctx) {
|
|
51379
51390
|
useRouter();
|
|
@@ -51385,6 +51396,7 @@ const _sfc_main$1 = {
|
|
|
51385
51396
|
menuTitle.value = props.menuTitle;
|
|
51386
51397
|
}
|
|
51387
51398
|
);
|
|
51399
|
+
const userFlowList = computed(() => props.userFlowData);
|
|
51388
51400
|
watch(
|
|
51389
51401
|
() => props.module,
|
|
51390
51402
|
() => {
|
|
@@ -51419,11 +51431,12 @@ const _sfc_main$1 = {
|
|
|
51419
51431
|
activeKey,
|
|
51420
51432
|
// isAdd,
|
|
51421
51433
|
ccflowShowData,
|
|
51422
|
-
menuList
|
|
51434
|
+
menuList,
|
|
51435
|
+
userFlowList
|
|
51423
51436
|
};
|
|
51424
51437
|
}
|
|
51425
51438
|
};
|
|
51426
|
-
const _withScopeId$1 = (n10) => (pushScopeId("data-v-
|
|
51439
|
+
const _withScopeId$1 = (n10) => (pushScopeId("data-v-292901bd"), n10 = n10(), popScopeId(), n10);
|
|
51427
51440
|
const _hoisted_1$1 = {
|
|
51428
51441
|
key: 0,
|
|
51429
51442
|
class: "w-[80px] flex flex-col justify-center focusTC bb-f5f5f5 br-f5f5f5",
|
|
@@ -51459,9 +51472,15 @@ const _hoisted_7$1 = {
|
|
|
51459
51472
|
};
|
|
51460
51473
|
const _hoisted_8$1 = { key: 0 };
|
|
51461
51474
|
const _hoisted_9$1 = { key: 1 };
|
|
51462
|
-
const _hoisted_10$1 =
|
|
51463
|
-
|
|
51464
|
-
|
|
51475
|
+
const _hoisted_10$1 = {
|
|
51476
|
+
key: 1,
|
|
51477
|
+
class: "ml-[10px]"
|
|
51478
|
+
};
|
|
51479
|
+
const _hoisted_11$1 = { key: 0 };
|
|
51480
|
+
const _hoisted_12$1 = { key: 1 };
|
|
51481
|
+
const _hoisted_13$1 = ["onClick"];
|
|
51482
|
+
const _hoisted_14$1 = ["onClick"];
|
|
51483
|
+
const _hoisted_15$1 = { class: "ml-[25px]" };
|
|
51465
51484
|
function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
51466
51485
|
const _component_plus_circle_outlined = resolveComponent("plus-circle-outlined");
|
|
51467
51486
|
const _component_a_collapse_panel = __unplugin_components_0$1;
|
|
@@ -51493,7 +51512,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
51493
51512
|
])) : createCommentVNode("", true),
|
|
51494
51513
|
createElementVNode("div", _hoisted_2$1, [
|
|
51495
51514
|
(openBlock(true), createElementBlock(Fragment, null, renderList(itemV.menuButtons, (itemC, indC) => {
|
|
51496
|
-
var _a3, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2;
|
|
51515
|
+
var _a3, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2;
|
|
51497
51516
|
return openBlock(), createElementBlock(Fragment, { key: indC }, [
|
|
51498
51517
|
!((_a3 = itemC == null ? void 0 : itemC.text) == null ? void 0 : _a3.includes("(删)")) ? (openBlock(), createElementBlock("div", _hoisted_3$1, [
|
|
51499
51518
|
$props.noBaseTwoMenu ? (openBlock(), createElementBlock("span", {
|
|
@@ -51511,23 +51530,32 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
51511
51530
|
)) == null ? void 0 : _g2.num) + ") ", 1)) : (openBlock(), createElementBlock("span", _hoisted_9$1, " (" + toDisplayString((_j2 = (_i2 = (_h2 = $setup.ccflowShowData) == null ? void 0 : _h2.menuNumsList) == null ? void 0 : _i2.find(
|
|
51512
51531
|
(_x2) => _x2.code === $props.ccflow[itemC.text]
|
|
51513
51532
|
)) == null ? void 0 : _j2.num) + ") ", 1))
|
|
51533
|
+
])) : createCommentVNode("", true),
|
|
51534
|
+
Object.keys($props.userFlow).includes(itemC.text) ? (openBlock(), createElementBlock("span", _hoisted_10$1, [
|
|
51535
|
+
$props.userFlow[itemC.text] instanceof Array ? (openBlock(), createElementBlock("span", _hoisted_11$1, " (" + toDisplayString((_l2 = (_k2 = $setup.userFlowList) == null ? void 0 : _k2.find(
|
|
51536
|
+
(_x2) => _x2.code === $props.userFlow[itemC.text][0]
|
|
51537
|
+
)) == null ? void 0 : _l2.count) + "/" + toDisplayString((_n = (_m2 = $setup.userFlowList) == null ? void 0 : _m2.find(
|
|
51538
|
+
(_x2) => _x2.code === $props.userFlow[itemC.text][1]
|
|
51539
|
+
)) == null ? void 0 : _n.count) + ") ", 1)) : (openBlock(), createElementBlock("span", _hoisted_12$1, " (" + toDisplayString((_p2 = (_o2 = $setup.userFlowList) == null ? void 0 : _o2.find(
|
|
51540
|
+
(_x2) => _x2.code === $props.userFlow[itemC.text]
|
|
51541
|
+
)) == null ? void 0 : _p2.count) + ") ", 1))
|
|
51514
51542
|
])) : createCommentVNode("", true)
|
|
51515
51543
|
], 8, _hoisted_4$1)) : createCommentVNode("", true),
|
|
51516
|
-
!$props.noBaseTwoMenu && !((
|
|
51544
|
+
!$props.noBaseTwoMenu && !((_q2 = itemC == null ? void 0 : itemC.text) == null ? void 0 : _q2.includes("(删)")) ? (openBlock(), createElementBlock("span", {
|
|
51517
51545
|
key: 1,
|
|
51518
51546
|
class: "cursor-pointer w-1/2",
|
|
51519
51547
|
onClick: ($event) => $setup.toProjectPages(itemC.url)
|
|
51520
51548
|
}, [
|
|
51521
51549
|
createElementVNode("span", null, toDisplayString(itemC.text), 1)
|
|
51522
|
-
], 8,
|
|
51550
|
+
], 8, _hoisted_13$1)) : createCommentVNode("", true),
|
|
51523
51551
|
itemC.addText ? (openBlock(), createElementBlock("span", {
|
|
51524
51552
|
key: 2,
|
|
51525
51553
|
class: "w-1/2 cursor-pointer switchedSystems defaultTS funcTC",
|
|
51526
51554
|
onClick: ($event) => $setup.toProjectPages(itemC.addUrl)
|
|
51527
51555
|
}, [
|
|
51528
51556
|
createVNode(_component_plus_circle_outlined, { class: "mx-0.5 largeTS leading-[24px]" }),
|
|
51529
|
-
createElementVNode("span",
|
|
51530
|
-
], 8,
|
|
51557
|
+
createElementVNode("span", _hoisted_15$1, toDisplayString(itemC.addText), 1)
|
|
51558
|
+
], 8, _hoisted_14$1)) : createCommentVNode("", true)
|
|
51531
51559
|
])) : createCommentVNode("", true)
|
|
51532
51560
|
], 64);
|
|
51533
51561
|
}), 128))
|
|
@@ -51544,7 +51572,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
51544
51572
|
}, 8, ["activeKey"])
|
|
51545
51573
|
]);
|
|
51546
51574
|
}
|
|
51547
|
-
const EconomicsSider = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-
|
|
51575
|
+
const EconomicsSider = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1], ["__scopeId", "data-v-292901bd"]]);
|
|
51548
51576
|
window.location.hostname.split(".");
|
|
51549
51577
|
function encryptionStr(data3) {
|
|
51550
51578
|
if (data3 === null || data3 === void 0) {
|
|
@@ -54437,7 +54465,7 @@ class HubConnectionBuilder {
|
|
|
54437
54465
|
function isLogger(logger) {
|
|
54438
54466
|
return logger.log !== void 0;
|
|
54439
54467
|
}
|
|
54440
|
-
function useCcflowCall() {
|
|
54468
|
+
function useCcflowCall(callBack) {
|
|
54441
54469
|
const hostname2 = window.location.hostname.split(".");
|
|
54442
54470
|
const protocol2 = window.location.protocol;
|
|
54443
54471
|
const jumpUrl = process.env.NODE_ENV == "development" ? "https://basis.nacho.cn" : `${protocol2}//basis.${hostname2[1]}.${hostname2[2]}`;
|
|
@@ -54451,22 +54479,25 @@ function useCcflowCall() {
|
|
|
54451
54479
|
newVersionList: []
|
|
54452
54480
|
});
|
|
54453
54481
|
const init = () => {
|
|
54454
|
-
connection.value = new HubConnectionBuilder().withUrl(`${jumpUrl}/basis?Bearer=` + localStorage.getItem("token"), {}).withAutomaticReconnect([1e3, 4e3, 1e3, 4e3]).configureLogging(LogLevel.Error).build();
|
|
54482
|
+
connection.value = new HubConnectionBuilder().withUrl(`${jumpUrl}/api/basis-management/signalr?Bearer=` + localStorage.getItem("token"), {}).withAutomaticReconnect([1e3, 4e3, 1e3, 4e3]).configureLogging(LogLevel.Error).build();
|
|
54455
54483
|
connection.value.on("GetNum", (res) => {
|
|
54456
54484
|
ccflowData.todoList = res;
|
|
54457
54485
|
});
|
|
54458
54486
|
connection.value.on("PublishNewVersion", (res) => {
|
|
54459
54487
|
ccflowData.newVersionList = res;
|
|
54488
|
+
callBack("PublishNewVersion", res);
|
|
54460
54489
|
});
|
|
54461
|
-
connection.value.on("
|
|
54462
|
-
console.log("
|
|
54490
|
+
connection.value.on("UserMessageNum", (res) => {
|
|
54491
|
+
console.log("UserMessageNum", "获取数据:", res);
|
|
54463
54492
|
ccflowData.messageList = "";
|
|
54464
54493
|
ccflowData.messageList = res;
|
|
54494
|
+
callBack("UserMessageNum", res);
|
|
54465
54495
|
});
|
|
54466
|
-
connection.value.on("
|
|
54467
|
-
console.log("
|
|
54496
|
+
connection.value.on("UserTodoNum", (res) => {
|
|
54497
|
+
console.log("UserTodoNum", "获取数据:", res);
|
|
54468
54498
|
ccflowData.lingDangList = "";
|
|
54469
54499
|
ccflowData.lingDangList = res;
|
|
54500
|
+
callBack("UserTodoNum", res);
|
|
54470
54501
|
});
|
|
54471
54502
|
connection.value.onreconnected(async (id2) => {
|
|
54472
54503
|
var _a2, _b2;
|
|
@@ -54491,7 +54522,7 @@ function useCcflowCall() {
|
|
|
54491
54522
|
const onClickTodo = () => {
|
|
54492
54523
|
const md2 = localStorage.getItem("loginForm");
|
|
54493
54524
|
window.open(
|
|
54494
|
-
`${
|
|
54525
|
+
`${jumpMsgUrl}/auth?md=${md2}&key=BasisSystem.PersonCenterModule&routerUrl=/workflow/todo&title=审批管理`,
|
|
54495
54526
|
"_blank"
|
|
54496
54527
|
);
|
|
54497
54528
|
};
|
|
@@ -54539,6 +54570,12 @@ const _sfc_main = {
|
|
|
54539
54570
|
// [{菜单名称:接口返回字段},{单名称:[接口返回字段1,接口返回字段2]}]
|
|
54540
54571
|
},
|
|
54541
54572
|
// 审批流
|
|
54573
|
+
userFlow: {
|
|
54574
|
+
type: Array,
|
|
54575
|
+
default: []
|
|
54576
|
+
// [{菜单名称:接口返回字段},{单名称:[接口返回字段1,接口返回字段2]}]
|
|
54577
|
+
},
|
|
54578
|
+
// 审批流
|
|
54542
54579
|
isSystems: String,
|
|
54543
54580
|
// 所属系统
|
|
54544
54581
|
isModules: String,
|
|
@@ -54587,7 +54624,30 @@ const _sfc_main = {
|
|
|
54587
54624
|
});
|
|
54588
54625
|
const refData = toRefs(data3);
|
|
54589
54626
|
const iconUrl = process.env.NODE_ENV == "development" ? "https://basis.nacho.cn" : "https://basis.nacho.cn";
|
|
54590
|
-
const [ccflowData, onClickTodo, onClickMessage, init] = useCcflowCall(
|
|
54627
|
+
const [ccflowData, onClickTodo, onClickMessage, init] = useCcflowCall(
|
|
54628
|
+
(type4) => {
|
|
54629
|
+
var _a3;
|
|
54630
|
+
switch (type4) {
|
|
54631
|
+
case "GetNum":
|
|
54632
|
+
break;
|
|
54633
|
+
case "PublishNewVersion":
|
|
54634
|
+
tableData.value = ccflowData.newVersionList;
|
|
54635
|
+
content.value = ccflowData.newVersionList[0] ?? {};
|
|
54636
|
+
isModuleVersionUpdate.value = ((_a3 = ccflowData.newVersionList) == null ? void 0 : _a3.length) ? true : false;
|
|
54637
|
+
break;
|
|
54638
|
+
case "UserMessageNum":
|
|
54639
|
+
getUnReadMessage(0);
|
|
54640
|
+
break;
|
|
54641
|
+
case "UserTodoNum":
|
|
54642
|
+
getUserFlowData();
|
|
54643
|
+
break;
|
|
54644
|
+
}
|
|
54645
|
+
}
|
|
54646
|
+
);
|
|
54647
|
+
const userFlowData = ref([]);
|
|
54648
|
+
const getUserFlowData = async () => {
|
|
54649
|
+
userFlowData.value = await getWorkFlowMenuCount();
|
|
54650
|
+
};
|
|
54591
54651
|
watch(
|
|
54592
54652
|
() => props.isSystems,
|
|
54593
54653
|
() => {
|
|
@@ -54660,7 +54720,7 @@ const _sfc_main = {
|
|
|
54660
54720
|
onMounted(async () => {
|
|
54661
54721
|
var _a3, _b2, _c2, _d2, _e2, _f2;
|
|
54662
54722
|
await getUnReadMessage(0);
|
|
54663
|
-
await
|
|
54723
|
+
await getUserFlowData();
|
|
54664
54724
|
getModeuleInfoDataHandle = await getModeuleInfoData();
|
|
54665
54725
|
isShowAllProductionBases.value = (_a3 = getModeuleInfoDataHandle(
|
|
54666
54726
|
window.location.hostname.split(".")[0]
|
|
@@ -55257,51 +55317,6 @@ const _sfc_main = {
|
|
|
55257
55317
|
activeKey.value = i2;
|
|
55258
55318
|
content.value = item ?? {};
|
|
55259
55319
|
};
|
|
55260
|
-
watch(
|
|
55261
|
-
() => ccflowData.newVersionList,
|
|
55262
|
-
() => {
|
|
55263
|
-
var _a3;
|
|
55264
|
-
console.log("ccflowData.newVersionList", ccflowData.newVersionList);
|
|
55265
|
-
tableData.value = ccflowData.newVersionList;
|
|
55266
|
-
content.value = ccflowData.newVersionList[0] ?? {};
|
|
55267
|
-
isModuleVersionUpdate.value = ((_a3 = ccflowData.newVersionList) == null ? void 0 : _a3.length) ? true : false;
|
|
55268
|
-
},
|
|
55269
|
-
{ deep: true }
|
|
55270
|
-
);
|
|
55271
|
-
watch(
|
|
55272
|
-
() => ccflowData.messageList,
|
|
55273
|
-
async (newVal) => {
|
|
55274
|
-
var _a3, _b2;
|
|
55275
|
-
console.log("ccflowData.messageList", ccflowData.messageList);
|
|
55276
|
-
console.log("newVal", newVal);
|
|
55277
|
-
console.log(
|
|
55278
|
-
'JSON.parse(localStorage.getItem("userInfos"))?.userId',
|
|
55279
|
-
(_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId
|
|
55280
|
-
);
|
|
55281
|
-
if (newVal && newVal == ((_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId)) {
|
|
55282
|
-
console.log("相等");
|
|
55283
|
-
await getUnReadMessage(0);
|
|
55284
|
-
}
|
|
55285
|
-
},
|
|
55286
|
-
{ deep: true }
|
|
55287
|
-
);
|
|
55288
|
-
watch(
|
|
55289
|
-
() => ccflowData.lingDangList,
|
|
55290
|
-
async (newVal) => {
|
|
55291
|
-
var _a3, _b2;
|
|
55292
|
-
console.log("ccflowData.lingDangList", ccflowData.lingDangList);
|
|
55293
|
-
console.log("newVal", newVal);
|
|
55294
|
-
console.log(
|
|
55295
|
-
'JSON.parse(localStorage.getItem("userInfos"))?.userId',
|
|
55296
|
-
(_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId
|
|
55297
|
-
);
|
|
55298
|
-
if (newVal && newVal == ((_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId)) {
|
|
55299
|
-
console.log("相等");
|
|
55300
|
-
await getUnReadMessage(1);
|
|
55301
|
-
}
|
|
55302
|
-
},
|
|
55303
|
-
{ deep: true }
|
|
55304
|
-
);
|
|
55305
55320
|
const tableOptionRef = ref([
|
|
55306
55321
|
{
|
|
55307
55322
|
title: "序号",
|
|
@@ -55446,12 +55461,13 @@ const _sfc_main = {
|
|
|
55446
55461
|
changeTab,
|
|
55447
55462
|
editorRef,
|
|
55448
55463
|
unReadCount,
|
|
55449
|
-
unLingDangCount
|
|
55464
|
+
unLingDangCount,
|
|
55465
|
+
userFlowData
|
|
55450
55466
|
/*******end*****/
|
|
55451
55467
|
};
|
|
55452
55468
|
}
|
|
55453
55469
|
};
|
|
55454
|
-
const _withScopeId = (n10) => (pushScopeId("data-v-
|
|
55470
|
+
const _withScopeId = (n10) => (pushScopeId("data-v-128c9be4"), n10 = n10(), popScopeId(), n10);
|
|
55455
55471
|
const _hoisted_1 = {
|
|
55456
55472
|
class: "bg-white defaultTS funcTC relative",
|
|
55457
55473
|
style: { "padding-bottom": "10px", "margin-bottom": "10px" }
|
|
@@ -55521,47 +55537,9 @@ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55521
55537
|
})
|
|
55522
55538
|
])
|
|
55523
55539
|
], -1));
|
|
55524
|
-
const _hoisted_15 = /* @__PURE__ */
|
|
55525
|
-
class: "inline-block",
|
|
55526
|
-
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55527
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
55528
|
-
version: "1.1",
|
|
55529
|
-
width: "16px",
|
|
55530
|
-
height: "14px"
|
|
55531
|
-
}, [
|
|
55532
|
-
/* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -221 -57 )" }, [
|
|
55533
|
-
/* @__PURE__ */ createElementVNode("path", {
|
|
55534
|
-
d: "M 16 6.15014662756593 C 16 3.8592375366569183 14.970833333333333 1.6873900293255113 13.183333333333334 0.19296187683278698 C 13.045833333333333 0.07800586510268624 12.870833333333334 0.01642228739001439 12.691666666666666 0.01642228739001439 C 12.470833333333333 0.01642228739001439 12.258333333333333 0.11085043988271504 12.116666666666667 0.27917888563048043 C 11.983333333333333 0.43108504398823144 11.920833333333333 0.6240469208211363 11.9375 0.8252199413489305 C 11.954166666666667 1.022287390029339 12.05 1.2070381231671186 12.204166666666667 1.3343108504398482 C 13.654166666666667 2.5454545454545885 14.4875 4.30263929618766 14.4875 6.154252199413434 C 14.4875 9.660410557184807 11.579166666666667 12.50967741935478 8.004166666666666 12.50967741935478 C 4.429166666666666 12.50967741935478 1.5208333333333333 9.656304985337185 1.5208333333333333 6.154252199413434 C 1.5208333333333333 4.298533724340157 2.3541666666666665 2.541348973607085 3.8041666666666667 1.3343108504398482 C 3.9583333333333335 1.2070381231671186 4.054166666666666 1.0263929618768426 4.070833333333334 0.8252199413489305 C 4.0875 0.6281524926686399 4.025 0.43108504398823144 3.8916666666666666 0.27917888563048043 C 3.745833333333333 0.11495601173021863 3.5375 0.01642228739001439 3.316666666666667 0.01642228739001439 C 3.1375 0.01642228739001439 2.9625 0.07800586510268624 2.825 0.19296187683278698 C 1.0291666666666666 1.6873900293255113 0 3.8592375366569183 0 6.15014662756593 C 0 10.47741935483873 3.5875 14 8 14 C 12.4125 14 16 10.47741935483873 16 6.15014662756593 Z ",
|
|
55535
|
-
"fill-rule": "nonzero",
|
|
55536
|
-
fill: "#97D2FD",
|
|
55537
|
-
stroke: "none",
|
|
55538
|
-
transform: "matrix(1 0 0 1 221 57 )"
|
|
55539
|
-
})
|
|
55540
|
-
])
|
|
55541
|
-
], -1));
|
|
55542
|
-
const _hoisted_16 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55543
|
-
class: "inline-block absolute top-1 right-[38px]",
|
|
55544
|
-
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55545
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
55546
|
-
version: "1.1",
|
|
55547
|
-
width: "2px",
|
|
55548
|
-
height: "9px"
|
|
55549
|
-
}, [
|
|
55550
|
-
/* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -228 -55 )" }, [
|
|
55551
|
-
/* @__PURE__ */ createElementVNode("path", {
|
|
55552
|
-
d: "M 0.021052631578944176 8.18957345971566 C 0.021052631578944176 8.624644549763033 0.4578947368421116 8.978672985781998 0.9947368421051882 8.978672985781998 C 1.5315789473684163 8.978672985781998 1.9684210526315837 8.624644549763033 1.9684210526315837 8.18957345971566 L 1.9684210526315837 0.7890995260663374 C 1.9684210526315837 0.3540284360189645 1.5315789473684163 0 0.9947368421051882 0 C 0.4578947368421116 0 0.021052631578944176 0.3540284360189645 0.021052631578944176 0.7890995260663374 L 0.021052631578944176 8.18957345971566 Z ",
|
|
55553
|
-
"fill-rule": "nonzero",
|
|
55554
|
-
fill: "#97D2FD",
|
|
55555
|
-
stroke: "none",
|
|
55556
|
-
transform: "matrix(1 0 0 1 228 55 )"
|
|
55557
|
-
})
|
|
55558
|
-
])
|
|
55559
|
-
], -1));
|
|
55560
|
-
const _hoisted_17 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "ml-[5px] cursor-pointer" }, "退出", -1));
|
|
55540
|
+
const _hoisted_15 = /* @__PURE__ */ createStaticVNode('<svg class="inline-block" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="16px" height="14px" data-v-128c9be4><g transform="matrix(1 0 0 1 -221 -57 )" data-v-128c9be4><path d="M 16 6.15014662756593 C 16 3.8592375366569183 14.970833333333333 1.6873900293255113 13.183333333333334 0.19296187683278698 C 13.045833333333333 0.07800586510268624 12.870833333333334 0.01642228739001439 12.691666666666666 0.01642228739001439 C 12.470833333333333 0.01642228739001439 12.258333333333333 0.11085043988271504 12.116666666666667 0.27917888563048043 C 11.983333333333333 0.43108504398823144 11.920833333333333 0.6240469208211363 11.9375 0.8252199413489305 C 11.954166666666667 1.022287390029339 12.05 1.2070381231671186 12.204166666666667 1.3343108504398482 C 13.654166666666667 2.5454545454545885 14.4875 4.30263929618766 14.4875 6.154252199413434 C 14.4875 9.660410557184807 11.579166666666667 12.50967741935478 8.004166666666666 12.50967741935478 C 4.429166666666666 12.50967741935478 1.5208333333333333 9.656304985337185 1.5208333333333333 6.154252199413434 C 1.5208333333333333 4.298533724340157 2.3541666666666665 2.541348973607085 3.8041666666666667 1.3343108504398482 C 3.9583333333333335 1.2070381231671186 4.054166666666666 1.0263929618768426 4.070833333333334 0.8252199413489305 C 4.0875 0.6281524926686399 4.025 0.43108504398823144 3.8916666666666666 0.27917888563048043 C 3.745833333333333 0.11495601173021863 3.5375 0.01642228739001439 3.316666666666667 0.01642228739001439 C 3.1375 0.01642228739001439 2.9625 0.07800586510268624 2.825 0.19296187683278698 C 1.0291666666666666 1.6873900293255113 0 3.8592375366569183 0 6.15014662756593 C 0 10.47741935483873 3.5875 14 8 14 C 12.4125 14 16 10.47741935483873 16 6.15014662756593 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 221 57 )" data-v-128c9be4></path></g></svg><svg class="inline-block absolute top-1 right-[38px]" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1" width="2px" height="9px" data-v-128c9be4><g transform="matrix(1 0 0 1 -228 -55 )" data-v-128c9be4><path d="M 0.021052631578944176 8.18957345971566 C 0.021052631578944176 8.624644549763033 0.4578947368421116 8.978672985781998 0.9947368421051882 8.978672985781998 C 1.5315789473684163 8.978672985781998 1.9684210526315837 8.624644549763033 1.9684210526315837 8.18957345971566 L 1.9684210526315837 0.7890995260663374 C 1.9684210526315837 0.3540284360189645 1.5315789473684163 0 0.9947368421051882 0 C 0.4578947368421116 0 0.021052631578944176 0.3540284360189645 0.021052631578944176 0.7890995260663374 L 0.021052631578944176 8.18957345971566 Z " fill-rule="nonzero" fill="#97D2FD" stroke="none" transform="matrix(1 0 0 1 228 55 )" data-v-128c9be4></path></g></svg><span class="ml-[5px] cursor-pointer" data-v-128c9be4>退出</span>', 3);
|
|
55561
55541
|
const _hoisted_18 = [
|
|
55562
|
-
_hoisted_15
|
|
55563
|
-
_hoisted_16,
|
|
55564
|
-
_hoisted_17
|
|
55542
|
+
_hoisted_15
|
|
55565
55543
|
];
|
|
55566
55544
|
const _hoisted_19 = {
|
|
55567
55545
|
key: 0,
|
|
@@ -55609,12 +55587,11 @@ const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55609
55587
|
])
|
|
55610
55588
|
], -1));
|
|
55611
55589
|
const _hoisted_24 = { class: "ml-[6px] focusTC" };
|
|
55612
|
-
const _hoisted_25 =
|
|
55613
|
-
const _hoisted_26 = {
|
|
55590
|
+
const _hoisted_25 = {
|
|
55614
55591
|
key: 2,
|
|
55615
55592
|
class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
|
|
55616
55593
|
};
|
|
55617
|
-
const
|
|
55594
|
+
const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55618
55595
|
class: "inline-block",
|
|
55619
55596
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55620
55597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55632,8 +55609,8 @@ const _hoisted_27 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55632
55609
|
})
|
|
55633
55610
|
])
|
|
55634
55611
|
], -1));
|
|
55635
|
-
const
|
|
55636
|
-
const
|
|
55612
|
+
const _hoisted_27 = { class: "ml-[6px] focusTC" };
|
|
55613
|
+
const _hoisted_28 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" }, [
|
|
55637
55614
|
/* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55638
55615
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55639
55616
|
src: _imports_0,
|
|
@@ -55642,29 +55619,29 @@ const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55642
55619
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "修改密码")
|
|
55643
55620
|
])
|
|
55644
55621
|
], -1));
|
|
55645
|
-
const
|
|
55646
|
-
const
|
|
55647
|
-
const
|
|
55648
|
-
const
|
|
55649
|
-
const
|
|
55622
|
+
const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "mt-28 focusTC largeTitleTS text-center pb-4" }, "修改密码", -1));
|
|
55623
|
+
const _hoisted_30 = { class: "h-[300px]" };
|
|
55624
|
+
const _hoisted_31 = { class: "flex justify-between w-[380px] mx-auto mt-12" };
|
|
55625
|
+
const _hoisted_32 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55626
|
+
const _hoisted_33 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55650
55627
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55651
55628
|
src: _imports_0,
|
|
55652
55629
|
alt: ""
|
|
55653
55630
|
}),
|
|
55654
55631
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换系统")
|
|
55655
55632
|
], -1));
|
|
55656
|
-
const
|
|
55633
|
+
const _hoisted_34 = {
|
|
55657
55634
|
class: "flex flex-wrap justify-center",
|
|
55658
55635
|
style: { "padding": "7.7rem" }
|
|
55659
55636
|
};
|
|
55660
|
-
const
|
|
55661
|
-
const
|
|
55637
|
+
const _hoisted_35 = ["onClick"];
|
|
55638
|
+
const _hoisted_36 = {
|
|
55662
55639
|
key: 0,
|
|
55663
55640
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 themeBGC"
|
|
55664
55641
|
};
|
|
55665
|
-
const
|
|
55666
|
-
const
|
|
55667
|
-
const
|
|
55642
|
+
const _hoisted_37 = { class: "text-xl focusTC flex items-center" };
|
|
55643
|
+
const _hoisted_38 = ["src"];
|
|
55644
|
+
const _hoisted_39 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
|
|
55668
55645
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8 cursor-pointer" }, [
|
|
55669
55646
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55670
55647
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55705,13 +55682,13 @@ const _hoisted_40 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55705
55682
|
]),
|
|
55706
55683
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC hover:underline" }, "当前选择")
|
|
55707
55684
|
], -1));
|
|
55708
|
-
const
|
|
55685
|
+
const _hoisted_40 = {
|
|
55709
55686
|
key: 1,
|
|
55710
55687
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 tabHeaderBGC"
|
|
55711
55688
|
};
|
|
55712
|
-
const
|
|
55713
|
-
const
|
|
55714
|
-
const
|
|
55689
|
+
const _hoisted_41 = { class: "text-xl focusTC flex items-center" };
|
|
55690
|
+
const _hoisted_42 = ["src"];
|
|
55691
|
+
const _hoisted_43 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "relative" }, [
|
|
55715
55692
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8" }, [
|
|
55716
55693
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55717
55694
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55734,27 +55711,27 @@ const _hoisted_44 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55734
55711
|
]),
|
|
55735
55712
|
/* @__PURE__ */ createElementVNode("span", { class: "defaultTitleTS clickTC hover:underline cursor-pointer" }, "选择")
|
|
55736
55713
|
], -1));
|
|
55737
|
-
const
|
|
55738
|
-
const
|
|
55739
|
-
const
|
|
55740
|
-
const
|
|
55714
|
+
const _hoisted_44 = { class: "flex justify-between content-between flex-wrap w-full h-[120px] px-[40px] pt-[20px] pb-[25px] clickTC leading-loose" };
|
|
55715
|
+
const _hoisted_45 = ["src"];
|
|
55716
|
+
const _hoisted_46 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55717
|
+
const _hoisted_47 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55741
55718
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55742
55719
|
src: _imports_0,
|
|
55743
55720
|
alt: ""
|
|
55744
55721
|
}),
|
|
55745
55722
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换模块")
|
|
55746
55723
|
], -1));
|
|
55747
|
-
const
|
|
55724
|
+
const _hoisted_48 = {
|
|
55748
55725
|
class: "flex flex-wrap justify-center",
|
|
55749
55726
|
style: { "padding": "7.7rem" }
|
|
55750
55727
|
};
|
|
55751
|
-
const
|
|
55752
|
-
const
|
|
55753
|
-
const
|
|
55728
|
+
const _hoisted_49 = ["onClick"];
|
|
55729
|
+
const _hoisted_50 = { key: 0 };
|
|
55730
|
+
const _hoisted_51 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
|
|
55731
|
+
const _hoisted_52 = ["src"];
|
|
55754
55732
|
const _hoisted_53 = ["src"];
|
|
55755
|
-
const _hoisted_54 = ["
|
|
55756
|
-
const _hoisted_55 = {
|
|
55757
|
-
const _hoisted_56 = {
|
|
55733
|
+
const _hoisted_54 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55734
|
+
const _hoisted_55 = {
|
|
55758
55735
|
class: /* @__PURE__ */ normalizeClass([
|
|
55759
55736
|
"flex",
|
|
55760
55737
|
"justify-center",
|
|
@@ -55763,13 +55740,13 @@ const _hoisted_56 = {
|
|
|
55763
55740
|
"focusTC"
|
|
55764
55741
|
])
|
|
55765
55742
|
};
|
|
55766
|
-
const
|
|
55767
|
-
const
|
|
55768
|
-
const
|
|
55743
|
+
const _hoisted_56 = { class: "focusTC" };
|
|
55744
|
+
const _hoisted_57 = { key: 1 };
|
|
55745
|
+
const _hoisted_58 = { class: "focusTC h-[153px] flex justify-center items-center themeBGC relative" };
|
|
55746
|
+
const _hoisted_59 = ["src"];
|
|
55769
55747
|
const _hoisted_60 = ["src"];
|
|
55770
|
-
const _hoisted_61 = ["
|
|
55771
|
-
const _hoisted_62 = {
|
|
55772
|
-
const _hoisted_63 = {
|
|
55748
|
+
const _hoisted_61 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55749
|
+
const _hoisted_62 = {
|
|
55773
55750
|
class: /* @__PURE__ */ normalizeClass([
|
|
55774
55751
|
"flex",
|
|
55775
55752
|
"justify-center",
|
|
@@ -55778,72 +55755,71 @@ const _hoisted_63 = {
|
|
|
55778
55755
|
"clickTC weight600"
|
|
55779
55756
|
])
|
|
55780
55757
|
};
|
|
55781
|
-
const
|
|
55758
|
+
const _hoisted_63 = {
|
|
55782
55759
|
key: 1,
|
|
55783
55760
|
class: "yuan mr-[10px]"
|
|
55784
55761
|
};
|
|
55785
|
-
const
|
|
55786
|
-
const
|
|
55762
|
+
const _hoisted_64 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55763
|
+
const _hoisted_65 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55787
55764
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55788
55765
|
src: _imports_0,
|
|
55789
55766
|
alt: ""
|
|
55790
55767
|
}),
|
|
55791
55768
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换基地")
|
|
55792
55769
|
], -1));
|
|
55793
|
-
const
|
|
55770
|
+
const _hoisted_66 = {
|
|
55794
55771
|
class: "flex flex-wrap justify-center",
|
|
55795
55772
|
style: { "padding": "7.7rem" }
|
|
55796
55773
|
};
|
|
55797
|
-
const
|
|
55798
|
-
const
|
|
55774
|
+
const _hoisted_67 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55775
|
+
const _hoisted_68 = {
|
|
55799
55776
|
key: 1,
|
|
55800
55777
|
class: "yuan mr-[10px]"
|
|
55801
55778
|
};
|
|
55802
|
-
const
|
|
55803
|
-
const
|
|
55804
|
-
const
|
|
55805
|
-
const _hoisted_73 = {
|
|
55779
|
+
const _hoisted_69 = ["onClick"];
|
|
55780
|
+
const _hoisted_70 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55781
|
+
const _hoisted_71 = {
|
|
55806
55782
|
key: 1,
|
|
55807
55783
|
class: "yuan mr-[10px]"
|
|
55808
55784
|
};
|
|
55809
|
-
const
|
|
55810
|
-
const
|
|
55785
|
+
const _hoisted_72 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55786
|
+
const _hoisted_73 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55811
55787
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55812
55788
|
src: _imports_0,
|
|
55813
55789
|
alt: ""
|
|
55814
55790
|
}),
|
|
55815
55791
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换项目")
|
|
55816
55792
|
], -1));
|
|
55817
|
-
const
|
|
55793
|
+
const _hoisted_74 = {
|
|
55818
55794
|
class: "flex flex-wrap justify-center",
|
|
55819
55795
|
style: { "padding": "7.7rem" }
|
|
55820
55796
|
};
|
|
55821
|
-
const
|
|
55822
|
-
const
|
|
55823
|
-
const
|
|
55797
|
+
const _hoisted_75 = ["onClick"];
|
|
55798
|
+
const _hoisted_76 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55799
|
+
const _hoisted_77 = {
|
|
55824
55800
|
key: 1,
|
|
55825
55801
|
class: "yuan mr-[10px]"
|
|
55826
55802
|
};
|
|
55827
|
-
const
|
|
55828
|
-
const
|
|
55829
|
-
const
|
|
55803
|
+
const _hoisted_78 = { class: "flex items-center justify-between h-[60px] pl-[40px] themeBGC" };
|
|
55804
|
+
const _hoisted_79 = { class: "flex" };
|
|
55805
|
+
const _hoisted_80 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("img", {
|
|
55830
55806
|
src: _imports_0,
|
|
55831
55807
|
alt: ""
|
|
55832
55808
|
}, null, -1));
|
|
55833
|
-
const
|
|
55834
|
-
const
|
|
55809
|
+
const _hoisted_81 = { class: "mediumTitleTS focusTC pl-2" };
|
|
55810
|
+
const _hoisted_82 = {
|
|
55835
55811
|
class: "flex flex-wrap justify-center",
|
|
55836
55812
|
style: { "padding": "7.7rem" }
|
|
55837
55813
|
};
|
|
55838
|
-
const
|
|
55839
|
-
const
|
|
55840
|
-
const
|
|
55814
|
+
const _hoisted_83 = ["onClick"];
|
|
55815
|
+
const _hoisted_84 = { class: "w-full text-[22px] c606266 leading-loose rb" };
|
|
55816
|
+
const _hoisted_85 = {
|
|
55841
55817
|
key: 1,
|
|
55842
55818
|
class: "yuan mr-[10px]"
|
|
55843
55819
|
};
|
|
55844
|
-
const
|
|
55845
|
-
const
|
|
55846
|
-
const
|
|
55820
|
+
const _hoisted_86 = { class: "flex items-center h-[60px] pl-[40px] themeBGC" };
|
|
55821
|
+
const _hoisted_87 = { class: "relative w-[30px] h-[30px]" };
|
|
55822
|
+
const _hoisted_88 = {
|
|
55847
55823
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55848
55824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55849
55825
|
version: "1.1",
|
|
@@ -55851,7 +55827,7 @@ const _hoisted_90 = {
|
|
|
55851
55827
|
height: "23px",
|
|
55852
55828
|
style: { "position": "absolute", "top": "7px" }
|
|
55853
55829
|
};
|
|
55854
|
-
const
|
|
55830
|
+
const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
|
|
55855
55831
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55856
55832
|
d: "M 2.8482972136223452 0 C 1.2746130030959648 0.028482972136316675 0 1.3030959752322815 0 2.8767801857584345 L 0 20.151702786377655 C 0 21.725386996904035 1.2746130030959648 23 2.8482972136223452 23 L 20.123219814241565 23 C 21.69690402476772 23 22.971517027863683 21.725386996904035 23 20.151702786377655 L 23 2.8767801857584345 C 22.971517027863683 1.3030959752322815 21.69690402476772 0.028482972136316675 20.123219814241565 0 L 2.8482972136223452 0 Z ",
|
|
55857
55833
|
"fill-rule": "nonzero",
|
|
@@ -55860,10 +55836,10 @@ const _hoisted_91 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55860
55836
|
transform: "matrix(1 0 0 1 256 275 )"
|
|
55861
55837
|
})
|
|
55862
55838
|
], -1));
|
|
55863
|
-
const
|
|
55864
|
-
|
|
55839
|
+
const _hoisted_90 = [
|
|
55840
|
+
_hoisted_89
|
|
55865
55841
|
];
|
|
55866
|
-
const
|
|
55842
|
+
const _hoisted_91 = {
|
|
55867
55843
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55868
55844
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55869
55845
|
version: "1.1",
|
|
@@ -55871,7 +55847,7 @@ const _hoisted_93 = {
|
|
|
55871
55847
|
height: "23px",
|
|
55872
55848
|
style: { "position": "absolute", "left": "7px" }
|
|
55873
55849
|
};
|
|
55874
|
-
const
|
|
55850
|
+
const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
|
|
55875
55851
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55876
55852
|
d: "M 2.8767801857584345 0 C 1.3030959752322815 0 0.028482972136316675 1.2746130030959648 0.028482972136316675 2.8482972136223452 L 0.028482972136316675 4.870588235294008 C 0.028482972136316675 5.027244582043295 0.15665634674928697 5.155417956656265 0.31331269349834656 5.155417956656265 L 14.426625386996877 5.155417956656265 C 16.306501547987637 5.155417956656265 17.844582043343735 6.693498452012363 17.844582043343735 8.573374613003125 L 17.844582043343735 22.686687306501653 C 17.844582043343735 22.843343653250713 17.972755417956705 22.971517027863683 18.129411764705992 22.971517027863683 L 20.151702786377655 22.971517027863683 C 21.725386996904035 22.971517027863683 23 21.69690402476772 23 20.123219814241565 L 23 2.8482972136223452 C 23 1.2746130030959648 21.725386996904035 0 20.151702786377655 0 L 2.8767801857584345 0 Z ",
|
|
55877
55853
|
"fill-rule": "nonzero",
|
|
@@ -55880,19 +55856,17 @@ const _hoisted_94 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55880
55856
|
transform: "matrix(1 0 0 1 263 268 )"
|
|
55881
55857
|
})
|
|
55882
55858
|
], -1));
|
|
55883
|
-
const
|
|
55884
|
-
|
|
55859
|
+
const _hoisted_93 = [
|
|
55860
|
+
_hoisted_92
|
|
55885
55861
|
];
|
|
55886
|
-
const
|
|
55887
|
-
const
|
|
55888
|
-
const
|
|
55889
|
-
const
|
|
55890
|
-
const
|
|
55891
|
-
const
|
|
55892
|
-
const _hoisted_102 = /* @__PURE__ */ createTextVNode(" 下次再提醒我 ");
|
|
55893
|
-
const _hoisted_103 = /* @__PURE__ */ createTextVNode(" 好的,我知道了 ");
|
|
55862
|
+
const _hoisted_94 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("span", { class: "text-xl focusTC pl-2" }, "系统更新通知", -1));
|
|
55863
|
+
const _hoisted_95 = { class: "flex flex-col px-5 pr-0 h-full" };
|
|
55864
|
+
const _hoisted_96 = ["onClick"];
|
|
55865
|
+
const _hoisted_97 = { class: "w-full h-full overflow-y-auto content" };
|
|
55866
|
+
const _hoisted_98 = { class: "mb-[20px]" };
|
|
55867
|
+
const _hoisted_99 = { class: "h-[10%] flex justify-center items-center" };
|
|
55894
55868
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
55895
|
-
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2, _r2, _s2;
|
|
55869
|
+
var _a2, _b2, _c2, _d2, _e2, _f2, _g2, _h2, _i2, _j2, _k2, _l2, _m2, _n, _o2, _p2, _q2, _r2, _s2, _t2, _u2;
|
|
55896
55870
|
const _component_a_upload = __unplugin_components_0;
|
|
55897
55871
|
const _component_a_badge = Badge;
|
|
55898
55872
|
const _component_EconomicsSider = resolveComponent("EconomicsSider");
|
|
@@ -55943,7 +55917,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55943
55917
|
_ctx.userInfo.avatar ? (openBlock(), createBlock(_component_a_upload, {
|
|
55944
55918
|
key: 0,
|
|
55945
55919
|
"file-list": $setup.fileList,
|
|
55946
|
-
"onUpdate:
|
|
55920
|
+
"onUpdate:fileList": _cache[3] || (_cache[3] = ($event) => $setup.fileList = $event),
|
|
55947
55921
|
maxCount: 1,
|
|
55948
55922
|
"before-upload": $setup.beforeUpload,
|
|
55949
55923
|
customRequest: $setup.customRequest
|
|
@@ -55988,7 +55962,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55988
55962
|
}, 8, ["onClick", "count"]),
|
|
55989
55963
|
createVNode(_component_a_badge, {
|
|
55990
55964
|
onClick: $setup.onClickTodo,
|
|
55991
|
-
count: $setup.
|
|
55965
|
+
count: (_g2 = (_f2 = $setup.userFlowData) == null ? void 0 : _f2.find((x10) => x10.code === "todo")) == null ? void 0 : _g2.count,
|
|
55992
55966
|
"number-style": {
|
|
55993
55967
|
backgroundColor: "#52c41a",
|
|
55994
55968
|
fontSize: "12px",
|
|
@@ -56009,10 +55983,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56009
55983
|
}, _hoisted_18)
|
|
56010
55984
|
])
|
|
56011
55985
|
]),
|
|
56012
|
-
((
|
|
55986
|
+
((_i2 = (_h2 = $setup.modeuleInfos) == null ? void 0 : _h2.setOfBooks) == null ? void 0 : _i2.includes($setup.modeuleTypeValue)) && $setup.setofbooksTest && $setup.setofbooksTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_19, [
|
|
56013
55987
|
createElementVNode("div", null, [
|
|
56014
55988
|
_hoisted_20,
|
|
56015
|
-
createElementVNode("span", _hoisted_21, "当前" + toDisplayString($props.setofbooksName) + ": " + toDisplayString((
|
|
55989
|
+
createElementVNode("span", _hoisted_21, "当前" + toDisplayString($props.setofbooksName) + ": " + toDisplayString((_k2 = (_j2 = $setup.setofbooksTest) == null ? void 0 : _j2.find((item) => item.id == $setup.setOfBookId)) == null ? void 0 : _k2.shortName), 1)
|
|
56016
55990
|
]),
|
|
56017
55991
|
$setup.setofbooksTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
56018
55992
|
key: 0,
|
|
@@ -56020,15 +55994,15 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56020
55994
|
onClick: _cache[6] || (_cache[6] = (...args) => $setup.changeSetofbooks && $setup.changeSetofbooks(...args))
|
|
56021
55995
|
}, "切换" + toDisplayString($props.setofbooksName), 1)) : createCommentVNode("", true)
|
|
56022
55996
|
])) : createCommentVNode("", true),
|
|
56023
|
-
((
|
|
55997
|
+
((_m2 = (_l2 = $setup.modeuleInfos) == null ? void 0 : _l2.productionBases) == null ? void 0 : _m2.includes($setup.modeuleTypeValue)) && $setup.baseTest && ($setup.baseTest.length > 0 || $setup.isShowAllProductionBases) ? (openBlock(), createElementBlock("div", _hoisted_22, [
|
|
56024
55998
|
createElementVNode("div", null, [
|
|
56025
55999
|
_hoisted_23,
|
|
56026
56000
|
createElementVNode("span", _hoisted_24, [
|
|
56027
|
-
|
|
56001
|
+
createTextVNode(" 当前基地: "),
|
|
56028
56002
|
$setup.isShowAllProductionBases ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
56029
|
-
createTextVNode(toDisplayString($setup.baseId === $setup.allBaseId ? "全基地" : (
|
|
56003
|
+
createTextVNode(toDisplayString($setup.baseId === $setup.allBaseId ? "全基地" : (_o2 = (_n = $setup.baseTest) == null ? void 0 : _n.find((item) => item.id == $setup.baseId)) == null ? void 0 : _o2.shortName), 1)
|
|
56030
56004
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
56031
|
-
createTextVNode(toDisplayString((
|
|
56005
|
+
createTextVNode(toDisplayString((_q2 = (_p2 = $setup.baseTest) == null ? void 0 : _p2.find((item) => item.id == $setup.baseId)) == null ? void 0 : _q2.shortName), 1)
|
|
56032
56006
|
], 64))
|
|
56033
56007
|
])
|
|
56034
56008
|
]),
|
|
@@ -56038,10 +56012,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56038
56012
|
onClick: _cache[7] || (_cache[7] = (...args) => $setup.openBaseModal && $setup.openBaseModal(...args))
|
|
56039
56013
|
}, "切换基地")) : createCommentVNode("", true)
|
|
56040
56014
|
])) : createCommentVNode("", true),
|
|
56041
|
-
((
|
|
56015
|
+
((_s2 = (_r2 = $setup.modeuleInfos) == null ? void 0 : _r2.projects) == null ? void 0 : _s2.includes($setup.modeuleTypeValue)) && $setup.gjTest && $setup.gjTest.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_25, [
|
|
56042
56016
|
createElementVNode("div", null, [
|
|
56043
|
-
|
|
56044
|
-
createElementVNode("span",
|
|
56017
|
+
_hoisted_26,
|
|
56018
|
+
createElementVNode("span", _hoisted_27, " 当前项目: " + toDisplayString((_u2 = (_t2 = $setup.gjTest) == null ? void 0 : _t2.find((item) => item.id == $setup.gjId)) == null ? void 0 : _u2.shortName), 1)
|
|
56045
56019
|
]),
|
|
56046
56020
|
$setup.gjTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
56047
56021
|
key: 0,
|
|
@@ -56056,8 +56030,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56056
56030
|
module: _ctx.selectModule,
|
|
56057
56031
|
menuTitle: $props.menuTitle,
|
|
56058
56032
|
ccflow: $props.ccflow,
|
|
56059
|
-
ccflowData: $setup.ccflowData
|
|
56060
|
-
|
|
56033
|
+
ccflowData: $setup.ccflowData,
|
|
56034
|
+
userFlow: $props.userFlow,
|
|
56035
|
+
userFlowData: $setup.userFlowData
|
|
56036
|
+
}, null, 8, ["onRouterPush", "noBaseTwoMenu", "module", "menuTitle", "ccflow", "ccflowData", "userFlow", "userFlowData"])
|
|
56061
56037
|
], 4),
|
|
56062
56038
|
createVNode(_component_MrpModal, {
|
|
56063
56039
|
show: _ctx.changePWDVisible,
|
|
@@ -56066,11 +56042,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56066
56042
|
onCancel: $setup.cancelPWDVisible
|
|
56067
56043
|
}, {
|
|
56068
56044
|
title: withCtx(() => [
|
|
56069
|
-
|
|
56045
|
+
_hoisted_28
|
|
56070
56046
|
]),
|
|
56071
56047
|
body: withCtx(() => [
|
|
56072
|
-
|
|
56073
|
-
createElementVNode("div",
|
|
56048
|
+
_hoisted_29,
|
|
56049
|
+
createElementVNode("div", _hoisted_30, [
|
|
56074
56050
|
createVNode(_component_a_form, {
|
|
56075
56051
|
style: { "width": "380px", "margin": "0 auto" },
|
|
56076
56052
|
ref: "changePWDref",
|
|
@@ -56121,7 +56097,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56121
56097
|
]),
|
|
56122
56098
|
_: 1
|
|
56123
56099
|
}, 8, ["model"]),
|
|
56124
|
-
createElementVNode("div",
|
|
56100
|
+
createElementVNode("div", _hoisted_31, [
|
|
56125
56101
|
createElementVNode("div", {
|
|
56126
56102
|
class: "submit_btn",
|
|
56127
56103
|
onClick: _cache[11] || (_cache[11] = (...args) => $setup.changePWDOKHandle && $setup.changePWDOKHandle(...args))
|
|
@@ -56141,8 +56117,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56141
56117
|
"remove-padding": false
|
|
56142
56118
|
}, {
|
|
56143
56119
|
title: withCtx(() => [
|
|
56144
|
-
createElementVNode("div",
|
|
56145
|
-
|
|
56120
|
+
createElementVNode("div", _hoisted_32, [
|
|
56121
|
+
_hoisted_33,
|
|
56146
56122
|
createElementVNode("div", {
|
|
56147
56123
|
class: "h-[60px] w-[80px] zIndex",
|
|
56148
56124
|
onClick: _cache[14] || (_cache[14] = ($event) => $setup.closeSysetmModal())
|
|
@@ -56150,7 +56126,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56150
56126
|
])
|
|
56151
56127
|
]),
|
|
56152
56128
|
body: withCtx(() => [
|
|
56153
|
-
createElementVNode("div",
|
|
56129
|
+
createElementVNode("div", _hoisted_34, [
|
|
56154
56130
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.permissionModuleList, (i2) => {
|
|
56155
56131
|
return openBlock(), createElementBlock("div", {
|
|
56156
56132
|
key: i2.id,
|
|
@@ -56158,31 +56134,31 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56158
56134
|
style: { "border-radius": "10px" },
|
|
56159
56135
|
onClick: ($event) => $setup.changesystem(i2)
|
|
56160
56136
|
}, [
|
|
56161
|
-
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div",
|
|
56162
|
-
createElementVNode("div",
|
|
56137
|
+
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_36, [
|
|
56138
|
+
createElementVNode("div", _hoisted_37, [
|
|
56163
56139
|
createElementVNode("img", {
|
|
56164
56140
|
class: "mr-4",
|
|
56165
56141
|
src: i2.icon
|
|
56166
|
-
}, null, 8,
|
|
56142
|
+
}, null, 8, _hoisted_38),
|
|
56167
56143
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56168
56144
|
]),
|
|
56169
|
-
|
|
56170
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56171
|
-
createElementVNode("div",
|
|
56145
|
+
_hoisted_39
|
|
56146
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_40, [
|
|
56147
|
+
createElementVNode("div", _hoisted_41, [
|
|
56172
56148
|
createElementVNode("img", {
|
|
56173
56149
|
class: "mr-4",
|
|
56174
56150
|
src: i2.icon
|
|
56175
|
-
}, null, 8,
|
|
56151
|
+
}, null, 8, _hoisted_42),
|
|
56176
56152
|
createTextVNode(toDisplayString(i2.moduleName), 1)
|
|
56177
56153
|
]),
|
|
56178
|
-
|
|
56154
|
+
_hoisted_43
|
|
56179
56155
|
])),
|
|
56180
56156
|
createElementVNode("div", null, [
|
|
56181
|
-
createElementVNode("div",
|
|
56157
|
+
createElementVNode("div", _hoisted_44, [
|
|
56182
56158
|
(openBlock(true), createElementBlock(Fragment, null, renderList(i2.childGroups, (e10) => {
|
|
56183
56159
|
return openBlock(), createElementBlock("div", {
|
|
56184
56160
|
key: e10.id,
|
|
56185
|
-
style: { "font-family": "'PingFangSC-Regular', 'PingFang SC'
|
|
56161
|
+
style: { "font-family": "'PingFangSC-Regular', 'PingFang SC',\n sans-serif" },
|
|
56186
56162
|
class: normalizeClass(
|
|
56187
56163
|
i2.childGroups.length < 5 ? "mx-[30px] children flex items-center" : "children flex items-center"
|
|
56188
56164
|
)
|
|
@@ -56191,13 +56167,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56191
56167
|
class: "mr-2",
|
|
56192
56168
|
style: { "width": "16px", "height": "16px" },
|
|
56193
56169
|
src: e10.icon
|
|
56194
|
-
}, null, 8,
|
|
56170
|
+
}, null, 8, _hoisted_45),
|
|
56195
56171
|
createTextVNode(" " + toDisplayString(e10.moduleName), 1)
|
|
56196
56172
|
], 2);
|
|
56197
56173
|
}), 128))
|
|
56198
56174
|
])
|
|
56199
56175
|
])
|
|
56200
|
-
], 8,
|
|
56176
|
+
], 8, _hoisted_35);
|
|
56201
56177
|
}), 128))
|
|
56202
56178
|
])
|
|
56203
56179
|
]),
|
|
@@ -56210,8 +56186,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56210
56186
|
"remove-padding": false
|
|
56211
56187
|
}, {
|
|
56212
56188
|
title: withCtx(() => [
|
|
56213
|
-
createElementVNode("div",
|
|
56214
|
-
|
|
56189
|
+
createElementVNode("div", _hoisted_46, [
|
|
56190
|
+
_hoisted_47,
|
|
56215
56191
|
createElementVNode("div", {
|
|
56216
56192
|
class: "h-[60px] w-[80px] zIndex",
|
|
56217
56193
|
onClick: _cache[16] || (_cache[16] = ($event) => $setup.closeModule())
|
|
@@ -56219,54 +56195,54 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56219
56195
|
])
|
|
56220
56196
|
]),
|
|
56221
56197
|
body: withCtx(() => [
|
|
56222
|
-
createElementVNode("div",
|
|
56198
|
+
createElementVNode("div", _hoisted_48, [
|
|
56223
56199
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleTestS, (i2) => {
|
|
56224
56200
|
return openBlock(), createElementBlock("div", {
|
|
56225
56201
|
key: i2.id,
|
|
56226
56202
|
class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
|
|
56227
56203
|
onClick: ($event) => $setup.changeModule(i2)
|
|
56228
56204
|
}, [
|
|
56229
|
-
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div",
|
|
56230
|
-
createElementVNode("div",
|
|
56205
|
+
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_50, [
|
|
56206
|
+
createElementVNode("div", _hoisted_51, [
|
|
56231
56207
|
createElementVNode("img", {
|
|
56232
56208
|
class: "w-[80px] h-[78px]",
|
|
56233
56209
|
src: i2.icon
|
|
56234
|
-
}, null, 8,
|
|
56210
|
+
}, null, 8, _hoisted_52),
|
|
56235
56211
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56236
56212
|
key: 0,
|
|
56237
56213
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56238
56214
|
src: i2.icon1
|
|
56239
|
-
}, null, 8,
|
|
56215
|
+
}, null, 8, _hoisted_53)) : createCommentVNode("", true)
|
|
56240
56216
|
]),
|
|
56241
|
-
createElementVNode("div",
|
|
56242
|
-
createElementVNode("div",
|
|
56217
|
+
createElementVNode("div", _hoisted_54, [
|
|
56218
|
+
createElementVNode("div", _hoisted_55, [
|
|
56243
56219
|
createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
|
|
56244
|
-
createElementVNode("div",
|
|
56220
|
+
createElementVNode("div", _hoisted_56, toDisplayString(i2.moduleName), 1)
|
|
56245
56221
|
])
|
|
56246
56222
|
])
|
|
56247
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56248
|
-
createElementVNode("div",
|
|
56223
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_57, [
|
|
56224
|
+
createElementVNode("div", _hoisted_58, [
|
|
56249
56225
|
createElementVNode("img", {
|
|
56250
56226
|
class: "w-[80px] h-[78px]",
|
|
56251
56227
|
src: i2.icon
|
|
56252
|
-
}, null, 8,
|
|
56228
|
+
}, null, 8, _hoisted_59),
|
|
56253
56229
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56254
56230
|
key: 0,
|
|
56255
56231
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56256
56232
|
src: i2.icon1
|
|
56257
|
-
}, null, 8,
|
|
56233
|
+
}, null, 8, _hoisted_60)) : createCommentVNode("", true)
|
|
56258
56234
|
]),
|
|
56259
|
-
createElementVNode("div",
|
|
56260
|
-
createElementVNode("div",
|
|
56235
|
+
createElementVNode("div", _hoisted_61, [
|
|
56236
|
+
createElementVNode("div", _hoisted_62, [
|
|
56261
56237
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56262
56238
|
key: 0,
|
|
56263
56239
|
class: "mediumTitleTS mr-[10px]"
|
|
56264
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56240
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_63)),
|
|
56265
56241
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56266
56242
|
])
|
|
56267
56243
|
])
|
|
56268
56244
|
]))
|
|
56269
|
-
], 8,
|
|
56245
|
+
], 8, _hoisted_49);
|
|
56270
56246
|
}), 128))
|
|
56271
56247
|
])
|
|
56272
56248
|
]),
|
|
@@ -56278,8 +56254,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56278
56254
|
"remove-padding": false
|
|
56279
56255
|
}, {
|
|
56280
56256
|
title: withCtx(() => [
|
|
56281
|
-
createElementVNode("div",
|
|
56282
|
-
|
|
56257
|
+
createElementVNode("div", _hoisted_64, [
|
|
56258
|
+
_hoisted_65,
|
|
56283
56259
|
createElementVNode("div", {
|
|
56284
56260
|
class: "h-[60px] w-[80px] zIndex",
|
|
56285
56261
|
onClick: _cache[18] || (_cache[18] = (...args) => $setup.cloneBaseModal && $setup.cloneBaseModal(...args))
|
|
@@ -56287,7 +56263,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56287
56263
|
])
|
|
56288
56264
|
]),
|
|
56289
56265
|
body: withCtx(() => [
|
|
56290
|
-
createElementVNode("div",
|
|
56266
|
+
createElementVNode("div", _hoisted_66, [
|
|
56291
56267
|
$setup.isShowAllProductionBasesModel ? (openBlock(), createElementBlock("div", {
|
|
56292
56268
|
key: 0,
|
|
56293
56269
|
class: "w-[320px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer rt",
|
|
@@ -56313,7 +56289,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56313
56289
|
])
|
|
56314
56290
|
}, " 全部基地 ", 2)
|
|
56315
56291
|
], 2),
|
|
56316
|
-
createElementVNode("div",
|
|
56292
|
+
createElementVNode("div", _hoisted_67, [
|
|
56317
56293
|
createElementVNode("div", {
|
|
56318
56294
|
class: normalizeClass([
|
|
56319
56295
|
"flex",
|
|
@@ -56326,8 +56302,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56326
56302
|
$setup.baseId === $setup.allBaseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56327
56303
|
key: 0,
|
|
56328
56304
|
class: "mediumTitleTS mr-[10px]"
|
|
56329
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56330
|
-
|
|
56305
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_68)),
|
|
56306
|
+
createTextVNode(" 全部基地 ")
|
|
56331
56307
|
], 2)
|
|
56332
56308
|
])
|
|
56333
56309
|
])) : createCommentVNode("", true),
|
|
@@ -56354,7 +56330,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56354
56330
|
class: normalizeClass(["text-xl", `${i2.id == $setup.baseId ? "focusTC" : "clickTC"}`])
|
|
56355
56331
|
}, toDisplayString(i2.title), 3)
|
|
56356
56332
|
], 2),
|
|
56357
|
-
createElementVNode("div",
|
|
56333
|
+
createElementVNode("div", _hoisted_70, [
|
|
56358
56334
|
createElementVNode("div", {
|
|
56359
56335
|
class: normalizeClass([
|
|
56360
56336
|
"flex",
|
|
@@ -56367,11 +56343,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56367
56343
|
i2.id == $setup.baseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56368
56344
|
key: 0,
|
|
56369
56345
|
class: "mediumTitleTS mr-[10px]"
|
|
56370
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56346
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_71)),
|
|
56371
56347
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56372
56348
|
], 2)
|
|
56373
56349
|
])
|
|
56374
|
-
], 8,
|
|
56350
|
+
], 8, _hoisted_69);
|
|
56375
56351
|
}), 128))
|
|
56376
56352
|
])
|
|
56377
56353
|
]),
|
|
@@ -56383,8 +56359,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56383
56359
|
"remove-padding": false
|
|
56384
56360
|
}, {
|
|
56385
56361
|
title: withCtx(() => [
|
|
56386
|
-
createElementVNode("div",
|
|
56387
|
-
|
|
56362
|
+
createElementVNode("div", _hoisted_72, [
|
|
56363
|
+
_hoisted_73,
|
|
56388
56364
|
createElementVNode("div", {
|
|
56389
56365
|
class: "h-[60px] w-[80px] zIndex",
|
|
56390
56366
|
onClick: _cache[21] || (_cache[21] = ($event) => $setup.closeDgVisible())
|
|
@@ -56392,7 +56368,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56392
56368
|
])
|
|
56393
56369
|
]),
|
|
56394
56370
|
body: withCtx(() => [
|
|
56395
|
-
createElementVNode("div",
|
|
56371
|
+
createElementVNode("div", _hoisted_74, [
|
|
56396
56372
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.gjTest, (i2) => {
|
|
56397
56373
|
return openBlock(), createElementBlock("div", {
|
|
56398
56374
|
key: i2.id,
|
|
@@ -56416,7 +56392,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56416
56392
|
class: normalizeClass(["text-xl", `${i2.id == $setup.gjId ? "focusTC" : "clickTC"}`])
|
|
56417
56393
|
}, toDisplayString(i2.title), 3)
|
|
56418
56394
|
], 2),
|
|
56419
|
-
createElementVNode("div",
|
|
56395
|
+
createElementVNode("div", _hoisted_76, [
|
|
56420
56396
|
createElementVNode("div", {
|
|
56421
56397
|
class: normalizeClass([
|
|
56422
56398
|
"flex",
|
|
@@ -56429,11 +56405,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56429
56405
|
i2.id == $setup.gjId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56430
56406
|
key: 0,
|
|
56431
56407
|
class: "mediumTitleTS mr-[10px]"
|
|
56432
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56408
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_77)),
|
|
56433
56409
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56434
56410
|
], 2)
|
|
56435
56411
|
])
|
|
56436
|
-
], 8,
|
|
56412
|
+
], 8, _hoisted_75);
|
|
56437
56413
|
}), 128))
|
|
56438
56414
|
])
|
|
56439
56415
|
]),
|
|
@@ -56445,10 +56421,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56445
56421
|
"remove-padding": false
|
|
56446
56422
|
}, {
|
|
56447
56423
|
title: withCtx(() => [
|
|
56448
|
-
createElementVNode("div",
|
|
56449
|
-
createElementVNode("div",
|
|
56450
|
-
|
|
56451
|
-
createElementVNode("span",
|
|
56424
|
+
createElementVNode("div", _hoisted_78, [
|
|
56425
|
+
createElementVNode("div", _hoisted_79, [
|
|
56426
|
+
_hoisted_80,
|
|
56427
|
+
createElementVNode("span", _hoisted_81, "切换" + toDisplayString($props.setofbooksName), 1)
|
|
56452
56428
|
]),
|
|
56453
56429
|
createElementVNode("div", {
|
|
56454
56430
|
class: "h-[60px] w-[80px] zIndex",
|
|
@@ -56457,7 +56433,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56457
56433
|
])
|
|
56458
56434
|
]),
|
|
56459
56435
|
body: withCtx(() => [
|
|
56460
|
-
createElementVNode("div",
|
|
56436
|
+
createElementVNode("div", _hoisted_82, [
|
|
56461
56437
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.setofbooksTest, (i2) => {
|
|
56462
56438
|
return openBlock(), createElementBlock("div", {
|
|
56463
56439
|
key: i2.id,
|
|
@@ -56484,7 +56460,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56484
56460
|
])
|
|
56485
56461
|
}, toDisplayString(i2.title), 3)
|
|
56486
56462
|
], 2),
|
|
56487
|
-
createElementVNode("div",
|
|
56463
|
+
createElementVNode("div", _hoisted_84, [
|
|
56488
56464
|
createElementVNode("div", {
|
|
56489
56465
|
class: normalizeClass([
|
|
56490
56466
|
"flex",
|
|
@@ -56497,11 +56473,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56497
56473
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56498
56474
|
key: 0,
|
|
56499
56475
|
class: "mediumTitleTS mr-[10px]"
|
|
56500
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56476
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_85)),
|
|
56501
56477
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56502
56478
|
], 2)
|
|
56503
56479
|
])
|
|
56504
|
-
], 8,
|
|
56480
|
+
], 8, _hoisted_83);
|
|
56505
56481
|
}), 128))
|
|
56506
56482
|
])
|
|
56507
56483
|
]),
|
|
@@ -56521,16 +56497,16 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56521
56497
|
isScroll: false
|
|
56522
56498
|
}, {
|
|
56523
56499
|
title: withCtx(() => [
|
|
56524
|
-
createElementVNode("div",
|
|
56525
|
-
createElementVNode("div",
|
|
56526
|
-
(openBlock(), createElementBlock("svg",
|
|
56527
|
-
(openBlock(), createElementBlock("svg",
|
|
56500
|
+
createElementVNode("div", _hoisted_86, [
|
|
56501
|
+
createElementVNode("div", _hoisted_87, [
|
|
56502
|
+
(openBlock(), createElementBlock("svg", _hoisted_88, _hoisted_90)),
|
|
56503
|
+
(openBlock(), createElementBlock("svg", _hoisted_91, _hoisted_93))
|
|
56528
56504
|
]),
|
|
56529
|
-
|
|
56505
|
+
_hoisted_94
|
|
56530
56506
|
])
|
|
56531
56507
|
]),
|
|
56532
56508
|
body: withCtx(() => [
|
|
56533
|
-
createElementVNode("div",
|
|
56509
|
+
createElementVNode("div", _hoisted_95, [
|
|
56534
56510
|
createVNode(_component_a_row, {
|
|
56535
56511
|
gutter: 24,
|
|
56536
56512
|
style: { "height": "90%", "border-bottom": "1px solid #eadcb9" }
|
|
@@ -56545,7 +56521,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56545
56521
|
return openBlock(), createElementBlock("div", {
|
|
56546
56522
|
onClick: ($event) => $setup.changeTab(item, i2),
|
|
56547
56523
|
class: normalizeClass(["tab-items", $setup.activeKey == i2 ? "tab-items-active" : ""])
|
|
56548
|
-
}, toDisplayString(item.version), 11,
|
|
56524
|
+
}, toDisplayString(item.version), 11, _hoisted_96);
|
|
56549
56525
|
}), 256))
|
|
56550
56526
|
]),
|
|
56551
56527
|
_: 1
|
|
@@ -56559,8 +56535,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56559
56535
|
type: "vertical",
|
|
56560
56536
|
style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
|
|
56561
56537
|
}),
|
|
56562
|
-
createElementVNode("div",
|
|
56563
|
-
createElementVNode("div",
|
|
56538
|
+
createElementVNode("div", _hoisted_97, [
|
|
56539
|
+
createElementVNode("div", _hoisted_98, [
|
|
56564
56540
|
createVNode(_component_Toolbar, {
|
|
56565
56541
|
editor: $setup.editorRef,
|
|
56566
56542
|
defaultConfig: { readOnly: true },
|
|
@@ -56580,14 +56556,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56580
56556
|
]),
|
|
56581
56557
|
_: 1
|
|
56582
56558
|
}),
|
|
56583
|
-
createElementVNode("div",
|
|
56559
|
+
createElementVNode("div", _hoisted_99, [
|
|
56584
56560
|
createVNode(_component_a_button, {
|
|
56585
56561
|
class: "w-[140px] mr-[50px] btn1",
|
|
56586
56562
|
style: { "border-radius": "5px" },
|
|
56587
56563
|
onClick: $setup.onCancel
|
|
56588
56564
|
}, {
|
|
56589
56565
|
default: withCtx(() => [
|
|
56590
|
-
|
|
56566
|
+
createTextVNode(" 下次再提醒我 ")
|
|
56591
56567
|
]),
|
|
56592
56568
|
_: 1
|
|
56593
56569
|
}, 8, ["onClick"]),
|
|
@@ -56597,7 +56573,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56597
56573
|
onClick: $setup.onRead
|
|
56598
56574
|
}, {
|
|
56599
56575
|
default: withCtx(() => [
|
|
56600
|
-
|
|
56576
|
+
createTextVNode(" 好的,我知道了 ")
|
|
56601
56577
|
]),
|
|
56602
56578
|
_: 1
|
|
56603
56579
|
}, 8, ["onClick"])
|
|
@@ -56608,7 +56584,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56608
56584
|
}, 8, ["show"])
|
|
56609
56585
|
], 64);
|
|
56610
56586
|
}
|
|
56611
|
-
const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-
|
|
56587
|
+
const TSider = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-128c9be4"]]);
|
|
56612
56588
|
const style = "";
|
|
56613
56589
|
const components = [TSider];
|
|
56614
56590
|
installComponents();
|