tx-sider 2.3.28 → 2.3.30
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 +284 -299
- package/lib/TXUI.umd.js +8 -8
- 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
|
|
@@ -22282,10 +22282,10 @@ var axiosExports = axios$3.exports;
|
|
|
22282
22282
|
var axios = axiosExports;
|
|
22283
22283
|
const axios$1 = /* @__PURE__ */ getDefaultExportFromCjs(axios);
|
|
22284
22284
|
const routes = [
|
|
22285
|
-
|
|
22286
|
-
|
|
22287
|
-
|
|
22288
|
-
|
|
22285
|
+
{
|
|
22286
|
+
path: "/",
|
|
22287
|
+
component: TSider
|
|
22288
|
+
}
|
|
22289
22289
|
];
|
|
22290
22290
|
const __vite_glob_0_0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22291
22291
|
__proto__: 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;
|
|
@@ -54476,13 +54507,22 @@ function useCcflowCall() {
|
|
|
54476
54507
|
(_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId
|
|
54477
54508
|
);
|
|
54478
54509
|
});
|
|
54479
|
-
if (connection.value.state !== HubConnectionState.Connected)
|
|
54480
|
-
|
|
54510
|
+
if (connection.value.state !== HubConnectionState.Connected) {
|
|
54511
|
+
connection.value.start().then(async () => {
|
|
54512
|
+
var _a2, _b2;
|
|
54513
|
+
console.log("启动即时通信成功");
|
|
54514
|
+
await connection.value.invoke(
|
|
54515
|
+
"NewVersion",
|
|
54516
|
+
(_a2 = JSON.parse(localStorage.getItem("selectModule"))) == null ? void 0 : _a2.location,
|
|
54517
|
+
(_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId
|
|
54518
|
+
);
|
|
54519
|
+
});
|
|
54520
|
+
}
|
|
54481
54521
|
};
|
|
54482
54522
|
const onClickTodo = () => {
|
|
54483
54523
|
const md2 = localStorage.getItem("loginForm");
|
|
54484
54524
|
window.open(
|
|
54485
|
-
`${
|
|
54525
|
+
`${jumpMsgUrl}/auth?md=${md2}&key=BasisSystem.PersonCenterModule&routerUrl=/workflow/todo&title=审批管理`,
|
|
54486
54526
|
"_blank"
|
|
54487
54527
|
);
|
|
54488
54528
|
};
|
|
@@ -54530,6 +54570,12 @@ const _sfc_main = {
|
|
|
54530
54570
|
// [{菜单名称:接口返回字段},{单名称:[接口返回字段1,接口返回字段2]}]
|
|
54531
54571
|
},
|
|
54532
54572
|
// 审批流
|
|
54573
|
+
userFlow: {
|
|
54574
|
+
type: Array,
|
|
54575
|
+
default: []
|
|
54576
|
+
// [{菜单名称:接口返回字段},{单名称:[接口返回字段1,接口返回字段2]}]
|
|
54577
|
+
},
|
|
54578
|
+
// 审批流
|
|
54533
54579
|
isSystems: String,
|
|
54534
54580
|
// 所属系统
|
|
54535
54581
|
isModules: String,
|
|
@@ -54578,7 +54624,30 @@ const _sfc_main = {
|
|
|
54578
54624
|
});
|
|
54579
54625
|
const refData = toRefs(data3);
|
|
54580
54626
|
const iconUrl = process.env.NODE_ENV == "development" ? "https://basis.nacho.cn" : "https://basis.nacho.cn";
|
|
54581
|
-
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
|
+
};
|
|
54582
54651
|
watch(
|
|
54583
54652
|
() => props.isSystems,
|
|
54584
54653
|
() => {
|
|
@@ -54651,7 +54720,7 @@ const _sfc_main = {
|
|
|
54651
54720
|
onMounted(async () => {
|
|
54652
54721
|
var _a3, _b2, _c2, _d2, _e2, _f2;
|
|
54653
54722
|
await getUnReadMessage(0);
|
|
54654
|
-
await
|
|
54723
|
+
await getUserFlowData();
|
|
54655
54724
|
getModeuleInfoDataHandle = await getModeuleInfoData();
|
|
54656
54725
|
isShowAllProductionBases.value = (_a3 = getModeuleInfoDataHandle(
|
|
54657
54726
|
window.location.hostname.split(".")[0]
|
|
@@ -55248,51 +55317,6 @@ const _sfc_main = {
|
|
|
55248
55317
|
activeKey.value = i2;
|
|
55249
55318
|
content.value = item ?? {};
|
|
55250
55319
|
};
|
|
55251
|
-
watch(
|
|
55252
|
-
() => ccflowData.newVersionList,
|
|
55253
|
-
() => {
|
|
55254
|
-
var _a3;
|
|
55255
|
-
console.log("ccflowData.newVersionList", ccflowData.newVersionList);
|
|
55256
|
-
tableData.value = ccflowData.newVersionList;
|
|
55257
|
-
content.value = ccflowData.newVersionList[0] ?? {};
|
|
55258
|
-
isModuleVersionUpdate.value = ((_a3 = ccflowData.newVersionList) == null ? void 0 : _a3.length) ? true : false;
|
|
55259
|
-
},
|
|
55260
|
-
{ deep: true }
|
|
55261
|
-
);
|
|
55262
|
-
watch(
|
|
55263
|
-
() => ccflowData.messageList,
|
|
55264
|
-
async (newVal) => {
|
|
55265
|
-
var _a3, _b2;
|
|
55266
|
-
console.log("ccflowData.messageList", ccflowData.messageList);
|
|
55267
|
-
console.log("newVal", newVal);
|
|
55268
|
-
console.log(
|
|
55269
|
-
'JSON.parse(localStorage.getItem("userInfos"))?.userId',
|
|
55270
|
-
(_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId
|
|
55271
|
-
);
|
|
55272
|
-
if (newVal && newVal == ((_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId)) {
|
|
55273
|
-
console.log("相等");
|
|
55274
|
-
await getUnReadMessage(0);
|
|
55275
|
-
}
|
|
55276
|
-
},
|
|
55277
|
-
{ deep: true }
|
|
55278
|
-
);
|
|
55279
|
-
watch(
|
|
55280
|
-
() => ccflowData.lingDangList,
|
|
55281
|
-
async (newVal) => {
|
|
55282
|
-
var _a3, _b2;
|
|
55283
|
-
console.log("ccflowData.lingDangList", ccflowData.lingDangList);
|
|
55284
|
-
console.log("newVal", newVal);
|
|
55285
|
-
console.log(
|
|
55286
|
-
'JSON.parse(localStorage.getItem("userInfos"))?.userId',
|
|
55287
|
-
(_a3 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _a3.userId
|
|
55288
|
-
);
|
|
55289
|
-
if (newVal && newVal == ((_b2 = JSON.parse(localStorage.getItem("userInfos"))) == null ? void 0 : _b2.userId)) {
|
|
55290
|
-
console.log("相等");
|
|
55291
|
-
await getUnReadMessage(1);
|
|
55292
|
-
}
|
|
55293
|
-
},
|
|
55294
|
-
{ deep: true }
|
|
55295
|
-
);
|
|
55296
55320
|
const tableOptionRef = ref([
|
|
55297
55321
|
{
|
|
55298
55322
|
title: "序号",
|
|
@@ -55437,12 +55461,13 @@ const _sfc_main = {
|
|
|
55437
55461
|
changeTab,
|
|
55438
55462
|
editorRef,
|
|
55439
55463
|
unReadCount,
|
|
55440
|
-
unLingDangCount
|
|
55464
|
+
unLingDangCount,
|
|
55465
|
+
userFlowData
|
|
55441
55466
|
/*******end*****/
|
|
55442
55467
|
};
|
|
55443
55468
|
}
|
|
55444
55469
|
};
|
|
55445
|
-
const _withScopeId = (n10) => (pushScopeId("data-v-
|
|
55470
|
+
const _withScopeId = (n10) => (pushScopeId("data-v-128c9be4"), n10 = n10(), popScopeId(), n10);
|
|
55446
55471
|
const _hoisted_1 = {
|
|
55447
55472
|
class: "bg-white defaultTS funcTC relative",
|
|
55448
55473
|
style: { "padding-bottom": "10px", "margin-bottom": "10px" }
|
|
@@ -55512,47 +55537,9 @@ const _hoisted_14 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55512
55537
|
})
|
|
55513
55538
|
])
|
|
55514
55539
|
], -1));
|
|
55515
|
-
const _hoisted_15 = /* @__PURE__ */
|
|
55516
|
-
class: "inline-block",
|
|
55517
|
-
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55518
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
55519
|
-
version: "1.1",
|
|
55520
|
-
width: "16px",
|
|
55521
|
-
height: "14px"
|
|
55522
|
-
}, [
|
|
55523
|
-
/* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -221 -57 )" }, [
|
|
55524
|
-
/* @__PURE__ */ createElementVNode("path", {
|
|
55525
|
-
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 ",
|
|
55526
|
-
"fill-rule": "nonzero",
|
|
55527
|
-
fill: "#97D2FD",
|
|
55528
|
-
stroke: "none",
|
|
55529
|
-
transform: "matrix(1 0 0 1 221 57 )"
|
|
55530
|
-
})
|
|
55531
|
-
])
|
|
55532
|
-
], -1));
|
|
55533
|
-
const _hoisted_16 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55534
|
-
class: "inline-block absolute top-1 right-[38px]",
|
|
55535
|
-
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55536
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
55537
|
-
version: "1.1",
|
|
55538
|
-
width: "2px",
|
|
55539
|
-
height: "9px"
|
|
55540
|
-
}, [
|
|
55541
|
-
/* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -228 -55 )" }, [
|
|
55542
|
-
/* @__PURE__ */ createElementVNode("path", {
|
|
55543
|
-
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 ",
|
|
55544
|
-
"fill-rule": "nonzero",
|
|
55545
|
-
fill: "#97D2FD",
|
|
55546
|
-
stroke: "none",
|
|
55547
|
-
transform: "matrix(1 0 0 1 228 55 )"
|
|
55548
|
-
})
|
|
55549
|
-
])
|
|
55550
|
-
], -1));
|
|
55551
|
-
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);
|
|
55552
55541
|
const _hoisted_18 = [
|
|
55553
|
-
_hoisted_15
|
|
55554
|
-
_hoisted_16,
|
|
55555
|
-
_hoisted_17
|
|
55542
|
+
_hoisted_15
|
|
55556
55543
|
];
|
|
55557
55544
|
const _hoisted_19 = {
|
|
55558
55545
|
key: 0,
|
|
@@ -55600,12 +55587,11 @@ const _hoisted_23 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55600
55587
|
])
|
|
55601
55588
|
], -1));
|
|
55602
55589
|
const _hoisted_24 = { class: "ml-[6px] focusTC" };
|
|
55603
|
-
const _hoisted_25 =
|
|
55604
|
-
const _hoisted_26 = {
|
|
55590
|
+
const _hoisted_25 = {
|
|
55605
55591
|
key: 2,
|
|
55606
55592
|
class: "pr-[33px] pl-[35px] pt-[5px] pb-[5px] mb-0 flexBox border-b-[1px] border-b-[#f5f5f5]"
|
|
55607
55593
|
};
|
|
55608
|
-
const
|
|
55594
|
+
const _hoisted_26 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("svg", {
|
|
55609
55595
|
class: "inline-block",
|
|
55610
55596
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55611
55597
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -55623,8 +55609,8 @@ const _hoisted_27 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55623
55609
|
})
|
|
55624
55610
|
])
|
|
55625
55611
|
], -1));
|
|
55626
|
-
const
|
|
55627
|
-
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" }, [
|
|
55628
55614
|
/* @__PURE__ */ createElementVNode("div", { class: "flex" }, [
|
|
55629
55615
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55630
55616
|
src: _imports_0,
|
|
@@ -55633,29 +55619,29 @@ const _hoisted_29 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55633
55619
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "修改密码")
|
|
55634
55620
|
])
|
|
55635
55621
|
], -1));
|
|
55636
|
-
const
|
|
55637
|
-
const
|
|
55638
|
-
const
|
|
55639
|
-
const
|
|
55640
|
-
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" }, [
|
|
55641
55627
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55642
55628
|
src: _imports_0,
|
|
55643
55629
|
alt: ""
|
|
55644
55630
|
}),
|
|
55645
55631
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换系统")
|
|
55646
55632
|
], -1));
|
|
55647
|
-
const
|
|
55633
|
+
const _hoisted_34 = {
|
|
55648
55634
|
class: "flex flex-wrap justify-center",
|
|
55649
55635
|
style: { "padding": "7.7rem" }
|
|
55650
55636
|
};
|
|
55651
|
-
const
|
|
55652
|
-
const
|
|
55637
|
+
const _hoisted_35 = ["onClick"];
|
|
55638
|
+
const _hoisted_36 = {
|
|
55653
55639
|
key: 0,
|
|
55654
55640
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 themeBGC"
|
|
55655
55641
|
};
|
|
55656
|
-
const
|
|
55657
|
-
const
|
|
55658
|
-
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" }, [
|
|
55659
55645
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8 cursor-pointer" }, [
|
|
55660
55646
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55661
55647
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55696,13 +55682,13 @@ const _hoisted_40 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55696
55682
|
]),
|
|
55697
55683
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC hover:underline" }, "当前选择")
|
|
55698
55684
|
], -1));
|
|
55699
|
-
const
|
|
55685
|
+
const _hoisted_40 = {
|
|
55700
55686
|
key: 1,
|
|
55701
55687
|
class: "flex justify-between items-center pl-6 pr-2 w-full h-12 tabHeaderBGC"
|
|
55702
55688
|
};
|
|
55703
|
-
const
|
|
55704
|
-
const
|
|
55705
|
-
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" }, [
|
|
55706
55692
|
/* @__PURE__ */ createElementVNode("div", { class: "absolute -left-10 top-1/2 -translate-y-1/2 w-8 h-8" }, [
|
|
55707
55693
|
/* @__PURE__ */ createElementVNode("svg", {
|
|
55708
55694
|
class: "absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
@@ -55725,27 +55711,27 @@ const _hoisted_44 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55725
55711
|
]),
|
|
55726
55712
|
/* @__PURE__ */ createElementVNode("span", { class: "defaultTitleTS clickTC hover:underline cursor-pointer" }, "选择")
|
|
55727
55713
|
], -1));
|
|
55728
|
-
const
|
|
55729
|
-
const
|
|
55730
|
-
const
|
|
55731
|
-
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" }, [
|
|
55732
55718
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55733
55719
|
src: _imports_0,
|
|
55734
55720
|
alt: ""
|
|
55735
55721
|
}),
|
|
55736
55722
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换模块")
|
|
55737
55723
|
], -1));
|
|
55738
|
-
const
|
|
55724
|
+
const _hoisted_48 = {
|
|
55739
55725
|
class: "flex flex-wrap justify-center",
|
|
55740
55726
|
style: { "padding": "7.7rem" }
|
|
55741
55727
|
};
|
|
55742
|
-
const
|
|
55743
|
-
const
|
|
55744
|
-
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"];
|
|
55745
55732
|
const _hoisted_53 = ["src"];
|
|
55746
|
-
const _hoisted_54 = ["
|
|
55747
|
-
const _hoisted_55 = {
|
|
55748
|
-
const _hoisted_56 = {
|
|
55733
|
+
const _hoisted_54 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55734
|
+
const _hoisted_55 = {
|
|
55749
55735
|
class: /* @__PURE__ */ normalizeClass([
|
|
55750
55736
|
"flex",
|
|
55751
55737
|
"justify-center",
|
|
@@ -55754,13 +55740,13 @@ const _hoisted_56 = {
|
|
|
55754
55740
|
"focusTC"
|
|
55755
55741
|
])
|
|
55756
55742
|
};
|
|
55757
|
-
const
|
|
55758
|
-
const
|
|
55759
|
-
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"];
|
|
55760
55747
|
const _hoisted_60 = ["src"];
|
|
55761
|
-
const _hoisted_61 = ["
|
|
55762
|
-
const _hoisted_62 = {
|
|
55763
|
-
const _hoisted_63 = {
|
|
55748
|
+
const _hoisted_61 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55749
|
+
const _hoisted_62 = {
|
|
55764
55750
|
class: /* @__PURE__ */ normalizeClass([
|
|
55765
55751
|
"flex",
|
|
55766
55752
|
"justify-center",
|
|
@@ -55769,72 +55755,71 @@ const _hoisted_63 = {
|
|
|
55769
55755
|
"clickTC weight600"
|
|
55770
55756
|
])
|
|
55771
55757
|
};
|
|
55772
|
-
const
|
|
55758
|
+
const _hoisted_63 = {
|
|
55773
55759
|
key: 1,
|
|
55774
55760
|
class: "yuan mr-[10px]"
|
|
55775
55761
|
};
|
|
55776
|
-
const
|
|
55777
|
-
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" }, [
|
|
55778
55764
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55779
55765
|
src: _imports_0,
|
|
55780
55766
|
alt: ""
|
|
55781
55767
|
}),
|
|
55782
55768
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换基地")
|
|
55783
55769
|
], -1));
|
|
55784
|
-
const
|
|
55770
|
+
const _hoisted_66 = {
|
|
55785
55771
|
class: "flex flex-wrap justify-center",
|
|
55786
55772
|
style: { "padding": "7.7rem" }
|
|
55787
55773
|
};
|
|
55788
|
-
const
|
|
55789
|
-
const
|
|
55774
|
+
const _hoisted_67 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55775
|
+
const _hoisted_68 = {
|
|
55790
55776
|
key: 1,
|
|
55791
55777
|
class: "yuan mr-[10px]"
|
|
55792
55778
|
};
|
|
55793
|
-
const
|
|
55794
|
-
const
|
|
55795
|
-
const
|
|
55796
|
-
const _hoisted_73 = {
|
|
55779
|
+
const _hoisted_69 = ["onClick"];
|
|
55780
|
+
const _hoisted_70 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55781
|
+
const _hoisted_71 = {
|
|
55797
55782
|
key: 1,
|
|
55798
55783
|
class: "yuan mr-[10px]"
|
|
55799
55784
|
};
|
|
55800
|
-
const
|
|
55801
|
-
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" }, [
|
|
55802
55787
|
/* @__PURE__ */ createElementVNode("img", {
|
|
55803
55788
|
src: _imports_0,
|
|
55804
55789
|
alt: ""
|
|
55805
55790
|
}),
|
|
55806
55791
|
/* @__PURE__ */ createElementVNode("span", { class: "mediumTitleTS focusTC pl-2" }, "切换项目")
|
|
55807
55792
|
], -1));
|
|
55808
|
-
const
|
|
55793
|
+
const _hoisted_74 = {
|
|
55809
55794
|
class: "flex flex-wrap justify-center",
|
|
55810
55795
|
style: { "padding": "7.7rem" }
|
|
55811
55796
|
};
|
|
55812
|
-
const
|
|
55813
|
-
const
|
|
55814
|
-
const
|
|
55797
|
+
const _hoisted_75 = ["onClick"];
|
|
55798
|
+
const _hoisted_76 = { class: "w-full text-[22px] leading-loose rb" };
|
|
55799
|
+
const _hoisted_77 = {
|
|
55815
55800
|
key: 1,
|
|
55816
55801
|
class: "yuan mr-[10px]"
|
|
55817
55802
|
};
|
|
55818
|
-
const
|
|
55819
|
-
const
|
|
55820
|
-
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", {
|
|
55821
55806
|
src: _imports_0,
|
|
55822
55807
|
alt: ""
|
|
55823
55808
|
}, null, -1));
|
|
55824
|
-
const
|
|
55825
|
-
const
|
|
55809
|
+
const _hoisted_81 = { class: "mediumTitleTS focusTC pl-2" };
|
|
55810
|
+
const _hoisted_82 = {
|
|
55826
55811
|
class: "flex flex-wrap justify-center",
|
|
55827
55812
|
style: { "padding": "7.7rem" }
|
|
55828
55813
|
};
|
|
55829
|
-
const
|
|
55830
|
-
const
|
|
55831
|
-
const
|
|
55814
|
+
const _hoisted_83 = ["onClick"];
|
|
55815
|
+
const _hoisted_84 = { class: "w-full text-[22px] c606266 leading-loose rb" };
|
|
55816
|
+
const _hoisted_85 = {
|
|
55832
55817
|
key: 1,
|
|
55833
55818
|
class: "yuan mr-[10px]"
|
|
55834
55819
|
};
|
|
55835
|
-
const
|
|
55836
|
-
const
|
|
55837
|
-
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 = {
|
|
55838
55823
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55839
55824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55840
55825
|
version: "1.1",
|
|
@@ -55842,7 +55827,7 @@ const _hoisted_90 = {
|
|
|
55842
55827
|
height: "23px",
|
|
55843
55828
|
style: { "position": "absolute", "top": "7px" }
|
|
55844
55829
|
};
|
|
55845
|
-
const
|
|
55830
|
+
const _hoisted_89 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -256 -275 )" }, [
|
|
55846
55831
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55847
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 ",
|
|
55848
55833
|
"fill-rule": "nonzero",
|
|
@@ -55851,10 +55836,10 @@ const _hoisted_91 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55851
55836
|
transform: "matrix(1 0 0 1 256 275 )"
|
|
55852
55837
|
})
|
|
55853
55838
|
], -1));
|
|
55854
|
-
const
|
|
55855
|
-
|
|
55839
|
+
const _hoisted_90 = [
|
|
55840
|
+
_hoisted_89
|
|
55856
55841
|
];
|
|
55857
|
-
const
|
|
55842
|
+
const _hoisted_91 = {
|
|
55858
55843
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
|
55859
55844
|
xmlns: "http://www.w3.org/2000/svg",
|
|
55860
55845
|
version: "1.1",
|
|
@@ -55862,7 +55847,7 @@ const _hoisted_93 = {
|
|
|
55862
55847
|
height: "23px",
|
|
55863
55848
|
style: { "position": "absolute", "left": "7px" }
|
|
55864
55849
|
};
|
|
55865
|
-
const
|
|
55850
|
+
const _hoisted_92 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("g", { transform: "matrix(1 0 0 1 -263 -268 )" }, [
|
|
55866
55851
|
/* @__PURE__ */ createElementVNode("path", {
|
|
55867
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 ",
|
|
55868
55853
|
"fill-rule": "nonzero",
|
|
@@ -55871,19 +55856,17 @@ const _hoisted_94 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEle
|
|
|
55871
55856
|
transform: "matrix(1 0 0 1 263 268 )"
|
|
55872
55857
|
})
|
|
55873
55858
|
], -1));
|
|
55874
|
-
const
|
|
55875
|
-
|
|
55859
|
+
const _hoisted_93 = [
|
|
55860
|
+
_hoisted_92
|
|
55876
55861
|
];
|
|
55877
|
-
const
|
|
55878
|
-
const
|
|
55879
|
-
const
|
|
55880
|
-
const
|
|
55881
|
-
const
|
|
55882
|
-
const
|
|
55883
|
-
const _hoisted_102 = /* @__PURE__ */ createTextVNode(" 下次再提醒我 ");
|
|
55884
|
-
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" };
|
|
55885
55868
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
55886
|
-
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;
|
|
55887
55870
|
const _component_a_upload = __unplugin_components_0;
|
|
55888
55871
|
const _component_a_badge = Badge;
|
|
55889
55872
|
const _component_EconomicsSider = resolveComponent("EconomicsSider");
|
|
@@ -55934,7 +55917,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55934
55917
|
_ctx.userInfo.avatar ? (openBlock(), createBlock(_component_a_upload, {
|
|
55935
55918
|
key: 0,
|
|
55936
55919
|
"file-list": $setup.fileList,
|
|
55937
|
-
"onUpdate:
|
|
55920
|
+
"onUpdate:fileList": _cache[3] || (_cache[3] = ($event) => $setup.fileList = $event),
|
|
55938
55921
|
maxCount: 1,
|
|
55939
55922
|
"before-upload": $setup.beforeUpload,
|
|
55940
55923
|
customRequest: $setup.customRequest
|
|
@@ -55979,7 +55962,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
55979
55962
|
}, 8, ["onClick", "count"]),
|
|
55980
55963
|
createVNode(_component_a_badge, {
|
|
55981
55964
|
onClick: $setup.onClickTodo,
|
|
55982
|
-
count: $setup.
|
|
55965
|
+
count: (_g2 = (_f2 = $setup.userFlowData) == null ? void 0 : _f2.find((x10) => x10.code === "todo")) == null ? void 0 : _g2.count,
|
|
55983
55966
|
"number-style": {
|
|
55984
55967
|
backgroundColor: "#52c41a",
|
|
55985
55968
|
fontSize: "12px",
|
|
@@ -56000,10 +55983,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56000
55983
|
}, _hoisted_18)
|
|
56001
55984
|
])
|
|
56002
55985
|
]),
|
|
56003
|
-
((
|
|
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, [
|
|
56004
55987
|
createElementVNode("div", null, [
|
|
56005
55988
|
_hoisted_20,
|
|
56006
|
-
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)
|
|
56007
55990
|
]),
|
|
56008
55991
|
$setup.setofbooksTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
56009
55992
|
key: 0,
|
|
@@ -56011,15 +55994,15 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56011
55994
|
onClick: _cache[6] || (_cache[6] = (...args) => $setup.changeSetofbooks && $setup.changeSetofbooks(...args))
|
|
56012
55995
|
}, "切换" + toDisplayString($props.setofbooksName), 1)) : createCommentVNode("", true)
|
|
56013
55996
|
])) : createCommentVNode("", true),
|
|
56014
|
-
((
|
|
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, [
|
|
56015
55998
|
createElementVNode("div", null, [
|
|
56016
55999
|
_hoisted_23,
|
|
56017
56000
|
createElementVNode("span", _hoisted_24, [
|
|
56018
|
-
|
|
56001
|
+
createTextVNode(" 当前基地: "),
|
|
56019
56002
|
$setup.isShowAllProductionBases ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
56020
|
-
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)
|
|
56021
56004
|
], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
56022
|
-
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)
|
|
56023
56006
|
], 64))
|
|
56024
56007
|
])
|
|
56025
56008
|
]),
|
|
@@ -56029,10 +56012,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56029
56012
|
onClick: _cache[7] || (_cache[7] = (...args) => $setup.openBaseModal && $setup.openBaseModal(...args))
|
|
56030
56013
|
}, "切换基地")) : createCommentVNode("", true)
|
|
56031
56014
|
])) : createCommentVNode("", true),
|
|
56032
|
-
((
|
|
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, [
|
|
56033
56016
|
createElementVNode("div", null, [
|
|
56034
|
-
|
|
56035
|
-
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)
|
|
56036
56019
|
]),
|
|
56037
56020
|
$setup.gjTest.length > 1 ? (openBlock(), createElementBlock("span", {
|
|
56038
56021
|
key: 0,
|
|
@@ -56047,8 +56030,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56047
56030
|
module: _ctx.selectModule,
|
|
56048
56031
|
menuTitle: $props.menuTitle,
|
|
56049
56032
|
ccflow: $props.ccflow,
|
|
56050
|
-
ccflowData: $setup.ccflowData
|
|
56051
|
-
|
|
56033
|
+
ccflowData: $setup.ccflowData,
|
|
56034
|
+
userFlow: $props.userFlow,
|
|
56035
|
+
userFlowData: $setup.userFlowData
|
|
56036
|
+
}, null, 8, ["onRouterPush", "noBaseTwoMenu", "module", "menuTitle", "ccflow", "ccflowData", "userFlow", "userFlowData"])
|
|
56052
56037
|
], 4),
|
|
56053
56038
|
createVNode(_component_MrpModal, {
|
|
56054
56039
|
show: _ctx.changePWDVisible,
|
|
@@ -56057,11 +56042,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56057
56042
|
onCancel: $setup.cancelPWDVisible
|
|
56058
56043
|
}, {
|
|
56059
56044
|
title: withCtx(() => [
|
|
56060
|
-
|
|
56045
|
+
_hoisted_28
|
|
56061
56046
|
]),
|
|
56062
56047
|
body: withCtx(() => [
|
|
56063
|
-
|
|
56064
|
-
createElementVNode("div",
|
|
56048
|
+
_hoisted_29,
|
|
56049
|
+
createElementVNode("div", _hoisted_30, [
|
|
56065
56050
|
createVNode(_component_a_form, {
|
|
56066
56051
|
style: { "width": "380px", "margin": "0 auto" },
|
|
56067
56052
|
ref: "changePWDref",
|
|
@@ -56112,7 +56097,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56112
56097
|
]),
|
|
56113
56098
|
_: 1
|
|
56114
56099
|
}, 8, ["model"]),
|
|
56115
|
-
createElementVNode("div",
|
|
56100
|
+
createElementVNode("div", _hoisted_31, [
|
|
56116
56101
|
createElementVNode("div", {
|
|
56117
56102
|
class: "submit_btn",
|
|
56118
56103
|
onClick: _cache[11] || (_cache[11] = (...args) => $setup.changePWDOKHandle && $setup.changePWDOKHandle(...args))
|
|
@@ -56132,8 +56117,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56132
56117
|
"remove-padding": false
|
|
56133
56118
|
}, {
|
|
56134
56119
|
title: withCtx(() => [
|
|
56135
|
-
createElementVNode("div",
|
|
56136
|
-
|
|
56120
|
+
createElementVNode("div", _hoisted_32, [
|
|
56121
|
+
_hoisted_33,
|
|
56137
56122
|
createElementVNode("div", {
|
|
56138
56123
|
class: "h-[60px] w-[80px] zIndex",
|
|
56139
56124
|
onClick: _cache[14] || (_cache[14] = ($event) => $setup.closeSysetmModal())
|
|
@@ -56141,7 +56126,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56141
56126
|
])
|
|
56142
56127
|
]),
|
|
56143
56128
|
body: withCtx(() => [
|
|
56144
|
-
createElementVNode("div",
|
|
56129
|
+
createElementVNode("div", _hoisted_34, [
|
|
56145
56130
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.permissionModuleList, (i2) => {
|
|
56146
56131
|
return openBlock(), createElementBlock("div", {
|
|
56147
56132
|
key: i2.id,
|
|
@@ -56149,31 +56134,31 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56149
56134
|
style: { "border-radius": "10px" },
|
|
56150
56135
|
onClick: ($event) => $setup.changesystem(i2)
|
|
56151
56136
|
}, [
|
|
56152
|
-
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div",
|
|
56153
|
-
createElementVNode("div",
|
|
56137
|
+
i2.permissionModuleName === $setup.selectedSystems ? (openBlock(), createElementBlock("div", _hoisted_36, [
|
|
56138
|
+
createElementVNode("div", _hoisted_37, [
|
|
56154
56139
|
createElementVNode("img", {
|
|
56155
56140
|
class: "mr-4",
|
|
56156
56141
|
src: i2.icon
|
|
56157
|
-
}, null, 8,
|
|
56142
|
+
}, null, 8, _hoisted_38),
|
|
56158
56143
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56159
56144
|
]),
|
|
56160
|
-
|
|
56161
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56162
|
-
createElementVNode("div",
|
|
56145
|
+
_hoisted_39
|
|
56146
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_40, [
|
|
56147
|
+
createElementVNode("div", _hoisted_41, [
|
|
56163
56148
|
createElementVNode("img", {
|
|
56164
56149
|
class: "mr-4",
|
|
56165
56150
|
src: i2.icon
|
|
56166
|
-
}, null, 8,
|
|
56151
|
+
}, null, 8, _hoisted_42),
|
|
56167
56152
|
createTextVNode(toDisplayString(i2.moduleName), 1)
|
|
56168
56153
|
]),
|
|
56169
|
-
|
|
56154
|
+
_hoisted_43
|
|
56170
56155
|
])),
|
|
56171
56156
|
createElementVNode("div", null, [
|
|
56172
|
-
createElementVNode("div",
|
|
56157
|
+
createElementVNode("div", _hoisted_44, [
|
|
56173
56158
|
(openBlock(true), createElementBlock(Fragment, null, renderList(i2.childGroups, (e10) => {
|
|
56174
56159
|
return openBlock(), createElementBlock("div", {
|
|
56175
56160
|
key: e10.id,
|
|
56176
|
-
style: { "font-family": "'PingFangSC-Regular', 'PingFang SC'
|
|
56161
|
+
style: { "font-family": "'PingFangSC-Regular', 'PingFang SC',\n sans-serif" },
|
|
56177
56162
|
class: normalizeClass(
|
|
56178
56163
|
i2.childGroups.length < 5 ? "mx-[30px] children flex items-center" : "children flex items-center"
|
|
56179
56164
|
)
|
|
@@ -56182,13 +56167,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56182
56167
|
class: "mr-2",
|
|
56183
56168
|
style: { "width": "16px", "height": "16px" },
|
|
56184
56169
|
src: e10.icon
|
|
56185
|
-
}, null, 8,
|
|
56170
|
+
}, null, 8, _hoisted_45),
|
|
56186
56171
|
createTextVNode(" " + toDisplayString(e10.moduleName), 1)
|
|
56187
56172
|
], 2);
|
|
56188
56173
|
}), 128))
|
|
56189
56174
|
])
|
|
56190
56175
|
])
|
|
56191
|
-
], 8,
|
|
56176
|
+
], 8, _hoisted_35);
|
|
56192
56177
|
}), 128))
|
|
56193
56178
|
])
|
|
56194
56179
|
]),
|
|
@@ -56201,8 +56186,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56201
56186
|
"remove-padding": false
|
|
56202
56187
|
}, {
|
|
56203
56188
|
title: withCtx(() => [
|
|
56204
|
-
createElementVNode("div",
|
|
56205
|
-
|
|
56189
|
+
createElementVNode("div", _hoisted_46, [
|
|
56190
|
+
_hoisted_47,
|
|
56206
56191
|
createElementVNode("div", {
|
|
56207
56192
|
class: "h-[60px] w-[80px] zIndex",
|
|
56208
56193
|
onClick: _cache[16] || (_cache[16] = ($event) => $setup.closeModule())
|
|
@@ -56210,54 +56195,54 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56210
56195
|
])
|
|
56211
56196
|
]),
|
|
56212
56197
|
body: withCtx(() => [
|
|
56213
|
-
createElementVNode("div",
|
|
56198
|
+
createElementVNode("div", _hoisted_48, [
|
|
56214
56199
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.moduleTestS, (i2) => {
|
|
56215
56200
|
return openBlock(), createElementBlock("div", {
|
|
56216
56201
|
key: i2.id,
|
|
56217
56202
|
class: "w-[320px] rounded-[10px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer",
|
|
56218
56203
|
onClick: ($event) => $setup.changeModule(i2)
|
|
56219
56204
|
}, [
|
|
56220
|
-
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div",
|
|
56221
|
-
createElementVNode("div",
|
|
56205
|
+
i2.permissionModuleName === _ctx.selectModule ? (openBlock(), createElementBlock("div", _hoisted_50, [
|
|
56206
|
+
createElementVNode("div", _hoisted_51, [
|
|
56222
56207
|
createElementVNode("img", {
|
|
56223
56208
|
class: "w-[80px] h-[78px]",
|
|
56224
56209
|
src: i2.icon
|
|
56225
|
-
}, null, 8,
|
|
56210
|
+
}, null, 8, _hoisted_52),
|
|
56226
56211
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56227
56212
|
key: 0,
|
|
56228
56213
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56229
56214
|
src: i2.icon1
|
|
56230
|
-
}, null, 8,
|
|
56215
|
+
}, null, 8, _hoisted_53)) : createCommentVNode("", true)
|
|
56231
56216
|
]),
|
|
56232
|
-
createElementVNode("div",
|
|
56233
|
-
createElementVNode("div",
|
|
56217
|
+
createElementVNode("div", _hoisted_54, [
|
|
56218
|
+
createElementVNode("div", _hoisted_55, [
|
|
56234
56219
|
createVNode(_component_check_circle_outlined, { class: "mediumTitleTS mr-[10px]" }),
|
|
56235
|
-
createElementVNode("div",
|
|
56220
|
+
createElementVNode("div", _hoisted_56, toDisplayString(i2.moduleName), 1)
|
|
56236
56221
|
])
|
|
56237
56222
|
])
|
|
56238
|
-
])) : (openBlock(), createElementBlock("div",
|
|
56239
|
-
createElementVNode("div",
|
|
56223
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_57, [
|
|
56224
|
+
createElementVNode("div", _hoisted_58, [
|
|
56240
56225
|
createElementVNode("img", {
|
|
56241
56226
|
class: "w-[80px] h-[78px]",
|
|
56242
56227
|
src: i2.icon
|
|
56243
|
-
}, null, 8,
|
|
56228
|
+
}, null, 8, _hoisted_59),
|
|
56244
56229
|
i2.icon1 ? (openBlock(), createElementBlock("img", {
|
|
56245
56230
|
key: 0,
|
|
56246
56231
|
class: "w-[80px] h-[27px] absolute top-[68px]",
|
|
56247
56232
|
src: i2.icon1
|
|
56248
|
-
}, null, 8,
|
|
56233
|
+
}, null, 8, _hoisted_60)) : createCommentVNode("", true)
|
|
56249
56234
|
]),
|
|
56250
|
-
createElementVNode("div",
|
|
56251
|
-
createElementVNode("div",
|
|
56235
|
+
createElementVNode("div", _hoisted_61, [
|
|
56236
|
+
createElementVNode("div", _hoisted_62, [
|
|
56252
56237
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56253
56238
|
key: 0,
|
|
56254
56239
|
class: "mediumTitleTS mr-[10px]"
|
|
56255
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56240
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_63)),
|
|
56256
56241
|
createTextVNode(" " + toDisplayString(i2.moduleName), 1)
|
|
56257
56242
|
])
|
|
56258
56243
|
])
|
|
56259
56244
|
]))
|
|
56260
|
-
], 8,
|
|
56245
|
+
], 8, _hoisted_49);
|
|
56261
56246
|
}), 128))
|
|
56262
56247
|
])
|
|
56263
56248
|
]),
|
|
@@ -56269,8 +56254,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56269
56254
|
"remove-padding": false
|
|
56270
56255
|
}, {
|
|
56271
56256
|
title: withCtx(() => [
|
|
56272
|
-
createElementVNode("div",
|
|
56273
|
-
|
|
56257
|
+
createElementVNode("div", _hoisted_64, [
|
|
56258
|
+
_hoisted_65,
|
|
56274
56259
|
createElementVNode("div", {
|
|
56275
56260
|
class: "h-[60px] w-[80px] zIndex",
|
|
56276
56261
|
onClick: _cache[18] || (_cache[18] = (...args) => $setup.cloneBaseModal && $setup.cloneBaseModal(...args))
|
|
@@ -56278,7 +56263,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56278
56263
|
])
|
|
56279
56264
|
]),
|
|
56280
56265
|
body: withCtx(() => [
|
|
56281
|
-
createElementVNode("div",
|
|
56266
|
+
createElementVNode("div", _hoisted_66, [
|
|
56282
56267
|
$setup.isShowAllProductionBasesModel ? (openBlock(), createElementBlock("div", {
|
|
56283
56268
|
key: 0,
|
|
56284
56269
|
class: "w-[320px] mb-[110px] mr-[100px] modal_item_border overflow-hidden cursor-pointer rt",
|
|
@@ -56304,7 +56289,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56304
56289
|
])
|
|
56305
56290
|
}, " 全部基地 ", 2)
|
|
56306
56291
|
], 2),
|
|
56307
|
-
createElementVNode("div",
|
|
56292
|
+
createElementVNode("div", _hoisted_67, [
|
|
56308
56293
|
createElementVNode("div", {
|
|
56309
56294
|
class: normalizeClass([
|
|
56310
56295
|
"flex",
|
|
@@ -56317,8 +56302,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56317
56302
|
$setup.baseId === $setup.allBaseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56318
56303
|
key: 0,
|
|
56319
56304
|
class: "mediumTitleTS mr-[10px]"
|
|
56320
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56321
|
-
|
|
56305
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_68)),
|
|
56306
|
+
createTextVNode(" 全部基地 ")
|
|
56322
56307
|
], 2)
|
|
56323
56308
|
])
|
|
56324
56309
|
])) : createCommentVNode("", true),
|
|
@@ -56345,7 +56330,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56345
56330
|
class: normalizeClass(["text-xl", `${i2.id == $setup.baseId ? "focusTC" : "clickTC"}`])
|
|
56346
56331
|
}, toDisplayString(i2.title), 3)
|
|
56347
56332
|
], 2),
|
|
56348
|
-
createElementVNode("div",
|
|
56333
|
+
createElementVNode("div", _hoisted_70, [
|
|
56349
56334
|
createElementVNode("div", {
|
|
56350
56335
|
class: normalizeClass([
|
|
56351
56336
|
"flex",
|
|
@@ -56358,11 +56343,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56358
56343
|
i2.id == $setup.baseId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56359
56344
|
key: 0,
|
|
56360
56345
|
class: "mediumTitleTS mr-[10px]"
|
|
56361
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56346
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_71)),
|
|
56362
56347
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56363
56348
|
], 2)
|
|
56364
56349
|
])
|
|
56365
|
-
], 8,
|
|
56350
|
+
], 8, _hoisted_69);
|
|
56366
56351
|
}), 128))
|
|
56367
56352
|
])
|
|
56368
56353
|
]),
|
|
@@ -56374,8 +56359,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56374
56359
|
"remove-padding": false
|
|
56375
56360
|
}, {
|
|
56376
56361
|
title: withCtx(() => [
|
|
56377
|
-
createElementVNode("div",
|
|
56378
|
-
|
|
56362
|
+
createElementVNode("div", _hoisted_72, [
|
|
56363
|
+
_hoisted_73,
|
|
56379
56364
|
createElementVNode("div", {
|
|
56380
56365
|
class: "h-[60px] w-[80px] zIndex",
|
|
56381
56366
|
onClick: _cache[21] || (_cache[21] = ($event) => $setup.closeDgVisible())
|
|
@@ -56383,7 +56368,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56383
56368
|
])
|
|
56384
56369
|
]),
|
|
56385
56370
|
body: withCtx(() => [
|
|
56386
|
-
createElementVNode("div",
|
|
56371
|
+
createElementVNode("div", _hoisted_74, [
|
|
56387
56372
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.gjTest, (i2) => {
|
|
56388
56373
|
return openBlock(), createElementBlock("div", {
|
|
56389
56374
|
key: i2.id,
|
|
@@ -56407,7 +56392,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56407
56392
|
class: normalizeClass(["text-xl", `${i2.id == $setup.gjId ? "focusTC" : "clickTC"}`])
|
|
56408
56393
|
}, toDisplayString(i2.title), 3)
|
|
56409
56394
|
], 2),
|
|
56410
|
-
createElementVNode("div",
|
|
56395
|
+
createElementVNode("div", _hoisted_76, [
|
|
56411
56396
|
createElementVNode("div", {
|
|
56412
56397
|
class: normalizeClass([
|
|
56413
56398
|
"flex",
|
|
@@ -56420,11 +56405,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56420
56405
|
i2.id == $setup.gjId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56421
56406
|
key: 0,
|
|
56422
56407
|
class: "mediumTitleTS mr-[10px]"
|
|
56423
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56408
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_77)),
|
|
56424
56409
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56425
56410
|
], 2)
|
|
56426
56411
|
])
|
|
56427
|
-
], 8,
|
|
56412
|
+
], 8, _hoisted_75);
|
|
56428
56413
|
}), 128))
|
|
56429
56414
|
])
|
|
56430
56415
|
]),
|
|
@@ -56436,10 +56421,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56436
56421
|
"remove-padding": false
|
|
56437
56422
|
}, {
|
|
56438
56423
|
title: withCtx(() => [
|
|
56439
|
-
createElementVNode("div",
|
|
56440
|
-
createElementVNode("div",
|
|
56441
|
-
|
|
56442
|
-
createElementVNode("span",
|
|
56424
|
+
createElementVNode("div", _hoisted_78, [
|
|
56425
|
+
createElementVNode("div", _hoisted_79, [
|
|
56426
|
+
_hoisted_80,
|
|
56427
|
+
createElementVNode("span", _hoisted_81, "切换" + toDisplayString($props.setofbooksName), 1)
|
|
56443
56428
|
]),
|
|
56444
56429
|
createElementVNode("div", {
|
|
56445
56430
|
class: "h-[60px] w-[80px] zIndex",
|
|
@@ -56448,7 +56433,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56448
56433
|
])
|
|
56449
56434
|
]),
|
|
56450
56435
|
body: withCtx(() => [
|
|
56451
|
-
createElementVNode("div",
|
|
56436
|
+
createElementVNode("div", _hoisted_82, [
|
|
56452
56437
|
(openBlock(true), createElementBlock(Fragment, null, renderList($setup.setofbooksTest, (i2) => {
|
|
56453
56438
|
return openBlock(), createElementBlock("div", {
|
|
56454
56439
|
key: i2.id,
|
|
@@ -56475,7 +56460,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56475
56460
|
])
|
|
56476
56461
|
}, toDisplayString(i2.title), 3)
|
|
56477
56462
|
], 2),
|
|
56478
|
-
createElementVNode("div",
|
|
56463
|
+
createElementVNode("div", _hoisted_84, [
|
|
56479
56464
|
createElementVNode("div", {
|
|
56480
56465
|
class: normalizeClass([
|
|
56481
56466
|
"flex",
|
|
@@ -56488,11 +56473,11 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56488
56473
|
i2.id == $setup.setOfBookId ? (openBlock(), createBlock(_component_check_circle_outlined, {
|
|
56489
56474
|
key: 0,
|
|
56490
56475
|
class: "mediumTitleTS mr-[10px]"
|
|
56491
|
-
})) : (openBlock(), createElementBlock("div",
|
|
56476
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_85)),
|
|
56492
56477
|
createTextVNode(" " + toDisplayString(i2.shortName), 1)
|
|
56493
56478
|
], 2)
|
|
56494
56479
|
])
|
|
56495
|
-
], 8,
|
|
56480
|
+
], 8, _hoisted_83);
|
|
56496
56481
|
}), 128))
|
|
56497
56482
|
])
|
|
56498
56483
|
]),
|
|
@@ -56512,16 +56497,16 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56512
56497
|
isScroll: false
|
|
56513
56498
|
}, {
|
|
56514
56499
|
title: withCtx(() => [
|
|
56515
|
-
createElementVNode("div",
|
|
56516
|
-
createElementVNode("div",
|
|
56517
|
-
(openBlock(), createElementBlock("svg",
|
|
56518
|
-
(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))
|
|
56519
56504
|
]),
|
|
56520
|
-
|
|
56505
|
+
_hoisted_94
|
|
56521
56506
|
])
|
|
56522
56507
|
]),
|
|
56523
56508
|
body: withCtx(() => [
|
|
56524
|
-
createElementVNode("div",
|
|
56509
|
+
createElementVNode("div", _hoisted_95, [
|
|
56525
56510
|
createVNode(_component_a_row, {
|
|
56526
56511
|
gutter: 24,
|
|
56527
56512
|
style: { "height": "90%", "border-bottom": "1px solid #eadcb9" }
|
|
@@ -56536,7 +56521,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56536
56521
|
return openBlock(), createElementBlock("div", {
|
|
56537
56522
|
onClick: ($event) => $setup.changeTab(item, i2),
|
|
56538
56523
|
class: normalizeClass(["tab-items", $setup.activeKey == i2 ? "tab-items-active" : ""])
|
|
56539
|
-
}, toDisplayString(item.version), 11,
|
|
56524
|
+
}, toDisplayString(item.version), 11, _hoisted_96);
|
|
56540
56525
|
}), 256))
|
|
56541
56526
|
]),
|
|
56542
56527
|
_: 1
|
|
@@ -56550,8 +56535,8 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56550
56535
|
type: "vertical",
|
|
56551
56536
|
style: { "height": "100%", "background-color": "#eadcb9", "position": "absolute", "left": "0", "top": "0" }
|
|
56552
56537
|
}),
|
|
56553
|
-
createElementVNode("div",
|
|
56554
|
-
createElementVNode("div",
|
|
56538
|
+
createElementVNode("div", _hoisted_97, [
|
|
56539
|
+
createElementVNode("div", _hoisted_98, [
|
|
56555
56540
|
createVNode(_component_Toolbar, {
|
|
56556
56541
|
editor: $setup.editorRef,
|
|
56557
56542
|
defaultConfig: { readOnly: true },
|
|
@@ -56571,14 +56556,14 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56571
56556
|
]),
|
|
56572
56557
|
_: 1
|
|
56573
56558
|
}),
|
|
56574
|
-
createElementVNode("div",
|
|
56559
|
+
createElementVNode("div", _hoisted_99, [
|
|
56575
56560
|
createVNode(_component_a_button, {
|
|
56576
56561
|
class: "w-[140px] mr-[50px] btn1",
|
|
56577
56562
|
style: { "border-radius": "5px" },
|
|
56578
56563
|
onClick: $setup.onCancel
|
|
56579
56564
|
}, {
|
|
56580
56565
|
default: withCtx(() => [
|
|
56581
|
-
|
|
56566
|
+
createTextVNode(" 下次再提醒我 ")
|
|
56582
56567
|
]),
|
|
56583
56568
|
_: 1
|
|
56584
56569
|
}, 8, ["onClick"]),
|
|
@@ -56588,7 +56573,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56588
56573
|
onClick: $setup.onRead
|
|
56589
56574
|
}, {
|
|
56590
56575
|
default: withCtx(() => [
|
|
56591
|
-
|
|
56576
|
+
createTextVNode(" 好的,我知道了 ")
|
|
56592
56577
|
]),
|
|
56593
56578
|
_: 1
|
|
56594
56579
|
}, 8, ["onClick"])
|
|
@@ -56599,7 +56584,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
56599
56584
|
}, 8, ["show"])
|
|
56600
56585
|
], 64);
|
|
56601
56586
|
}
|
|
56602
|
-
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"]]);
|
|
56603
56588
|
const style = "";
|
|
56604
56589
|
const components = [TSider];
|
|
56605
56590
|
installComponents();
|