mooho-base-admin-plus 0.4.69 → 0.4.71
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/package/mooho-base-admin-plus.min.esm.js +697 -455
- package/package/mooho-base-admin-plus.min.js +49 -51
- package/package.json +1 -1
- package/public/setting.js +3 -1
- package/src/api/customModel.js +1 -1
- package/src/api/dataSource.js +1 -1
- package/src/api/dataView.js +1 -1
- package/src/api/mailTemplate.js +23 -0
- package/src/api/model.js +1 -1
- package/src/components/upload/upload-attachment.vue +13 -1
- package/src/components/view/column-edit.vue +16 -11
- package/src/components/view/modal-form-filter.vue +1 -1
- package/src/components/view/modal-form-sort.vue +1 -1
- package/src/components/view/view-form-draggable.vue +2 -0
- package/src/components/view/view-form.vue +1 -0
- package/src/components/view/view-table.vue +1 -1
- package/src/index.js +9 -5
- package/src/libs/request/index.js +22 -7
- package/src/mixins/page.js +92 -24
- package/src/pages/system/mailTemplate.vue +34 -2
- package/src/pages/system/setting.vue +26 -0
- package/src/router/dynamic.js +2 -2
- package/src/setting.js +3 -1
- package/src/store/modules/admin/modules/account.js +3 -3
- package/test/api/barcode.js +1 -1
- package/test/api/inbound.js +1 -1
- package/test/api/movePlan.js +1 -1
- package/test/api/outbound.js +1 -1
- package/test/main.js +2 -8
|
@@ -1291,6 +1291,7 @@ const Setting = {
|
|
|
1291
1291
|
autoFixRatio: true,
|
|
1292
1292
|
maskClosable: true,
|
|
1293
1293
|
draggable: true,
|
|
1294
|
+
alertStyle: "SweetAlert",
|
|
1294
1295
|
filterWidth: 125
|
|
1295
1296
|
},
|
|
1296
1297
|
page: {
|
|
@@ -12634,19 +12635,33 @@ function errorLog(err) {
|
|
|
12634
12635
|
util$2.log.error(">>>>>> Error >>>>>>");
|
|
12635
12636
|
console.log(err);
|
|
12636
12637
|
}
|
|
12637
|
-
|
|
12638
|
-
|
|
12639
|
-
|
|
12640
|
-
|
|
12641
|
-
|
|
12642
|
-
|
|
12638
|
+
if (Setting.layout.alertStyle == "Message") {
|
|
12639
|
+
window.$app.$Message.error({
|
|
12640
|
+
content: tParam(err.message),
|
|
12641
|
+
duration: 0,
|
|
12642
|
+
closable: true
|
|
12643
|
+
});
|
|
12644
|
+
} else if (Setting.layout.alertStyle == "Notice") {
|
|
12645
|
+
window.$app.$Notice.error({
|
|
12646
|
+
title: window.$app.$t("Front_Msg_Fail"),
|
|
12647
|
+
desc: tParam(err.message),
|
|
12648
|
+
duration: 0,
|
|
12649
|
+
closable: true
|
|
12650
|
+
});
|
|
12651
|
+
} else {
|
|
12652
|
+
Swal.fire({
|
|
12653
|
+
title: tParam(err.message),
|
|
12654
|
+
icon: "error",
|
|
12655
|
+
confirmButtonText: tParam("Front_Btn_OK")
|
|
12656
|
+
});
|
|
12657
|
+
}
|
|
12643
12658
|
}
|
|
12644
12659
|
const service = axios.create({});
|
|
12645
12660
|
const tParam = (str) => {
|
|
12646
12661
|
let array = str.split("|");
|
|
12647
12662
|
let key = array[0];
|
|
12648
12663
|
array.shift();
|
|
12649
|
-
let result2 = window.$t(key, array);
|
|
12664
|
+
let result2 = window.$app.$t(key, array);
|
|
12650
12665
|
for (let i2 = 0; i2 < array.length; i2++) {
|
|
12651
12666
|
result2 = result2.replace("[" + i2 + "]", array[i2]);
|
|
12652
12667
|
}
|
|
@@ -12735,11 +12750,11 @@ service.interceptors.response.use((response) => {
|
|
|
12735
12750
|
errorLog(error2);
|
|
12736
12751
|
return Promise.reject(error2);
|
|
12737
12752
|
});
|
|
12738
|
-
const res$
|
|
12753
|
+
const res$o = "User";
|
|
12739
12754
|
var userlApi = {
|
|
12740
12755
|
get(id) {
|
|
12741
12756
|
return service({
|
|
12742
|
-
url: `api/${res$
|
|
12757
|
+
url: `api/${res$o}/get`,
|
|
12743
12758
|
method: "get",
|
|
12744
12759
|
params: {
|
|
12745
12760
|
id
|
|
@@ -12748,14 +12763,14 @@ var userlApi = {
|
|
|
12748
12763
|
},
|
|
12749
12764
|
login(data2) {
|
|
12750
12765
|
return service({
|
|
12751
|
-
url: `api/${res$
|
|
12766
|
+
url: `api/${res$o}/login`,
|
|
12752
12767
|
method: "post",
|
|
12753
12768
|
data: data2
|
|
12754
12769
|
});
|
|
12755
12770
|
},
|
|
12756
12771
|
resetPassword(id) {
|
|
12757
12772
|
return service({
|
|
12758
|
-
url: `api/${res$
|
|
12773
|
+
url: `api/${res$o}/resetPassword`,
|
|
12759
12774
|
method: "post",
|
|
12760
12775
|
data: {
|
|
12761
12776
|
id
|
|
@@ -12764,14 +12779,14 @@ var userlApi = {
|
|
|
12764
12779
|
},
|
|
12765
12780
|
updatePassword(data2) {
|
|
12766
12781
|
return service({
|
|
12767
|
-
url: `api/${res$
|
|
12782
|
+
url: `api/${res$o}/updatePassword`,
|
|
12768
12783
|
method: "post",
|
|
12769
12784
|
data: data2
|
|
12770
12785
|
});
|
|
12771
12786
|
},
|
|
12772
12787
|
updateUser(data2) {
|
|
12773
12788
|
return service({
|
|
12774
|
-
url: `api/${res$
|
|
12789
|
+
url: `api/${res$o}/updateUserInfo`,
|
|
12775
12790
|
method: "put",
|
|
12776
12791
|
data: data2
|
|
12777
12792
|
});
|
|
@@ -12800,11 +12815,11 @@ var account = {
|
|
|
12800
12815
|
}
|
|
12801
12816
|
if (confirm2) {
|
|
12802
12817
|
Swal.fire({
|
|
12803
|
-
title: window.$t("Front_Msg_Sure_To_Logout"),
|
|
12818
|
+
title: window.$app.$t("Front_Msg_Sure_To_Logout"),
|
|
12804
12819
|
icon: "question",
|
|
12805
12820
|
showCancelButton: true,
|
|
12806
|
-
confirmButtonText: window.$t("Front_Btn_OK"),
|
|
12807
|
-
cancelButtonText: window.$t("Front_Btn_Cancel")
|
|
12821
|
+
confirmButtonText: window.$app.$t("Front_Btn_OK"),
|
|
12822
|
+
cancelButtonText: window.$app.$t("Front_Btn_Cancel")
|
|
12808
12823
|
}).then((result2) => {
|
|
12809
12824
|
if (result2.value) {
|
|
12810
12825
|
logout();
|
|
@@ -12827,11 +12842,11 @@ var __glob_0_0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
|
|
|
12827
12842
|
__proto__: null,
|
|
12828
12843
|
"default": account
|
|
12829
12844
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
12830
|
-
const res$
|
|
12845
|
+
const res$n = "Enum";
|
|
12831
12846
|
var enumApi = {
|
|
12832
12847
|
query(enumType) {
|
|
12833
12848
|
return service({
|
|
12834
|
-
url: `api/${res$
|
|
12849
|
+
url: `api/${res$n}/queryEnumItem`,
|
|
12835
12850
|
method: "get",
|
|
12836
12851
|
params: {
|
|
12837
12852
|
enumType
|
|
@@ -14694,7 +14709,7 @@ var modelApi = {
|
|
|
14694
14709
|
try {
|
|
14695
14710
|
LODOP = lodop.getLodop();
|
|
14696
14711
|
} catch (e2) {
|
|
14697
|
-
alert(window.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
14712
|
+
alert(window.$app.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
14698
14713
|
return;
|
|
14699
14714
|
}
|
|
14700
14715
|
let data2 = {
|
|
@@ -14815,11 +14830,11 @@ var __glob_0_1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProp
|
|
|
14815
14830
|
__proto__: null,
|
|
14816
14831
|
"default": cache$1
|
|
14817
14832
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
14818
|
-
const res$
|
|
14833
|
+
const res$m = "DataView";
|
|
14819
14834
|
var dataViewApi = {
|
|
14820
14835
|
getByCode(code) {
|
|
14821
14836
|
return service({
|
|
14822
|
-
url: `api/${res$
|
|
14837
|
+
url: `api/${res$m}/getByCode`,
|
|
14823
14838
|
method: "get",
|
|
14824
14839
|
params: {
|
|
14825
14840
|
code
|
|
@@ -14828,7 +14843,7 @@ var dataViewApi = {
|
|
|
14828
14843
|
},
|
|
14829
14844
|
save(code, viewColumns) {
|
|
14830
14845
|
return service({
|
|
14831
|
-
url: `api/${res$
|
|
14846
|
+
url: `api/${res$m}/saveDataView`,
|
|
14832
14847
|
method: "post",
|
|
14833
14848
|
data: {
|
|
14834
14849
|
code,
|
|
@@ -14838,7 +14853,7 @@ var dataViewApi = {
|
|
|
14838
14853
|
},
|
|
14839
14854
|
copy(id, newCode) {
|
|
14840
14855
|
return service({
|
|
14841
|
-
url: `api/${res$
|
|
14856
|
+
url: `api/${res$m}/copyDataView`,
|
|
14842
14857
|
method: "post",
|
|
14843
14858
|
data: {
|
|
14844
14859
|
id,
|
|
@@ -14848,14 +14863,14 @@ var dataViewApi = {
|
|
|
14848
14863
|
},
|
|
14849
14864
|
saveSetting(data2) {
|
|
14850
14865
|
return service({
|
|
14851
|
-
url: `api/${res$
|
|
14866
|
+
url: `api/${res$m}/saveSetting`,
|
|
14852
14867
|
method: "post",
|
|
14853
14868
|
data: data2
|
|
14854
14869
|
});
|
|
14855
14870
|
},
|
|
14856
14871
|
saveUserView(code, viewColumns) {
|
|
14857
14872
|
return service({
|
|
14858
|
-
url: `api/${res$
|
|
14873
|
+
url: `api/${res$m}/saveUserView`,
|
|
14859
14874
|
method: "post",
|
|
14860
14875
|
data: {
|
|
14861
14876
|
code,
|
|
@@ -14865,7 +14880,7 @@ var dataViewApi = {
|
|
|
14865
14880
|
},
|
|
14866
14881
|
saveFilterColumn(code, filterColumns) {
|
|
14867
14882
|
return service({
|
|
14868
|
-
url: `api/${res$
|
|
14883
|
+
url: `api/${res$m}/saveFilterColumn`,
|
|
14869
14884
|
method: "post",
|
|
14870
14885
|
data: {
|
|
14871
14886
|
code,
|
|
@@ -14875,7 +14890,7 @@ var dataViewApi = {
|
|
|
14875
14890
|
},
|
|
14876
14891
|
reset(code) {
|
|
14877
14892
|
return service({
|
|
14878
|
-
url: `api/${res$
|
|
14893
|
+
url: `api/${res$m}/removeUserView`,
|
|
14879
14894
|
method: "post",
|
|
14880
14895
|
data: {
|
|
14881
14896
|
code
|
|
@@ -14884,7 +14899,7 @@ var dataViewApi = {
|
|
|
14884
14899
|
},
|
|
14885
14900
|
queryColumnByModel(model2) {
|
|
14886
14901
|
return service({
|
|
14887
|
-
url: `api/${res$
|
|
14902
|
+
url: `api/${res$m}/queryColumnByModel`,
|
|
14888
14903
|
method: "get",
|
|
14889
14904
|
params: {
|
|
14890
14905
|
model: model2
|
|
@@ -14893,7 +14908,7 @@ var dataViewApi = {
|
|
|
14893
14908
|
},
|
|
14894
14909
|
queryColumnByView(view) {
|
|
14895
14910
|
return service({
|
|
14896
|
-
url: `api/${res$
|
|
14911
|
+
url: `api/${res$m}/queryColumnByView`,
|
|
14897
14912
|
method: "get",
|
|
14898
14913
|
params: {
|
|
14899
14914
|
view
|
|
@@ -14902,7 +14917,7 @@ var dataViewApi = {
|
|
|
14902
14917
|
},
|
|
14903
14918
|
queryColumnByDataSource(dataSource) {
|
|
14904
14919
|
return service({
|
|
14905
|
-
url: `api/${res$
|
|
14920
|
+
url: `api/${res$m}/queryColumnByDataSource`,
|
|
14906
14921
|
method: "get",
|
|
14907
14922
|
params: {
|
|
14908
14923
|
dataSource
|
|
@@ -14911,7 +14926,7 @@ var dataViewApi = {
|
|
|
14911
14926
|
},
|
|
14912
14927
|
queryFilterByDataSource(dataSource) {
|
|
14913
14928
|
return service({
|
|
14914
|
-
url: `api/${res$
|
|
14929
|
+
url: `api/${res$m}/queryFilterByDataSource`,
|
|
14915
14930
|
method: "get",
|
|
14916
14931
|
params: {
|
|
14917
14932
|
dataSource
|
|
@@ -14920,7 +14935,7 @@ var dataViewApi = {
|
|
|
14920
14935
|
},
|
|
14921
14936
|
getSchemaByModel(model2) {
|
|
14922
14937
|
return service({
|
|
14923
|
-
url: `api/${res$
|
|
14938
|
+
url: `api/${res$m}/getSchemaByModel`,
|
|
14924
14939
|
method: "get",
|
|
14925
14940
|
params: {
|
|
14926
14941
|
model: model2
|
|
@@ -14929,7 +14944,7 @@ var dataViewApi = {
|
|
|
14929
14944
|
},
|
|
14930
14945
|
async exportFile(ids) {
|
|
14931
14946
|
const result2 = await service({
|
|
14932
|
-
url: `api/${res$
|
|
14947
|
+
url: `api/${res$m}/exportFile`,
|
|
14933
14948
|
method: "post",
|
|
14934
14949
|
responseType: "blob",
|
|
14935
14950
|
data: {
|
|
@@ -14943,7 +14958,7 @@ var dataViewApi = {
|
|
|
14943
14958
|
},
|
|
14944
14959
|
async exportExcel(tableView2, data2, viewColumns) {
|
|
14945
14960
|
const result2 = await service({
|
|
14946
|
-
url: `api/${res$
|
|
14961
|
+
url: `api/${res$m}/export`,
|
|
14947
14962
|
method: "post",
|
|
14948
14963
|
responseType: "blob",
|
|
14949
14964
|
data: {
|
|
@@ -14960,7 +14975,7 @@ var dataViewApi = {
|
|
|
14960
14975
|
},
|
|
14961
14976
|
async exportPdf(tableView2, data2, viewColumns) {
|
|
14962
14977
|
const result2 = await service({
|
|
14963
|
-
url: `api/${res$
|
|
14978
|
+
url: `api/${res$m}/export`,
|
|
14964
14979
|
method: "post",
|
|
14965
14980
|
responseType: "blob",
|
|
14966
14981
|
data: {
|
|
@@ -14978,11 +14993,11 @@ var dataViewApi = {
|
|
|
14978
14993
|
try {
|
|
14979
14994
|
LODOP = lodop.getLodop();
|
|
14980
14995
|
} catch (e2) {
|
|
14981
|
-
alert(window.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
14996
|
+
alert(window.$app.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
14982
14997
|
return;
|
|
14983
14998
|
}
|
|
14984
14999
|
const result2 = await service({
|
|
14985
|
-
url: `api/${res$
|
|
15000
|
+
url: `api/${res$m}/export`,
|
|
14986
15001
|
method: "post",
|
|
14987
15002
|
data: {
|
|
14988
15003
|
data: data2,
|
|
@@ -18916,11 +18931,11 @@ var i18n$1 = vueI18n.exports.createI18n({
|
|
|
18916
18931
|
globalInjection: true,
|
|
18917
18932
|
legacy: false
|
|
18918
18933
|
});
|
|
18919
|
-
const res$
|
|
18934
|
+
const res$l = "I18nText";
|
|
18920
18935
|
var i18nTextApi = {
|
|
18921
18936
|
queryForEdit(i18nType, category) {
|
|
18922
18937
|
return service({
|
|
18923
|
-
url: `api/${res$
|
|
18938
|
+
url: `api/${res$l}/queryForEdit`,
|
|
18924
18939
|
method: "get",
|
|
18925
18940
|
params: {
|
|
18926
18941
|
i18nType,
|
|
@@ -18930,7 +18945,7 @@ var i18nTextApi = {
|
|
|
18930
18945
|
},
|
|
18931
18946
|
save(i18nType, category, data2) {
|
|
18932
18947
|
return service({
|
|
18933
|
-
url: `api/${res$
|
|
18948
|
+
url: `api/${res$l}/save`,
|
|
18934
18949
|
method: "post",
|
|
18935
18950
|
data: {
|
|
18936
18951
|
i18nType,
|
|
@@ -18941,7 +18956,7 @@ var i18nTextApi = {
|
|
|
18941
18956
|
},
|
|
18942
18957
|
getAll() {
|
|
18943
18958
|
return service({
|
|
18944
|
-
url: `api/${res$
|
|
18959
|
+
url: `api/${res$l}/getAll`,
|
|
18945
18960
|
method: "get"
|
|
18946
18961
|
});
|
|
18947
18962
|
}
|
|
@@ -19457,11 +19472,11 @@ function setNativePermission(data2) {
|
|
|
19457
19472
|
function getNativePermission() {
|
|
19458
19473
|
return JSON.parse(localStorage.getItem(`admin-plus-${Setting.appID}-permission`) || "[]");
|
|
19459
19474
|
}
|
|
19460
|
-
const res$
|
|
19475
|
+
const res$k = "Permission";
|
|
19461
19476
|
var permissionApi = {
|
|
19462
19477
|
query() {
|
|
19463
19478
|
return service({
|
|
19464
|
-
url: `api/${res$
|
|
19479
|
+
url: `api/${res$k}/query`,
|
|
19465
19480
|
method: "get",
|
|
19466
19481
|
params: {
|
|
19467
19482
|
clientType: "Admin"
|
|
@@ -19470,7 +19485,7 @@ var permissionApi = {
|
|
|
19470
19485
|
},
|
|
19471
19486
|
queryByRoleID(roleID, clientType) {
|
|
19472
19487
|
return service({
|
|
19473
|
-
url: `api/${res$
|
|
19488
|
+
url: `api/${res$k}/queryByRoleID`,
|
|
19474
19489
|
method: "get",
|
|
19475
19490
|
params: {
|
|
19476
19491
|
roleID,
|
|
@@ -19480,7 +19495,7 @@ var permissionApi = {
|
|
|
19480
19495
|
},
|
|
19481
19496
|
queryRouter() {
|
|
19482
19497
|
return service({
|
|
19483
|
-
url: `api/${res$
|
|
19498
|
+
url: `api/${res$k}/queryRouter`,
|
|
19484
19499
|
method: "get",
|
|
19485
19500
|
params: {
|
|
19486
19501
|
clientType: "Admin"
|
|
@@ -19489,7 +19504,7 @@ var permissionApi = {
|
|
|
19489
19504
|
},
|
|
19490
19505
|
async exportFile(ids) {
|
|
19491
19506
|
const result2 = await service({
|
|
19492
|
-
url: `api/${res$
|
|
19507
|
+
url: `api/${res$k}/exportFile`,
|
|
19493
19508
|
method: "post",
|
|
19494
19509
|
responseType: "blob",
|
|
19495
19510
|
data: {
|
|
@@ -20112,11 +20127,11 @@ var __glob_0_10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePro
|
|
|
20112
20127
|
__proto__: null,
|
|
20113
20128
|
"default": user$1
|
|
20114
20129
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
20115
|
-
const res$
|
|
20130
|
+
const res$j = "CustomPage";
|
|
20116
20131
|
var customPageApi = {
|
|
20117
20132
|
get(id) {
|
|
20118
20133
|
return service({
|
|
20119
|
-
url: `api/${res$
|
|
20134
|
+
url: `api/${res$j}/get`,
|
|
20120
20135
|
method: "get",
|
|
20121
20136
|
params: {
|
|
20122
20137
|
id
|
|
@@ -20325,7 +20340,7 @@ function PermissionDeep(per, perArry) {
|
|
|
20325
20340
|
function getNameI18n(item) {
|
|
20326
20341
|
if (Setting.layout.showNotice) {
|
|
20327
20342
|
let key = "Permission_" + item.url.split("?")[0];
|
|
20328
|
-
let text2 = window.$t(key);
|
|
20343
|
+
let text2 = window.$app.$t(key);
|
|
20329
20344
|
if (text2 == key) {
|
|
20330
20345
|
return item.name;
|
|
20331
20346
|
} else {
|
|
@@ -20338,7 +20353,7 @@ function getNameI18n(item) {
|
|
|
20338
20353
|
function getDescI18n(item) {
|
|
20339
20354
|
if (Setting.layout.showNotice) {
|
|
20340
20355
|
let key = "Permission_" + item.url.split("?")[0] + "_SubName";
|
|
20341
|
-
let text2 = window.$t(key);
|
|
20356
|
+
let text2 = window.$app.$t(key);
|
|
20342
20357
|
if (text2 == key) {
|
|
20343
20358
|
return item.subName;
|
|
20344
20359
|
} else {
|
|
@@ -20795,21 +20810,21 @@ var mixinPage = {
|
|
|
20795
20810
|
}
|
|
20796
20811
|
return data;
|
|
20797
20812
|
},
|
|
20798
|
-
judgeCondition(
|
|
20799
|
-
if (!
|
|
20813
|
+
judgeCondition(setting2, model2) {
|
|
20814
|
+
if (!setting2) {
|
|
20800
20815
|
return false;
|
|
20801
20816
|
}
|
|
20802
|
-
if (
|
|
20803
|
-
for (let i2 = 0; i2 <
|
|
20804
|
-
let data2 = this.parseData(model2,
|
|
20817
|
+
if (setting2.type == "Condition") {
|
|
20818
|
+
for (let i2 = 0; i2 < setting2.condition.length; i2++) {
|
|
20819
|
+
let data2 = this.parseData(model2, setting2.condition[i2].code);
|
|
20805
20820
|
if (data2 == null) {
|
|
20806
20821
|
data2 = "";
|
|
20807
20822
|
}
|
|
20808
|
-
let value =
|
|
20823
|
+
let value = setting2.condition[i2].value;
|
|
20809
20824
|
if (value == null) {
|
|
20810
20825
|
value = "";
|
|
20811
20826
|
}
|
|
20812
|
-
let operator =
|
|
20827
|
+
let operator = setting2.condition[i2].operator;
|
|
20813
20828
|
let result2 = false;
|
|
20814
20829
|
if (operator == "Equal") {
|
|
20815
20830
|
result2 = value.split(",").some((item) => {
|
|
@@ -20837,8 +20852,8 @@ var mixinPage = {
|
|
|
20837
20852
|
}
|
|
20838
20853
|
}
|
|
20839
20854
|
return true;
|
|
20840
|
-
} else if (
|
|
20841
|
-
return this.calculate(
|
|
20855
|
+
} else if (setting2.type == "Expression") {
|
|
20856
|
+
return this.calculate(setting2.expression, model2) == true;
|
|
20842
20857
|
}
|
|
20843
20858
|
},
|
|
20844
20859
|
confirm(title, onConfirm) {
|
|
@@ -20879,43 +20894,99 @@ var mixinPage = {
|
|
|
20879
20894
|
return swal;
|
|
20880
20895
|
},
|
|
20881
20896
|
success(message, onConfirm) {
|
|
20882
|
-
|
|
20883
|
-
|
|
20884
|
-
|
|
20885
|
-
|
|
20886
|
-
});
|
|
20887
|
-
swal.then(() => {
|
|
20897
|
+
if (Setting.layout.alertStyle == "Message") {
|
|
20898
|
+
this.$Message.success({
|
|
20899
|
+
content: this.tParam(message)
|
|
20900
|
+
});
|
|
20888
20901
|
if (typeof onConfirm === "function") {
|
|
20889
20902
|
onConfirm();
|
|
20890
20903
|
}
|
|
20891
|
-
})
|
|
20892
|
-
|
|
20904
|
+
} else if (Setting.layout.alertStyle == "Notice") {
|
|
20905
|
+
this.$Notice.success({
|
|
20906
|
+
title: this.tParam(message)
|
|
20907
|
+
});
|
|
20908
|
+
if (typeof onConfirm === "function") {
|
|
20909
|
+
onConfirm();
|
|
20910
|
+
}
|
|
20911
|
+
} else {
|
|
20912
|
+
var swal = this.$swal.fire({
|
|
20913
|
+
title: this.tParam(message),
|
|
20914
|
+
icon: "success",
|
|
20915
|
+
confirmButtonText: this.$t("Front_Btn_OK")
|
|
20916
|
+
});
|
|
20917
|
+
swal.then(() => {
|
|
20918
|
+
if (typeof onConfirm === "function") {
|
|
20919
|
+
onConfirm();
|
|
20920
|
+
}
|
|
20921
|
+
});
|
|
20922
|
+
return swal;
|
|
20923
|
+
}
|
|
20893
20924
|
},
|
|
20894
20925
|
warning(message, onConfirm) {
|
|
20895
|
-
|
|
20896
|
-
|
|
20897
|
-
|
|
20898
|
-
|
|
20899
|
-
|
|
20900
|
-
|
|
20926
|
+
if (Setting.layout.alertStyle == "Message") {
|
|
20927
|
+
this.$Message.warning({
|
|
20928
|
+
content: this.tParam(message),
|
|
20929
|
+
duration: 5,
|
|
20930
|
+
closable: true
|
|
20931
|
+
});
|
|
20901
20932
|
if (typeof onConfirm === "function") {
|
|
20902
20933
|
onConfirm();
|
|
20903
20934
|
}
|
|
20904
|
-
})
|
|
20905
|
-
|
|
20935
|
+
} else if (Setting.layout.alertStyle == "Notice") {
|
|
20936
|
+
this.$Notice.warning({
|
|
20937
|
+
title: this.tParam(message),
|
|
20938
|
+
duration: 5,
|
|
20939
|
+
closable: true
|
|
20940
|
+
});
|
|
20941
|
+
if (typeof onConfirm === "function") {
|
|
20942
|
+
onConfirm();
|
|
20943
|
+
}
|
|
20944
|
+
} else {
|
|
20945
|
+
var swal = this.$swal.fire({
|
|
20946
|
+
title: this.tParam(message),
|
|
20947
|
+
icon: "warning",
|
|
20948
|
+
confirmButtonText: this.$t("Front_Btn_OK")
|
|
20949
|
+
});
|
|
20950
|
+
swal.then(() => {
|
|
20951
|
+
if (typeof onConfirm === "function") {
|
|
20952
|
+
onConfirm();
|
|
20953
|
+
}
|
|
20954
|
+
});
|
|
20955
|
+
return swal;
|
|
20956
|
+
}
|
|
20906
20957
|
},
|
|
20907
20958
|
error(message, onConfirm) {
|
|
20908
|
-
|
|
20909
|
-
|
|
20910
|
-
|
|
20911
|
-
|
|
20912
|
-
|
|
20913
|
-
|
|
20959
|
+
if (Setting.layout.alertStyle == "Message") {
|
|
20960
|
+
this.$Message.error({
|
|
20961
|
+
content: this.tParam(message),
|
|
20962
|
+
duration: 5,
|
|
20963
|
+
closable: true
|
|
20964
|
+
});
|
|
20914
20965
|
if (typeof onConfirm === "function") {
|
|
20915
20966
|
onConfirm();
|
|
20916
20967
|
}
|
|
20917
|
-
})
|
|
20918
|
-
|
|
20968
|
+
} else if (Setting.layout.alertStyle == "Notice") {
|
|
20969
|
+
this.$Notice.error({
|
|
20970
|
+
title: this.tParam(message),
|
|
20971
|
+
duration: 5,
|
|
20972
|
+
closable: true
|
|
20973
|
+
});
|
|
20974
|
+
if (typeof onConfirm === "function") {
|
|
20975
|
+
onConfirm();
|
|
20976
|
+
}
|
|
20977
|
+
} else {
|
|
20978
|
+
var swal = this.$swal.fire({
|
|
20979
|
+
title: this.tParam(message),
|
|
20980
|
+
icon: "error",
|
|
20981
|
+
confirmButtonText: this.$t("Front_Btn_OK")
|
|
20982
|
+
});
|
|
20983
|
+
swal.then(() => {
|
|
20984
|
+
if (typeof onConfirm === "function") {
|
|
20985
|
+
onConfirm();
|
|
20986
|
+
}
|
|
20987
|
+
});
|
|
20988
|
+
return swal;
|
|
20989
|
+
}
|
|
20919
20990
|
},
|
|
20920
20991
|
getHyperlink(data2, hyperlink) {
|
|
20921
20992
|
while (hyperlink.indexOf("{") >= 0) {
|
|
@@ -20998,7 +21069,7 @@ var _export_sfc = (sfc, props) => {
|
|
|
20998
21069
|
}
|
|
20999
21070
|
return target;
|
|
21000
21071
|
};
|
|
21001
|
-
const _sfc_main$
|
|
21072
|
+
const _sfc_main$1q = {
|
|
21002
21073
|
mixins: [mixinPage],
|
|
21003
21074
|
components: {},
|
|
21004
21075
|
data() {
|
|
@@ -21042,7 +21113,7 @@ const _sfc_main$1p = {
|
|
|
21042
21113
|
}
|
|
21043
21114
|
};
|
|
21044
21115
|
const _withScopeId$1 = (n2) => (pushScopeId("data-v-1c48c1b3"), n2 = n2(), popScopeId(), n2);
|
|
21045
|
-
const _hoisted_1$
|
|
21116
|
+
const _hoisted_1$1b = { class: "signIn" };
|
|
21046
21117
|
const _hoisted_2$H = { class: "box cf" };
|
|
21047
21118
|
const _hoisted_3$C = { class: "right" };
|
|
21048
21119
|
const _hoisted_4$q = { class: "logo cf" };
|
|
@@ -21051,8 +21122,8 @@ const _hoisted_6$f = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ create
|
|
|
21051
21122
|
const _hoisted_7$d = ["placeholder"];
|
|
21052
21123
|
const _hoisted_8$b = ["placeholder"];
|
|
21053
21124
|
const _hoisted_9$a = { class: "cpt" };
|
|
21054
|
-
function _sfc_render$
|
|
21055
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
21125
|
+
function _sfc_render$1q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21126
|
+
return openBlock(), createElementBlock("div", _hoisted_1$1b, [
|
|
21056
21127
|
createElementVNode("div", _hoisted_2$H, [
|
|
21057
21128
|
createElementVNode("div", {
|
|
21058
21129
|
class: "left",
|
|
@@ -21104,30 +21175,30 @@ function _sfc_render$1p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21104
21175
|
createElementVNode("div", _hoisted_9$a, toDisplayString$1(_ctx.sysInfo.copyright), 1)
|
|
21105
21176
|
]);
|
|
21106
21177
|
}
|
|
21107
|
-
var login = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
21108
|
-
var
|
|
21178
|
+
var login = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["render", _sfc_render$1q], ["__scopeId", "data-v-1c48c1b3"], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/account/login.vue"]]);
|
|
21179
|
+
var __glob_46_0 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
21109
21180
|
__proto__: null,
|
|
21110
21181
|
"default": login
|
|
21111
21182
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
21112
|
-
const res$
|
|
21183
|
+
const res$i = "Shortcut";
|
|
21113
21184
|
var shortcutApi = {
|
|
21114
21185
|
queryMy() {
|
|
21115
21186
|
return service({
|
|
21116
|
-
url: `api/${res$
|
|
21187
|
+
url: `api/${res$i}/queryMy`,
|
|
21117
21188
|
method: "post",
|
|
21118
21189
|
data: {}
|
|
21119
21190
|
});
|
|
21120
21191
|
},
|
|
21121
21192
|
save(data2) {
|
|
21122
21193
|
return service({
|
|
21123
|
-
url: `api/${res$
|
|
21194
|
+
url: `api/${res$i}/save`,
|
|
21124
21195
|
method: "post",
|
|
21125
21196
|
data: data2
|
|
21126
21197
|
});
|
|
21127
21198
|
}
|
|
21128
21199
|
};
|
|
21129
21200
|
var shortcut_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".shortcut p[data-v-a9e726d4]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}\n")();
|
|
21130
|
-
const _sfc_main$
|
|
21201
|
+
const _sfc_main$1p = {
|
|
21131
21202
|
name: "home",
|
|
21132
21203
|
mixins: [mixinPage],
|
|
21133
21204
|
components: {},
|
|
@@ -21188,13 +21259,13 @@ const _sfc_main$1o = {
|
|
|
21188
21259
|
}
|
|
21189
21260
|
}
|
|
21190
21261
|
};
|
|
21191
|
-
const _hoisted_1$
|
|
21262
|
+
const _hoisted_1$1a = { class: "ivu-pl-8" };
|
|
21192
21263
|
const _hoisted_2$G = {
|
|
21193
21264
|
class: "ivu-text-center",
|
|
21194
21265
|
style: { "height": "250px" }
|
|
21195
21266
|
};
|
|
21196
21267
|
const _hoisted_3$B = { class: "ivu-pt-8" };
|
|
21197
|
-
function _sfc_render$
|
|
21268
|
+
function _sfc_render$1p(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21198
21269
|
const _component_Avatar = resolveComponent("Avatar");
|
|
21199
21270
|
const _component_Icon = resolveComponent("Icon");
|
|
21200
21271
|
const _component_Tooltip = resolveComponent("Tooltip");
|
|
@@ -21221,7 +21292,7 @@ function _sfc_render$1o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21221
21292
|
[_directive_color, "#1890ff"],
|
|
21222
21293
|
[_directive_bg_color, "#e6f7ff"]
|
|
21223
21294
|
]),
|
|
21224
|
-
createElementVNode("span", _hoisted_1$
|
|
21295
|
+
createElementVNode("span", _hoisted_1$1a, toDisplayString$1(_ctx.$t("Front_Label_Shortcut")), 1)
|
|
21225
21296
|
])
|
|
21226
21297
|
]),
|
|
21227
21298
|
extra: withCtx(() => [
|
|
@@ -21332,8 +21403,8 @@ function _sfc_render$1o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21332
21403
|
}, 8, ["onOnDragDrop"])
|
|
21333
21404
|
]);
|
|
21334
21405
|
}
|
|
21335
|
-
var Shortcut = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
21336
|
-
const _sfc_main$
|
|
21406
|
+
var Shortcut = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["render", _sfc_render$1p], ["__scopeId", "data-v-a9e726d4"], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/home/shortcut.vue"]]);
|
|
21407
|
+
const _sfc_main$1o = {
|
|
21337
21408
|
name: "notice-list",
|
|
21338
21409
|
mixins: [mixinPage],
|
|
21339
21410
|
components: {},
|
|
@@ -21353,13 +21424,13 @@ const _sfc_main$1n = {
|
|
|
21353
21424
|
}
|
|
21354
21425
|
}
|
|
21355
21426
|
};
|
|
21356
|
-
const _hoisted_1$
|
|
21427
|
+
const _hoisted_1$19 = { class: "ivu-pl-8" };
|
|
21357
21428
|
const _hoisted_2$F = ["onClick"];
|
|
21358
21429
|
const _hoisted_3$A = { class: "title" };
|
|
21359
21430
|
const _hoisted_4$p = /* @__PURE__ */ createElementVNode("span", { class: "description" }, null, -1);
|
|
21360
21431
|
const _hoisted_5$j = { style: { "margin": "16px", "max-height": "500px" } };
|
|
21361
21432
|
const _hoisted_6$e = ["innerHTML"];
|
|
21362
|
-
function _sfc_render$
|
|
21433
|
+
function _sfc_render$1o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21363
21434
|
const _component_Avatar = resolveComponent("Avatar");
|
|
21364
21435
|
const _component_view_table = resolveComponent("view-table");
|
|
21365
21436
|
const _component_Card = resolveComponent("Card");
|
|
@@ -21382,7 +21453,7 @@ function _sfc_render$1n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21382
21453
|
[_directive_color, "#1890ff"],
|
|
21383
21454
|
[_directive_bg_color, "#e6f7ff"]
|
|
21384
21455
|
]),
|
|
21385
|
-
createElementVNode("span", _hoisted_1$
|
|
21456
|
+
createElementVNode("span", _hoisted_1$19, toDisplayString$1(_ctx.$t("Front_Label_Notice")), 1)
|
|
21386
21457
|
])
|
|
21387
21458
|
]),
|
|
21388
21459
|
default: withCtx(() => [
|
|
@@ -21446,9 +21517,9 @@ function _sfc_render$1n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21446
21517
|
}, 8, ["modelValue", "mask-closable", "draggable"])
|
|
21447
21518
|
]);
|
|
21448
21519
|
}
|
|
21449
|
-
var NoticeList = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
21520
|
+
var NoticeList = /* @__PURE__ */ _export_sfc(_sfc_main$1o, [["render", _sfc_render$1o], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/home/notice-list.vue"]]);
|
|
21450
21521
|
var home_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => ".stat[data-v-9f6133a2]{display:flex}.stat .icon[data-v-9f6133a2]{width:50%;margin-left:auto;margin-right:auto;text-align:center}.stat .icon i[data-v-9f6133a2]{font-size:64px}.stat .content[data-v-9f6133a2]{width:50%}.stat .content .value1[data-v-9f6133a2]{font-size:12px;float:right;margin-top:18px}.stat .content .value2[data-v-9f6133a2]{font-size:12px;float:right;margin-top:8px}\n")();
|
|
21451
|
-
const _sfc_main$
|
|
21522
|
+
const _sfc_main$1n = {
|
|
21452
21523
|
name: "home",
|
|
21453
21524
|
mixins: [mixinPage],
|
|
21454
21525
|
components: { noticeList: NoticeList, shortcut: Shortcut },
|
|
@@ -21468,7 +21539,7 @@ const _sfc_main$1m = {
|
|
|
21468
21539
|
methods: {}
|
|
21469
21540
|
};
|
|
21470
21541
|
const _withScopeId = (n2) => (pushScopeId("data-v-9f6133a2"), n2 = n2(), popScopeId(), n2);
|
|
21471
|
-
const _hoisted_1$
|
|
21542
|
+
const _hoisted_1$18 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("p", null, [
|
|
21472
21543
|
/* @__PURE__ */ createElementVNode("span", null, "\u68C0\u6D4B\u4EFB\u52A1")
|
|
21473
21544
|
], -1));
|
|
21474
21545
|
const _hoisted_2$E = { class: "stat" };
|
|
@@ -21500,7 +21571,7 @@ const _hoisted_21$2 = { class: "icon" };
|
|
|
21500
21571
|
const _hoisted_22$2 = { class: "content" };
|
|
21501
21572
|
const _hoisted_23$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "value1" }, "\u5F85\u5206\u6D3E", -1));
|
|
21502
21573
|
const _hoisted_24$2 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createElementVNode("div", { class: "value2" }, "\u5DF2\u5206\u6D3E", -1));
|
|
21503
|
-
function _sfc_render$
|
|
21574
|
+
function _sfc_render$1n(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21504
21575
|
const _component_Icon = resolveComponent("Icon");
|
|
21505
21576
|
const _component_Numeral = resolveComponent("Numeral");
|
|
21506
21577
|
const _component_Card = resolveComponent("Card");
|
|
@@ -21535,7 +21606,7 @@ function _sfc_render$1m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21535
21606
|
padding: 12
|
|
21536
21607
|
}, {
|
|
21537
21608
|
title: withCtx(() => [
|
|
21538
|
-
_hoisted_1$
|
|
21609
|
+
_hoisted_1$18
|
|
21539
21610
|
]),
|
|
21540
21611
|
default: withCtx(() => [
|
|
21541
21612
|
createElementVNode("div", _hoisted_2$E, [
|
|
@@ -21742,16 +21813,16 @@ function _sfc_render$1m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
21742
21813
|
})
|
|
21743
21814
|
]);
|
|
21744
21815
|
}
|
|
21745
|
-
var home = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
21746
|
-
var
|
|
21816
|
+
var home = /* @__PURE__ */ _export_sfc(_sfc_main$1n, [["render", _sfc_render$1n], ["__scopeId", "data-v-9f6133a2"], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/common/home.vue"]]);
|
|
21817
|
+
var __glob_46_1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
21747
21818
|
__proto__: null,
|
|
21748
21819
|
"default": home
|
|
21749
21820
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
21750
|
-
const res$
|
|
21821
|
+
const res$h = "CustomModel";
|
|
21751
21822
|
var customModelApi = {
|
|
21752
21823
|
add(modelName, model2) {
|
|
21753
21824
|
return service({
|
|
21754
|
-
url: `api/${res$
|
|
21825
|
+
url: `api/${res$h}/add`,
|
|
21755
21826
|
method: "post",
|
|
21756
21827
|
data: {
|
|
21757
21828
|
modelName,
|
|
@@ -21761,7 +21832,7 @@ var customModelApi = {
|
|
|
21761
21832
|
},
|
|
21762
21833
|
update(modelName, model2) {
|
|
21763
21834
|
return service({
|
|
21764
|
-
url: `api/${res$
|
|
21835
|
+
url: `api/${res$h}/update`,
|
|
21765
21836
|
method: "put",
|
|
21766
21837
|
data: {
|
|
21767
21838
|
modelName,
|
|
@@ -21771,7 +21842,7 @@ var customModelApi = {
|
|
|
21771
21842
|
},
|
|
21772
21843
|
remove(modelName, id) {
|
|
21773
21844
|
return service({
|
|
21774
|
-
url: `api/${res$
|
|
21845
|
+
url: `api/${res$h}/remove`,
|
|
21775
21846
|
method: "delete",
|
|
21776
21847
|
data: {
|
|
21777
21848
|
modelName,
|
|
@@ -21781,7 +21852,7 @@ var customModelApi = {
|
|
|
21781
21852
|
},
|
|
21782
21853
|
batchSave(modelName, data2) {
|
|
21783
21854
|
return service({
|
|
21784
|
-
url: `api/${res$
|
|
21855
|
+
url: `api/${res$h}/batchSave`,
|
|
21785
21856
|
method: "post",
|
|
21786
21857
|
data: {
|
|
21787
21858
|
modelName,
|
|
@@ -21791,7 +21862,7 @@ var customModelApi = {
|
|
|
21791
21862
|
},
|
|
21792
21863
|
get(modelName, id) {
|
|
21793
21864
|
return service({
|
|
21794
|
-
url: `api/${res$
|
|
21865
|
+
url: `api/${res$h}/get`,
|
|
21795
21866
|
method: "get",
|
|
21796
21867
|
params: {
|
|
21797
21868
|
modelName,
|
|
@@ -21802,7 +21873,7 @@ var customModelApi = {
|
|
|
21802
21873
|
query(modelName, filter2) {
|
|
21803
21874
|
let path = filter2.isGroupBy ? "group" : "query";
|
|
21804
21875
|
return service({
|
|
21805
|
-
url: `api/${res$
|
|
21876
|
+
url: `api/${res$h}/${path}`,
|
|
21806
21877
|
method: "post",
|
|
21807
21878
|
data: {
|
|
21808
21879
|
...filter2,
|
|
@@ -21823,14 +21894,14 @@ var customModelApi = {
|
|
|
21823
21894
|
data2.groupColumn = JSON.parse(tableView2.groupColumn);
|
|
21824
21895
|
data2.groupMethod = JSON.parse(tableView2.groupMethod);
|
|
21825
21896
|
await service({
|
|
21826
|
-
url: `api/${res$
|
|
21897
|
+
url: `api/${res$h}/group`,
|
|
21827
21898
|
method: "post",
|
|
21828
21899
|
responseType: "blob",
|
|
21829
21900
|
data: data2
|
|
21830
21901
|
});
|
|
21831
21902
|
} else {
|
|
21832
21903
|
await service({
|
|
21833
|
-
url: `api/${res$
|
|
21904
|
+
url: `api/${res$h}/query`,
|
|
21834
21905
|
method: "post",
|
|
21835
21906
|
responseType: "blob",
|
|
21836
21907
|
data: data2
|
|
@@ -21854,14 +21925,14 @@ var customModelApi = {
|
|
|
21854
21925
|
data2.groupColumn = JSON.parse(tableView2.groupColumn);
|
|
21855
21926
|
data2.groupMethod = JSON.parse(tableView2.groupMethod);
|
|
21856
21927
|
await service({
|
|
21857
|
-
url: `api/${res$
|
|
21928
|
+
url: `api/${res$h}/group`,
|
|
21858
21929
|
method: "post",
|
|
21859
21930
|
responseType: "blob",
|
|
21860
21931
|
data: data2
|
|
21861
21932
|
});
|
|
21862
21933
|
} else {
|
|
21863
21934
|
await service({
|
|
21864
|
-
url: `api/${res$
|
|
21935
|
+
url: `api/${res$h}/query`,
|
|
21865
21936
|
method: "post",
|
|
21866
21937
|
responseType: "blob",
|
|
21867
21938
|
data: data2
|
|
@@ -21875,7 +21946,7 @@ var customModelApi = {
|
|
|
21875
21946
|
try {
|
|
21876
21947
|
LODOP = lodop.getLodop();
|
|
21877
21948
|
} catch (e2) {
|
|
21878
|
-
alert(window.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
21949
|
+
alert(window.$app.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
21879
21950
|
return;
|
|
21880
21951
|
}
|
|
21881
21952
|
let data2 = {
|
|
@@ -21890,14 +21961,14 @@ var customModelApi = {
|
|
|
21890
21961
|
data2.groupColumn = JSON.parse(tableView2.groupColumn);
|
|
21891
21962
|
data2.groupMethod = JSON.parse(tableView2.groupMethod);
|
|
21892
21963
|
result2 = await service({
|
|
21893
|
-
url: `api/${res$
|
|
21964
|
+
url: `api/${res$h}/group`,
|
|
21894
21965
|
method: "post",
|
|
21895
21966
|
responseType: "blob",
|
|
21896
21967
|
data: data2
|
|
21897
21968
|
});
|
|
21898
21969
|
} else {
|
|
21899
21970
|
result2 = await service({
|
|
21900
|
-
url: `api/${res$
|
|
21971
|
+
url: `api/${res$h}/query`,
|
|
21901
21972
|
method: "post",
|
|
21902
21973
|
responseType: "blob",
|
|
21903
21974
|
data: data2
|
|
@@ -21914,11 +21985,11 @@ var customModelApi = {
|
|
|
21914
21985
|
LODOP.PRINTA();
|
|
21915
21986
|
}
|
|
21916
21987
|
};
|
|
21917
|
-
const res$
|
|
21988
|
+
const res$g = "ProcessInst";
|
|
21918
21989
|
var processInstApi = {
|
|
21919
21990
|
addMessage(id, message) {
|
|
21920
21991
|
return service({
|
|
21921
|
-
url: `api/${res$
|
|
21992
|
+
url: `api/${res$g}/addMessage`,
|
|
21922
21993
|
method: "post",
|
|
21923
21994
|
data: {
|
|
21924
21995
|
id,
|
|
@@ -21927,11 +21998,11 @@ var processInstApi = {
|
|
|
21927
21998
|
});
|
|
21928
21999
|
}
|
|
21929
22000
|
};
|
|
21930
|
-
const res$
|
|
22001
|
+
const res$f = "Task";
|
|
21931
22002
|
var taskApi = {
|
|
21932
22003
|
do(id, outcomeID, data2, comment) {
|
|
21933
22004
|
return service({
|
|
21934
|
-
url: `api/${res$
|
|
22005
|
+
url: `api/${res$f}/do`,
|
|
21935
22006
|
method: "post",
|
|
21936
22007
|
data: {
|
|
21937
22008
|
id,
|
|
@@ -21943,7 +22014,7 @@ var taskApi = {
|
|
|
21943
22014
|
},
|
|
21944
22015
|
reject(id, comment) {
|
|
21945
22016
|
return service({
|
|
21946
|
-
url: `api/${res$
|
|
22017
|
+
url: `api/${res$f}/reject`,
|
|
21947
22018
|
method: "post",
|
|
21948
22019
|
data: {
|
|
21949
22020
|
id,
|
|
@@ -21953,7 +22024,7 @@ var taskApi = {
|
|
|
21953
22024
|
},
|
|
21954
22025
|
back(id, comment) {
|
|
21955
22026
|
return service({
|
|
21956
|
-
url: `api/${res$
|
|
22027
|
+
url: `api/${res$f}/back`,
|
|
21957
22028
|
method: "post",
|
|
21958
22029
|
data: {
|
|
21959
22030
|
id,
|
|
@@ -21963,7 +22034,7 @@ var taskApi = {
|
|
|
21963
22034
|
},
|
|
21964
22035
|
redirect(id, targetID, comment) {
|
|
21965
22036
|
return service({
|
|
21966
|
-
url: `api/${res$
|
|
22037
|
+
url: `api/${res$f}/redirect`,
|
|
21967
22038
|
method: "post",
|
|
21968
22039
|
data: {
|
|
21969
22040
|
id,
|
|
@@ -21974,13 +22045,13 @@ var taskApi = {
|
|
|
21974
22045
|
},
|
|
21975
22046
|
queryMy(filter2) {
|
|
21976
22047
|
return service({
|
|
21977
|
-
url: `api/${res$
|
|
22048
|
+
url: `api/${res$f}/queryMy`,
|
|
21978
22049
|
method: "post",
|
|
21979
22050
|
data: filter2
|
|
21980
22051
|
});
|
|
21981
22052
|
}
|
|
21982
22053
|
};
|
|
21983
|
-
const _sfc_main$
|
|
22054
|
+
const _sfc_main$1m = {
|
|
21984
22055
|
mixins: [mixinPage],
|
|
21985
22056
|
components: {},
|
|
21986
22057
|
data() {
|
|
@@ -22212,13 +22283,13 @@ const _sfc_main$1l = {
|
|
|
22212
22283
|
}
|
|
22213
22284
|
}
|
|
22214
22285
|
};
|
|
22215
|
-
const _hoisted_1$
|
|
22286
|
+
const _hoisted_1$17 = { class: "title" };
|
|
22216
22287
|
const _hoisted_2$D = { class: "description" };
|
|
22217
22288
|
const _hoisted_3$y = { class: "ivu-ml-8 ivu-mr-8" };
|
|
22218
22289
|
const _hoisted_4$n = { class: "title" };
|
|
22219
22290
|
const _hoisted_5$h = { class: "description" };
|
|
22220
22291
|
const _hoisted_6$c = { class: "ivu-ml-8 ivu-mr-8" };
|
|
22221
|
-
function _sfc_render$
|
|
22292
|
+
function _sfc_render$1m(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22222
22293
|
const _component_view_form = resolveComponent("view-form");
|
|
22223
22294
|
const _component_Button = resolveComponent("Button");
|
|
22224
22295
|
const _component_Modal = resolveComponent("Modal");
|
|
@@ -22244,7 +22315,7 @@ function _sfc_render$1l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22244
22315
|
createElementVNode("div", null, [
|
|
22245
22316
|
createCommentVNode("\r\n @slot \u9875\u5934\r\n "),
|
|
22246
22317
|
renderSlot(_ctx.$slots, "header", {}, () => [
|
|
22247
|
-
createElementVNode("span", _hoisted_1$
|
|
22318
|
+
createElementVNode("span", _hoisted_1$17, toDisplayString$1($data.name), 1),
|
|
22248
22319
|
createElementVNode("span", _hoisted_2$D, toDisplayString$1($data.description), 1)
|
|
22249
22320
|
])
|
|
22250
22321
|
])
|
|
@@ -22456,12 +22527,12 @@ function _sfc_render$1l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22456
22527
|
}, 8, ["modelValue"])
|
|
22457
22528
|
]);
|
|
22458
22529
|
}
|
|
22459
|
-
var taskForm = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
22460
|
-
var
|
|
22530
|
+
var taskForm = /* @__PURE__ */ _export_sfc(_sfc_main$1m, [["render", _sfc_render$1m], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/common/task-form.vue"]]);
|
|
22531
|
+
var __glob_46_2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22461
22532
|
__proto__: null,
|
|
22462
22533
|
"default": taskForm
|
|
22463
22534
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
22464
|
-
const _sfc_main$
|
|
22535
|
+
const _sfc_main$1l = {
|
|
22465
22536
|
name: "common-myTask",
|
|
22466
22537
|
mixins: [mixinPage],
|
|
22467
22538
|
components: { taskForm },
|
|
@@ -22478,15 +22549,15 @@ const _sfc_main$1k = {
|
|
|
22478
22549
|
},
|
|
22479
22550
|
methods: {}
|
|
22480
22551
|
};
|
|
22481
|
-
const _hoisted_1$
|
|
22482
|
-
function _sfc_render$
|
|
22552
|
+
const _hoisted_1$16 = { class: "i-layout-page-header" };
|
|
22553
|
+
function _sfc_render$1l(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22483
22554
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
22484
22555
|
const _component_Button = resolveComponent("Button");
|
|
22485
22556
|
const _component_view_table = resolveComponent("view-table");
|
|
22486
22557
|
const _component_Card = resolveComponent("Card");
|
|
22487
22558
|
const _component_task_form = resolveComponent("task-form");
|
|
22488
22559
|
return openBlock(), createElementBlock("div", null, [
|
|
22489
|
-
createElementVNode("div", _hoisted_1$
|
|
22560
|
+
createElementVNode("div", _hoisted_1$16, [
|
|
22490
22561
|
createVNode$1(_component_PageHeader, {
|
|
22491
22562
|
title: _ctx.$route.meta.title,
|
|
22492
22563
|
content: _ctx.$route.meta.description,
|
|
@@ -22524,12 +22595,12 @@ function _sfc_render$1k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22524
22595
|
}, null, 512)
|
|
22525
22596
|
]);
|
|
22526
22597
|
}
|
|
22527
|
-
var todo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
22528
|
-
var
|
|
22598
|
+
var todo = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["render", _sfc_render$1l], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/common/todo.vue"]]);
|
|
22599
|
+
var __glob_46_3 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22529
22600
|
__proto__: null,
|
|
22530
22601
|
"default": todo
|
|
22531
22602
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
22532
|
-
const _sfc_main$
|
|
22603
|
+
const _sfc_main$1k = {
|
|
22533
22604
|
name: "system-apiLog",
|
|
22534
22605
|
mixins: [mixinPage],
|
|
22535
22606
|
components: {},
|
|
@@ -22559,11 +22630,11 @@ const _sfc_main$1j = {
|
|
|
22559
22630
|
}
|
|
22560
22631
|
}
|
|
22561
22632
|
};
|
|
22562
|
-
const _hoisted_1$
|
|
22633
|
+
const _hoisted_1$15 = { class: "i-layout-page-header" };
|
|
22563
22634
|
const _hoisted_2$C = { class: "title" };
|
|
22564
22635
|
const _hoisted_3$x = { class: "description" };
|
|
22565
22636
|
const _hoisted_4$m = { class: "ivu-ml-8 ivu-mr-8" };
|
|
22566
|
-
function _sfc_render$
|
|
22637
|
+
function _sfc_render$1k(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22567
22638
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
22568
22639
|
const _component_Button = resolveComponent("Button");
|
|
22569
22640
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -22572,7 +22643,7 @@ function _sfc_render$1j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22572
22643
|
const _component_Row = resolveComponent("Row");
|
|
22573
22644
|
const _component_Modal = resolveComponent("Modal");
|
|
22574
22645
|
return openBlock(), createElementBlock("div", null, [
|
|
22575
|
-
createElementVNode("div", _hoisted_1$
|
|
22646
|
+
createElementVNode("div", _hoisted_1$15, [
|
|
22576
22647
|
createVNode$1(_component_PageHeader, {
|
|
22577
22648
|
title: _ctx.$route.meta.title,
|
|
22578
22649
|
content: _ctx.$route.meta.description,
|
|
@@ -22665,8 +22736,8 @@ function _sfc_render$1j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22665
22736
|
}, 8, ["modelValue", "mask-closable", "draggable"])
|
|
22666
22737
|
]);
|
|
22667
22738
|
}
|
|
22668
|
-
var apiLog = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
22669
|
-
var
|
|
22739
|
+
var apiLog = /* @__PURE__ */ _export_sfc(_sfc_main$1k, [["render", _sfc_render$1k], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/apiLog.vue"]]);
|
|
22740
|
+
var __glob_46_4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
22670
22741
|
__proto__: null,
|
|
22671
22742
|
"default": apiLog
|
|
22672
22743
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -22748,7 +22819,7 @@ var getObjColumn = (code, data2) => {
|
|
|
22748
22819
|
}
|
|
22749
22820
|
return null;
|
|
22750
22821
|
};
|
|
22751
|
-
const _sfc_main$
|
|
22822
|
+
const _sfc_main$1j = {
|
|
22752
22823
|
mixins: [mixinPage],
|
|
22753
22824
|
components: {},
|
|
22754
22825
|
data() {
|
|
@@ -22827,10 +22898,10 @@ const _sfc_main$1i = {
|
|
|
22827
22898
|
}
|
|
22828
22899
|
}
|
|
22829
22900
|
};
|
|
22830
|
-
const _hoisted_1$
|
|
22901
|
+
const _hoisted_1$14 = { class: "title" };
|
|
22831
22902
|
const _hoisted_2$B = { class: "description" };
|
|
22832
22903
|
const _hoisted_3$w = { class: "ivu-ml-8 ivu-mr-8" };
|
|
22833
|
-
function _sfc_render$
|
|
22904
|
+
function _sfc_render$1j(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22834
22905
|
const _component_Tree = resolveComponent("Tree");
|
|
22835
22906
|
const _component_Button = resolveComponent("Button");
|
|
22836
22907
|
const _component_Modal = resolveComponent("Modal");
|
|
@@ -22846,7 +22917,7 @@ function _sfc_render$1i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22846
22917
|
}, {
|
|
22847
22918
|
header: withCtx(() => [
|
|
22848
22919
|
createElementVNode("div", null, [
|
|
22849
|
-
createElementVNode("span", _hoisted_1$
|
|
22920
|
+
createElementVNode("span", _hoisted_1$14, toDisplayString$1(_ctx.$t("Front_Label_Column_Select")), 1),
|
|
22850
22921
|
createElementVNode("span", _hoisted_2$B, toDisplayString$1(_ctx.$t("Front_Label_Column_Select_Desc")), 1)
|
|
22851
22922
|
])
|
|
22852
22923
|
]),
|
|
@@ -22875,8 +22946,8 @@ function _sfc_render$1i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22875
22946
|
_: 1
|
|
22876
22947
|
}, 8, ["modelValue", "mask-closable", "draggable"]);
|
|
22877
22948
|
}
|
|
22878
|
-
var columnCheck = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
22879
|
-
const _sfc_main$
|
|
22949
|
+
var columnCheck = /* @__PURE__ */ _export_sfc(_sfc_main$1j, [["render", _sfc_render$1j], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/view/column-check.vue"]]);
|
|
22950
|
+
const _sfc_main$1i = {
|
|
22880
22951
|
name: "system-applicationType",
|
|
22881
22952
|
mixins: [mixinPage],
|
|
22882
22953
|
components: { columnCheck },
|
|
@@ -22970,11 +23041,11 @@ const _sfc_main$1h = {
|
|
|
22970
23041
|
},
|
|
22971
23042
|
notificationSetting(row) {
|
|
22972
23043
|
this.applicationType = row;
|
|
22973
|
-
let
|
|
23044
|
+
let setting2 = {};
|
|
22974
23045
|
if (!!(row.notificationSetting || "").trim()) {
|
|
22975
|
-
|
|
23046
|
+
setting2 = JSON.parse(row.notificationSetting);
|
|
22976
23047
|
}
|
|
22977
|
-
this.$refs.notificationSettingForm.open(
|
|
23048
|
+
this.$refs.notificationSettingForm.open(setting2);
|
|
22978
23049
|
},
|
|
22979
23050
|
async saveSetting() {
|
|
22980
23051
|
let isOK = await this.$refs.notificationSettingForm.validate();
|
|
@@ -22994,10 +23065,10 @@ const _sfc_main$1h = {
|
|
|
22994
23065
|
}
|
|
22995
23066
|
}
|
|
22996
23067
|
};
|
|
22997
|
-
const _hoisted_1$
|
|
23068
|
+
const _hoisted_1$13 = { class: "i-layout-page-header" };
|
|
22998
23069
|
const _hoisted_2$A = { key: 0 };
|
|
22999
23070
|
const _hoisted_3$v = { class: "title" };
|
|
23000
|
-
function _sfc_render$
|
|
23071
|
+
function _sfc_render$1i(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23001
23072
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23002
23073
|
const _component_Button = resolveComponent("Button");
|
|
23003
23074
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -23007,7 +23078,7 @@ function _sfc_render$1h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23007
23078
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23008
23079
|
const _component_column_check = resolveComponent("column-check");
|
|
23009
23080
|
return openBlock(), createElementBlock("div", null, [
|
|
23010
|
-
createElementVNode("div", _hoisted_1$
|
|
23081
|
+
createElementVNode("div", _hoisted_1$13, [
|
|
23011
23082
|
createVNode$1(_component_PageHeader, {
|
|
23012
23083
|
title: _ctx.$route.meta.title,
|
|
23013
23084
|
content: _ctx.$route.meta.description,
|
|
@@ -23140,12 +23211,12 @@ function _sfc_render$1h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23140
23211
|
createVNode$1(_component_column_check, { ref: "columnCheck" }, null, 512)
|
|
23141
23212
|
]);
|
|
23142
23213
|
}
|
|
23143
|
-
var applicationType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23144
|
-
var
|
|
23214
|
+
var applicationType = /* @__PURE__ */ _export_sfc(_sfc_main$1i, [["render", _sfc_render$1i], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/applicationType.vue"]]);
|
|
23215
|
+
var __glob_46_5 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23145
23216
|
__proto__: null,
|
|
23146
23217
|
"default": applicationType
|
|
23147
23218
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23148
|
-
const _sfc_main$
|
|
23219
|
+
const _sfc_main$1h = {
|
|
23149
23220
|
name: "system-page",
|
|
23150
23221
|
mixins: [mixinPage],
|
|
23151
23222
|
components: {},
|
|
@@ -23157,14 +23228,14 @@ const _sfc_main$1g = {
|
|
|
23157
23228
|
},
|
|
23158
23229
|
methods: {}
|
|
23159
23230
|
};
|
|
23160
|
-
const _hoisted_1$
|
|
23161
|
-
function _sfc_render$
|
|
23231
|
+
const _hoisted_1$12 = { class: "i-layout-page-header" };
|
|
23232
|
+
function _sfc_render$1h(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23162
23233
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23163
23234
|
const _component_view_table = resolveComponent("view-table");
|
|
23164
23235
|
const _component_Card = resolveComponent("Card");
|
|
23165
23236
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23166
23237
|
return openBlock(), createElementBlock("div", null, [
|
|
23167
|
-
createElementVNode("div", _hoisted_1$
|
|
23238
|
+
createElementVNode("div", _hoisted_1$12, [
|
|
23168
23239
|
createVNode$1(_component_PageHeader, {
|
|
23169
23240
|
title: _ctx.$route.meta.title,
|
|
23170
23241
|
content: _ctx.$route.meta.description,
|
|
@@ -23199,12 +23270,12 @@ function _sfc_render$1g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23199
23270
|
createCommentVNode(' <modal-table ref="componentTable"\r\n view-code="CustomPageComponent"\r\n @create="(param)=>$refs.componentForm.openDefault(param)"\r\n @edit="({row, index})=>$refs.componentForm.open(row)">\r\n <template slot-scope="{ row }"\r\n slot="command">\r\n <Button size="small"\r\n title="\u9875\u9762\u63A7\u4EF6"\r\n type="info"\r\n custom-icon="fa fa-clone"\r\n @click="$refs.controlTable.open({customPageID: row.customPageID, customPageComponentID: row.id})"></Button>\r\n </template>\r\n </modal-table>\r\n <modal-form ref="componentForm"\r\n view-code="CustomPageComponentEdit"\r\n @on-after-save="$refs.componentTable.loadData()" />\r\n <modal-table ref="controlTable"\r\n view-code="CustomPageControl"\r\n @create="(param)=>$refs.controlForm.openDefault(param)"\r\n @edit="({row, index})=>$refs.controlForm.open(row)" />\r\n <modal-form ref="controlForm"\r\n view-code="CustomPageControlEdit"\r\n @on-after-save="$refs.controlTable.loadData()" /> ')
|
|
23200
23271
|
]);
|
|
23201
23272
|
}
|
|
23202
|
-
var customPage = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23203
|
-
var
|
|
23273
|
+
var customPage = /* @__PURE__ */ _export_sfc(_sfc_main$1h, [["render", _sfc_render$1h], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/customPage.vue"]]);
|
|
23274
|
+
var __glob_46_6 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23204
23275
|
__proto__: null,
|
|
23205
23276
|
"default": customPage
|
|
23206
23277
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23207
|
-
const _sfc_main$
|
|
23278
|
+
const _sfc_main$1g = {
|
|
23208
23279
|
name: "system-customTable",
|
|
23209
23280
|
mixins: [mixinPage],
|
|
23210
23281
|
components: {},
|
|
@@ -23267,8 +23338,8 @@ const _sfc_main$1f = {
|
|
|
23267
23338
|
}
|
|
23268
23339
|
}
|
|
23269
23340
|
};
|
|
23270
|
-
const _hoisted_1
|
|
23271
|
-
function _sfc_render$
|
|
23341
|
+
const _hoisted_1$11 = { class: "i-layout-page-header" };
|
|
23342
|
+
function _sfc_render$1g(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23272
23343
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23273
23344
|
const _component_Button = resolveComponent("Button");
|
|
23274
23345
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -23276,7 +23347,7 @@ function _sfc_render$1f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23276
23347
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23277
23348
|
const _component_modal_table = resolveComponent("modal-table");
|
|
23278
23349
|
return openBlock(), createElementBlock("div", null, [
|
|
23279
|
-
createElementVNode("div", _hoisted_1
|
|
23350
|
+
createElementVNode("div", _hoisted_1$11, [
|
|
23280
23351
|
createVNode$1(_component_PageHeader, {
|
|
23281
23352
|
title: _ctx.$route.meta.title,
|
|
23282
23353
|
content: _ctx.$route.meta.description,
|
|
@@ -23339,12 +23410,12 @@ function _sfc_render$1f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23339
23410
|
}, null, 8, ["onOnChange"])
|
|
23340
23411
|
]);
|
|
23341
23412
|
}
|
|
23342
|
-
var customTable = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23343
|
-
var
|
|
23413
|
+
var customTable = /* @__PURE__ */ _export_sfc(_sfc_main$1g, [["render", _sfc_render$1g], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/customTable.vue"]]);
|
|
23414
|
+
var __glob_46_7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23344
23415
|
__proto__: null,
|
|
23345
23416
|
"default": customTable
|
|
23346
23417
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23347
|
-
const _sfc_main$
|
|
23418
|
+
const _sfc_main$1f = {
|
|
23348
23419
|
name: "system-dict",
|
|
23349
23420
|
mixins: [mixinPage],
|
|
23350
23421
|
components: {},
|
|
@@ -23366,14 +23437,14 @@ const _sfc_main$1e = {
|
|
|
23366
23437
|
}
|
|
23367
23438
|
}
|
|
23368
23439
|
};
|
|
23369
|
-
const _hoisted_1$
|
|
23370
|
-
function _sfc_render$
|
|
23440
|
+
const _hoisted_1$10 = { class: "i-layout-page-header" };
|
|
23441
|
+
function _sfc_render$1f(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23371
23442
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23372
23443
|
const _component_view_table = resolveComponent("view-table");
|
|
23373
23444
|
const _component_Card = resolveComponent("Card");
|
|
23374
23445
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23375
23446
|
return openBlock(), createElementBlock("div", null, [
|
|
23376
|
-
createElementVNode("div", _hoisted_1$
|
|
23447
|
+
createElementVNode("div", _hoisted_1$10, [
|
|
23377
23448
|
createVNode$1(_component_PageHeader, {
|
|
23378
23449
|
title: _ctx.$route.meta.title,
|
|
23379
23450
|
content: _ctx.$route.meta.description,
|
|
@@ -23402,16 +23473,16 @@ function _sfc_render$1e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23402
23473
|
}, null, 512)
|
|
23403
23474
|
]);
|
|
23404
23475
|
}
|
|
23405
|
-
var dict = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23406
|
-
var
|
|
23476
|
+
var dict = /* @__PURE__ */ _export_sfc(_sfc_main$1f, [["render", _sfc_render$1f], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/dict.vue"]]);
|
|
23477
|
+
var __glob_46_8 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23407
23478
|
__proto__: null,
|
|
23408
23479
|
"default": dict
|
|
23409
23480
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23410
|
-
const res$
|
|
23481
|
+
const res$e = "DictType";
|
|
23411
23482
|
var dictTypeApi = {
|
|
23412
23483
|
async exportFile(ids) {
|
|
23413
23484
|
const result2 = await service({
|
|
23414
|
-
url: `api/${res$
|
|
23485
|
+
url: `api/${res$e}/exportFile`,
|
|
23415
23486
|
method: "post",
|
|
23416
23487
|
responseType: "blob",
|
|
23417
23488
|
data: {
|
|
@@ -23424,7 +23495,7 @@ var dictTypeApi = {
|
|
|
23424
23495
|
saveAs(blob, "Dict-" + format$3(new Date(), "yyyyMMddHHmmss") + ".dict");
|
|
23425
23496
|
}
|
|
23426
23497
|
};
|
|
23427
|
-
const _sfc_main$
|
|
23498
|
+
const _sfc_main$1e = {
|
|
23428
23499
|
name: "system-dictType",
|
|
23429
23500
|
mixins: [mixinPage],
|
|
23430
23501
|
components: {},
|
|
@@ -23456,8 +23527,8 @@ const _sfc_main$1d = {
|
|
|
23456
23527
|
}
|
|
23457
23528
|
}
|
|
23458
23529
|
};
|
|
23459
|
-
const _hoisted_1
|
|
23460
|
-
function _sfc_render$
|
|
23530
|
+
const _hoisted_1$$ = { class: "i-layout-page-header" };
|
|
23531
|
+
function _sfc_render$1e(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23461
23532
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23462
23533
|
const _component_Button = resolveComponent("Button");
|
|
23463
23534
|
const _component_file_upload = resolveComponent("file-upload");
|
|
@@ -23465,7 +23536,7 @@ function _sfc_render$1d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23465
23536
|
const _component_Card = resolveComponent("Card");
|
|
23466
23537
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23467
23538
|
return openBlock(), createElementBlock("div", null, [
|
|
23468
|
-
createElementVNode("div", _hoisted_1
|
|
23539
|
+
createElementVNode("div", _hoisted_1$$, [
|
|
23469
23540
|
createVNode$1(_component_PageHeader, {
|
|
23470
23541
|
title: _ctx.$route.meta.title,
|
|
23471
23542
|
content: _ctx.$route.meta.description,
|
|
@@ -23529,22 +23600,22 @@ function _sfc_render$1d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23529
23600
|
}, null, 512)
|
|
23530
23601
|
]);
|
|
23531
23602
|
}
|
|
23532
|
-
var dictType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23533
|
-
var
|
|
23603
|
+
var dictType = /* @__PURE__ */ _export_sfc(_sfc_main$1e, [["render", _sfc_render$1e], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/dictType.vue"]]);
|
|
23604
|
+
var __glob_46_9 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23534
23605
|
__proto__: null,
|
|
23535
23606
|
"default": dictType
|
|
23536
23607
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23537
|
-
const res$
|
|
23608
|
+
const res$d = "EntityView";
|
|
23538
23609
|
var entityViewApi = {
|
|
23539
23610
|
save(data2) {
|
|
23540
23611
|
return service({
|
|
23541
|
-
url: `api/${res$
|
|
23612
|
+
url: `api/${res$d}/save`,
|
|
23542
23613
|
method: "post",
|
|
23543
23614
|
data: data2
|
|
23544
23615
|
});
|
|
23545
23616
|
}
|
|
23546
23617
|
};
|
|
23547
|
-
const _sfc_main$
|
|
23618
|
+
const _sfc_main$1d = {
|
|
23548
23619
|
name: "system-entityView",
|
|
23549
23620
|
mixins: [mixinPage],
|
|
23550
23621
|
components: {},
|
|
@@ -23564,14 +23635,14 @@ const _sfc_main$1c = {
|
|
|
23564
23635
|
}
|
|
23565
23636
|
}
|
|
23566
23637
|
};
|
|
23567
|
-
const _hoisted_1$
|
|
23568
|
-
function _sfc_render$
|
|
23638
|
+
const _hoisted_1$_ = { class: "i-layout-page-header" };
|
|
23639
|
+
function _sfc_render$1d(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23569
23640
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23570
23641
|
const _component_Button = resolveComponent("Button");
|
|
23571
23642
|
const _component_view_table = resolveComponent("view-table");
|
|
23572
23643
|
const _component_Card = resolveComponent("Card");
|
|
23573
23644
|
return openBlock(), createElementBlock("div", null, [
|
|
23574
|
-
createElementVNode("div", _hoisted_1$
|
|
23645
|
+
createElementVNode("div", _hoisted_1$_, [
|
|
23575
23646
|
createVNode$1(_component_PageHeader, {
|
|
23576
23647
|
title: _ctx.$route.meta.title,
|
|
23577
23648
|
content: _ctx.$route.meta.description,
|
|
@@ -23608,12 +23679,12 @@ function _sfc_render$1c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23608
23679
|
})
|
|
23609
23680
|
]);
|
|
23610
23681
|
}
|
|
23611
|
-
var entityView = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23612
|
-
var
|
|
23682
|
+
var entityView = /* @__PURE__ */ _export_sfc(_sfc_main$1d, [["render", _sfc_render$1d], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/entityView.vue"]]);
|
|
23683
|
+
var __glob_46_10 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23613
23684
|
__proto__: null,
|
|
23614
23685
|
"default": entityView
|
|
23615
23686
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23616
|
-
const _sfc_main$
|
|
23687
|
+
const _sfc_main$1c = {
|
|
23617
23688
|
name: "system-extendColumn",
|
|
23618
23689
|
mixins: [mixinPage],
|
|
23619
23690
|
components: {},
|
|
@@ -23678,8 +23749,8 @@ const _sfc_main$1b = {
|
|
|
23678
23749
|
}
|
|
23679
23750
|
}
|
|
23680
23751
|
};
|
|
23681
|
-
const _hoisted_1$
|
|
23682
|
-
function _sfc_render$
|
|
23752
|
+
const _hoisted_1$Z = { class: "i-layout-page-header" };
|
|
23753
|
+
function _sfc_render$1c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23683
23754
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23684
23755
|
const _component_Button = resolveComponent("Button");
|
|
23685
23756
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -23687,7 +23758,7 @@ function _sfc_render$1b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23687
23758
|
const _component_modal_table = resolveComponent("modal-table");
|
|
23688
23759
|
const _component_modal_form = resolveComponent("modal-form");
|
|
23689
23760
|
return openBlock(), createElementBlock("div", null, [
|
|
23690
|
-
createElementVNode("div", _hoisted_1$
|
|
23761
|
+
createElementVNode("div", _hoisted_1$Z, [
|
|
23691
23762
|
createVNode$1(_component_PageHeader, {
|
|
23692
23763
|
title: _ctx.$route.meta.title,
|
|
23693
23764
|
content: _ctx.$route.meta.description,
|
|
@@ -23744,16 +23815,16 @@ function _sfc_render$1b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23744
23815
|
}, null, 8, ["onOnChange"])
|
|
23745
23816
|
]);
|
|
23746
23817
|
}
|
|
23747
|
-
var extendColumn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23748
|
-
var
|
|
23818
|
+
var extendColumn = /* @__PURE__ */ _export_sfc(_sfc_main$1c, [["render", _sfc_render$1c], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/extendColumn.vue"]]);
|
|
23819
|
+
var __glob_46_11 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23749
23820
|
__proto__: null,
|
|
23750
23821
|
"default": extendColumn
|
|
23751
23822
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23752
|
-
const res$
|
|
23823
|
+
const res$c = "ViewColumn";
|
|
23753
23824
|
var viewColumnApi = {
|
|
23754
23825
|
queryByDataViewID(dataViewID) {
|
|
23755
23826
|
return service({
|
|
23756
|
-
url: `api/${res$
|
|
23827
|
+
url: `api/${res$c}/query`,
|
|
23757
23828
|
method: "post",
|
|
23758
23829
|
data: {
|
|
23759
23830
|
dataViewID,
|
|
@@ -23762,7 +23833,7 @@ var viewColumnApi = {
|
|
|
23762
23833
|
});
|
|
23763
23834
|
}
|
|
23764
23835
|
};
|
|
23765
|
-
const _sfc_main$
|
|
23836
|
+
const _sfc_main$1b = {
|
|
23766
23837
|
name: "system-ui-formView",
|
|
23767
23838
|
mixins: [mixinPage],
|
|
23768
23839
|
components: {},
|
|
@@ -23846,8 +23917,8 @@ const _sfc_main$1a = {
|
|
|
23846
23917
|
}
|
|
23847
23918
|
}
|
|
23848
23919
|
};
|
|
23849
|
-
const _hoisted_1$
|
|
23850
|
-
function _sfc_render$
|
|
23920
|
+
const _hoisted_1$Y = { class: "i-layout-page-header" };
|
|
23921
|
+
function _sfc_render$1b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23851
23922
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
23852
23923
|
const _component_Button = resolveComponent("Button");
|
|
23853
23924
|
const _component_file_upload = resolveComponent("file-upload");
|
|
@@ -23857,7 +23928,7 @@ function _sfc_render$1a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23857
23928
|
const _component_form_setting = resolveComponent("form-setting");
|
|
23858
23929
|
const _component_form_setting_layout = resolveComponent("form-setting-layout");
|
|
23859
23930
|
return openBlock(), createElementBlock("div", null, [
|
|
23860
|
-
createElementVNode("div", _hoisted_1$
|
|
23931
|
+
createElementVNode("div", _hoisted_1$Y, [
|
|
23861
23932
|
createVNode$1(_component_PageHeader, {
|
|
23862
23933
|
title: _ctx.$route.meta.title,
|
|
23863
23934
|
content: _ctx.$route.meta.description,
|
|
@@ -23965,12 +24036,12 @@ function _sfc_render$1a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
23965
24036
|
}, null, 8, ["onListMode"])
|
|
23966
24037
|
]);
|
|
23967
24038
|
}
|
|
23968
|
-
var formView = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
23969
|
-
var
|
|
24039
|
+
var formView = /* @__PURE__ */ _export_sfc(_sfc_main$1b, [["render", _sfc_render$1b], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/formView.vue"]]);
|
|
24040
|
+
var __glob_46_12 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
23970
24041
|
__proto__: null,
|
|
23971
24042
|
"default": formView
|
|
23972
24043
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
23973
|
-
const _sfc_main$
|
|
24044
|
+
const _sfc_main$1a = {
|
|
23974
24045
|
name: "system-i18nText",
|
|
23975
24046
|
mixins: [mixinPage],
|
|
23976
24047
|
components: {},
|
|
@@ -24028,12 +24099,12 @@ const _sfc_main$19 = {
|
|
|
24028
24099
|
}
|
|
24029
24100
|
}
|
|
24030
24101
|
};
|
|
24031
|
-
const _hoisted_1$
|
|
24102
|
+
const _hoisted_1$X = { class: "i-layout-page-header" };
|
|
24032
24103
|
const _hoisted_2$z = {
|
|
24033
24104
|
key: 0,
|
|
24034
24105
|
style: { "margin-bottom": "8px", "text-align": "center" }
|
|
24035
24106
|
};
|
|
24036
|
-
function _sfc_render$
|
|
24107
|
+
function _sfc_render$1a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24037
24108
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24038
24109
|
const _component_view_form = resolveComponent("view-form");
|
|
24039
24110
|
const _component_Button = resolveComponent("Button");
|
|
@@ -24041,7 +24112,7 @@ function _sfc_render$19(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24041
24112
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24042
24113
|
const _component_Card = resolveComponent("Card");
|
|
24043
24114
|
return openBlock(), createElementBlock("div", null, [
|
|
24044
|
-
createElementVNode("div", _hoisted_1$
|
|
24115
|
+
createElementVNode("div", _hoisted_1$X, [
|
|
24045
24116
|
createVNode$1(_component_PageHeader, {
|
|
24046
24117
|
title: _ctx.$route.meta.title,
|
|
24047
24118
|
content: _ctx.$route.meta.description,
|
|
@@ -24111,12 +24182,12 @@ function _sfc_render$19(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24111
24182
|
})
|
|
24112
24183
|
]);
|
|
24113
24184
|
}
|
|
24114
|
-
var i18nText = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24115
|
-
var
|
|
24185
|
+
var i18nText = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["render", _sfc_render$1a], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/i18nText.vue"]]);
|
|
24186
|
+
var __glob_46_13 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24116
24187
|
__proto__: null,
|
|
24117
24188
|
"default": i18nText
|
|
24118
24189
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24119
|
-
const _sfc_main$
|
|
24190
|
+
const _sfc_main$19 = {
|
|
24120
24191
|
name: "system-log",
|
|
24121
24192
|
mixins: [mixinPage],
|
|
24122
24193
|
components: {},
|
|
@@ -24136,18 +24207,18 @@ const _sfc_main$18 = {
|
|
|
24136
24207
|
}
|
|
24137
24208
|
}
|
|
24138
24209
|
};
|
|
24139
|
-
const _hoisted_1$
|
|
24210
|
+
const _hoisted_1$W = { class: "i-layout-page-header" };
|
|
24140
24211
|
const _hoisted_2$y = { class: "title" };
|
|
24141
24212
|
const _hoisted_3$u = { class: "description" };
|
|
24142
24213
|
const _hoisted_4$l = { class: "ivu-ml-8 ivu-mr-8" };
|
|
24143
|
-
function _sfc_render$
|
|
24214
|
+
function _sfc_render$19(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24144
24215
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24145
24216
|
const _component_Button = resolveComponent("Button");
|
|
24146
24217
|
const _component_view_table = resolveComponent("view-table");
|
|
24147
24218
|
const _component_Card = resolveComponent("Card");
|
|
24148
24219
|
const _component_Modal = resolveComponent("Modal");
|
|
24149
24220
|
return openBlock(), createElementBlock("div", null, [
|
|
24150
|
-
createElementVNode("div", _hoisted_1$
|
|
24221
|
+
createElementVNode("div", _hoisted_1$W, [
|
|
24151
24222
|
createVNode$1(_component_PageHeader, {
|
|
24152
24223
|
title: _ctx.$route.meta.title,
|
|
24153
24224
|
content: _ctx.$route.meta.description,
|
|
@@ -24217,12 +24288,29 @@ function _sfc_render$18(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24217
24288
|
}, 8, ["modelValue", "mask-closable", "draggable"])
|
|
24218
24289
|
]);
|
|
24219
24290
|
}
|
|
24220
|
-
var log$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24221
|
-
var
|
|
24291
|
+
var log$1 = /* @__PURE__ */ _export_sfc(_sfc_main$19, [["render", _sfc_render$19], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/log.vue"]]);
|
|
24292
|
+
var __glob_46_14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24222
24293
|
__proto__: null,
|
|
24223
24294
|
"default": log$1
|
|
24224
24295
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24225
|
-
const
|
|
24296
|
+
const res$b = "MailTemplate";
|
|
24297
|
+
var mailTemplateApi = {
|
|
24298
|
+
async exportFile(ids) {
|
|
24299
|
+
const result2 = await service({
|
|
24300
|
+
url: `api/${res$b}/exportFile`,
|
|
24301
|
+
method: "post",
|
|
24302
|
+
responseType: "blob",
|
|
24303
|
+
data: {
|
|
24304
|
+
ids
|
|
24305
|
+
}
|
|
24306
|
+
});
|
|
24307
|
+
const blob = new Blob([result2], {
|
|
24308
|
+
type: "application/octet-stream"
|
|
24309
|
+
});
|
|
24310
|
+
saveAs(blob, "MailTemplate-" + format$3(new Date(), "yyyyMMddHHmmss") + ".mt");
|
|
24311
|
+
}
|
|
24312
|
+
};
|
|
24313
|
+
const _sfc_main$18 = {
|
|
24226
24314
|
name: "system-mailTemplate",
|
|
24227
24315
|
mixins: [mixinPage],
|
|
24228
24316
|
components: {},
|
|
@@ -24232,16 +24320,38 @@ const _sfc_main$17 = {
|
|
|
24232
24320
|
computed: {},
|
|
24233
24321
|
created() {
|
|
24234
24322
|
},
|
|
24235
|
-
methods: {
|
|
24323
|
+
methods: {
|
|
24324
|
+
exportFile() {
|
|
24325
|
+
let ids = this.$refs.table.getSelected().map((x) => {
|
|
24326
|
+
return x.id;
|
|
24327
|
+
});
|
|
24328
|
+
if (ids.length > 0) {
|
|
24329
|
+
mailTemplateApi.exportFile(ids);
|
|
24330
|
+
} else {
|
|
24331
|
+
this.error("Front_Msg_Please_Select_Export_Item");
|
|
24332
|
+
}
|
|
24333
|
+
},
|
|
24334
|
+
importFileSuccess(res2) {
|
|
24335
|
+
if (res2.code == 0) {
|
|
24336
|
+
this.success("Front_Msg_Success", () => {
|
|
24337
|
+
this.$refs.table.loadData();
|
|
24338
|
+
});
|
|
24339
|
+
} else {
|
|
24340
|
+
this.error(res2.message);
|
|
24341
|
+
}
|
|
24342
|
+
}
|
|
24343
|
+
}
|
|
24236
24344
|
};
|
|
24237
|
-
const _hoisted_1$
|
|
24238
|
-
function _sfc_render$
|
|
24345
|
+
const _hoisted_1$V = { class: "i-layout-page-header" };
|
|
24346
|
+
function _sfc_render$18(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24239
24347
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24348
|
+
const _component_Button = resolveComponent("Button");
|
|
24349
|
+
const _component_file_upload = resolveComponent("file-upload");
|
|
24240
24350
|
const _component_view_table = resolveComponent("view-table");
|
|
24241
24351
|
const _component_Card = resolveComponent("Card");
|
|
24242
24352
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24243
24353
|
return openBlock(), createElementBlock("div", null, [
|
|
24244
|
-
createElementVNode("div", _hoisted_1$
|
|
24354
|
+
createElementVNode("div", _hoisted_1$V, [
|
|
24245
24355
|
createVNode$1(_component_PageHeader, {
|
|
24246
24356
|
title: _ctx.$route.meta.title,
|
|
24247
24357
|
content: _ctx.$route.meta.description,
|
|
@@ -24257,25 +24367,60 @@ function _sfc_render$17(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24257
24367
|
createVNode$1(_component_view_table, {
|
|
24258
24368
|
ref: "table",
|
|
24259
24369
|
"view-code": "MailTemplate",
|
|
24260
|
-
|
|
24261
|
-
|
|
24262
|
-
|
|
24370
|
+
selectEnable: true,
|
|
24371
|
+
onCreate: _cache[1] || (_cache[1] = ($event) => _ctx.$refs.form.open()),
|
|
24372
|
+
onEdit: _cache[2] || (_cache[2] = ({ row, index: index2 }) => _ctx.$refs.form.open(row))
|
|
24373
|
+
}, {
|
|
24374
|
+
filterCommand: withCtx(() => [
|
|
24375
|
+
createVNode$1(_component_Button, {
|
|
24376
|
+
size: "small",
|
|
24377
|
+
type: "info",
|
|
24378
|
+
"custom-icon": "fa fa-cloud-download-alt",
|
|
24379
|
+
onClick: _cache[0] || (_cache[0] = ($event) => $options.exportFile())
|
|
24380
|
+
}, {
|
|
24381
|
+
default: withCtx(() => [
|
|
24382
|
+
createTextVNode(toDisplayString$1(_ctx.$t("Front_Btn_Export")), 1)
|
|
24383
|
+
]),
|
|
24384
|
+
_: 1
|
|
24385
|
+
}),
|
|
24386
|
+
createVNode$1(_component_file_upload, {
|
|
24387
|
+
url: "api/MailTemplate/importFile",
|
|
24388
|
+
accept: ".mt",
|
|
24389
|
+
onOnSuccess: $options.importFileSuccess
|
|
24390
|
+
}, {
|
|
24391
|
+
default: withCtx(() => [
|
|
24392
|
+
createVNode$1(_component_Button, {
|
|
24393
|
+
type: "primary",
|
|
24394
|
+
"custom-icon": "fa fa-cloud-upload-alt",
|
|
24395
|
+
size: "small"
|
|
24396
|
+
}, {
|
|
24397
|
+
default: withCtx(() => [
|
|
24398
|
+
createTextVNode(toDisplayString$1(_ctx.$t("Front_Btn_Import")), 1)
|
|
24399
|
+
]),
|
|
24400
|
+
_: 1
|
|
24401
|
+
})
|
|
24402
|
+
]),
|
|
24403
|
+
_: 1
|
|
24404
|
+
}, 8, ["onOnSuccess"])
|
|
24405
|
+
]),
|
|
24406
|
+
_: 1
|
|
24407
|
+
}, 512)
|
|
24263
24408
|
]),
|
|
24264
24409
|
_: 1
|
|
24265
24410
|
}),
|
|
24266
24411
|
createVNode$1(_component_modal_form, {
|
|
24267
24412
|
ref: "form",
|
|
24268
24413
|
"view-code": "MailTemplateEdit",
|
|
24269
|
-
onOnAfterSave: _cache[
|
|
24414
|
+
onOnAfterSave: _cache[3] || (_cache[3] = ($event) => _ctx.$refs.table.loadData())
|
|
24270
24415
|
}, null, 512)
|
|
24271
24416
|
]);
|
|
24272
24417
|
}
|
|
24273
|
-
var mailTemplate = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24274
|
-
var
|
|
24418
|
+
var mailTemplate = /* @__PURE__ */ _export_sfc(_sfc_main$18, [["render", _sfc_render$18], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/mailTemplate.vue"]]);
|
|
24419
|
+
var __glob_46_15 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24275
24420
|
__proto__: null,
|
|
24276
24421
|
"default": mailTemplate
|
|
24277
24422
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24278
|
-
const _sfc_main$
|
|
24423
|
+
const _sfc_main$17 = {
|
|
24279
24424
|
name: "system-notice",
|
|
24280
24425
|
mixins: [mixinPage],
|
|
24281
24426
|
components: {},
|
|
@@ -24287,14 +24432,14 @@ const _sfc_main$16 = {
|
|
|
24287
24432
|
},
|
|
24288
24433
|
methods: {}
|
|
24289
24434
|
};
|
|
24290
|
-
const _hoisted_1$
|
|
24291
|
-
function _sfc_render$
|
|
24435
|
+
const _hoisted_1$U = { class: "i-layout-page-header" };
|
|
24436
|
+
function _sfc_render$17(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24292
24437
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24293
24438
|
const _component_view_table = resolveComponent("view-table");
|
|
24294
24439
|
const _component_Card = resolveComponent("Card");
|
|
24295
24440
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24296
24441
|
return openBlock(), createElementBlock("div", null, [
|
|
24297
|
-
createElementVNode("div", _hoisted_1$
|
|
24442
|
+
createElementVNode("div", _hoisted_1$U, [
|
|
24298
24443
|
createVNode$1(_component_PageHeader, {
|
|
24299
24444
|
title: _ctx.$route.meta.title,
|
|
24300
24445
|
content: _ctx.$route.meta.description,
|
|
@@ -24323,12 +24468,12 @@ function _sfc_render$16(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24323
24468
|
}, null, 512)
|
|
24324
24469
|
]);
|
|
24325
24470
|
}
|
|
24326
|
-
var notice = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24327
|
-
var
|
|
24471
|
+
var notice = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["render", _sfc_render$17], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/notice.vue"]]);
|
|
24472
|
+
var __glob_46_16 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24328
24473
|
__proto__: null,
|
|
24329
24474
|
"default": notice
|
|
24330
24475
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24331
|
-
const _sfc_main$
|
|
24476
|
+
const _sfc_main$16 = {
|
|
24332
24477
|
name: "system-openApi",
|
|
24333
24478
|
mixins: [mixinPage],
|
|
24334
24479
|
components: {},
|
|
@@ -24340,14 +24485,14 @@ const _sfc_main$15 = {
|
|
|
24340
24485
|
},
|
|
24341
24486
|
methods: {}
|
|
24342
24487
|
};
|
|
24343
|
-
const _hoisted_1$
|
|
24344
|
-
function _sfc_render$
|
|
24488
|
+
const _hoisted_1$T = { class: "i-layout-page-header" };
|
|
24489
|
+
function _sfc_render$16(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24345
24490
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24346
24491
|
const _component_view_table = resolveComponent("view-table");
|
|
24347
24492
|
const _component_Card = resolveComponent("Card");
|
|
24348
24493
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24349
24494
|
return openBlock(), createElementBlock("div", null, [
|
|
24350
|
-
createElementVNode("div", _hoisted_1$
|
|
24495
|
+
createElementVNode("div", _hoisted_1$T, [
|
|
24351
24496
|
createVNode$1(_component_PageHeader, {
|
|
24352
24497
|
title: _ctx.$route.meta.title,
|
|
24353
24498
|
content: _ctx.$route.meta.description,
|
|
@@ -24376,8 +24521,8 @@ function _sfc_render$15(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24376
24521
|
}, null, 512)
|
|
24377
24522
|
]);
|
|
24378
24523
|
}
|
|
24379
|
-
var openApi = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24380
|
-
var
|
|
24524
|
+
var openApi = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["render", _sfc_render$16], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/openApi.vue"]]);
|
|
24525
|
+
var __glob_46_17 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24381
24526
|
__proto__: null,
|
|
24382
24527
|
"default": openApi
|
|
24383
24528
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -24403,7 +24548,7 @@ var openApiPermissionApi = {
|
|
|
24403
24548
|
});
|
|
24404
24549
|
}
|
|
24405
24550
|
};
|
|
24406
|
-
const _sfc_main$
|
|
24551
|
+
const _sfc_main$15 = {
|
|
24407
24552
|
name: "system-openUser",
|
|
24408
24553
|
mixins: [mixinPage],
|
|
24409
24554
|
components: {},
|
|
@@ -24439,8 +24584,8 @@ const _sfc_main$14 = {
|
|
|
24439
24584
|
}
|
|
24440
24585
|
}
|
|
24441
24586
|
};
|
|
24442
|
-
const _hoisted_1$
|
|
24443
|
-
function _sfc_render$
|
|
24587
|
+
const _hoisted_1$S = { class: "i-layout-page-header" };
|
|
24588
|
+
function _sfc_render$15(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24444
24589
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24445
24590
|
const _component_Button = resolveComponent("Button");
|
|
24446
24591
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -24448,7 +24593,7 @@ function _sfc_render$14(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24448
24593
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24449
24594
|
const _component_modal_table = resolveComponent("modal-table");
|
|
24450
24595
|
return openBlock(), createElementBlock("div", null, [
|
|
24451
|
-
createElementVNode("div", _hoisted_1$
|
|
24596
|
+
createElementVNode("div", _hoisted_1$S, [
|
|
24452
24597
|
createVNode$1(_component_PageHeader, {
|
|
24453
24598
|
title: _ctx.$route.meta.title,
|
|
24454
24599
|
content: _ctx.$route.meta.description,
|
|
@@ -24519,12 +24664,12 @@ function _sfc_render$14(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24519
24664
|
}, 512)
|
|
24520
24665
|
]);
|
|
24521
24666
|
}
|
|
24522
|
-
var openUser = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24523
|
-
var
|
|
24667
|
+
var openUser = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["render", _sfc_render$15], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/openUser.vue"]]);
|
|
24668
|
+
var __glob_46_18 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24524
24669
|
__proto__: null,
|
|
24525
24670
|
"default": openUser
|
|
24526
24671
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24527
|
-
const _sfc_main$
|
|
24672
|
+
const _sfc_main$14 = {
|
|
24528
24673
|
name: "system-organization",
|
|
24529
24674
|
mixins: [mixinPage],
|
|
24530
24675
|
components: {},
|
|
@@ -24578,15 +24723,15 @@ const _sfc_main$13 = {
|
|
|
24578
24723
|
}
|
|
24579
24724
|
}
|
|
24580
24725
|
};
|
|
24581
|
-
const _hoisted_1$
|
|
24582
|
-
function _sfc_render$
|
|
24726
|
+
const _hoisted_1$R = { class: "i-layout-page-header" };
|
|
24727
|
+
function _sfc_render$14(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24583
24728
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24584
24729
|
const _component_Button = resolveComponent("Button");
|
|
24585
24730
|
const _component_view_table = resolveComponent("view-table");
|
|
24586
24731
|
const _component_Card = resolveComponent("Card");
|
|
24587
24732
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24588
24733
|
return openBlock(), createElementBlock("div", null, [
|
|
24589
|
-
createElementVNode("div", _hoisted_1$
|
|
24734
|
+
createElementVNode("div", _hoisted_1$R, [
|
|
24590
24735
|
createVNode$1(_component_PageHeader, {
|
|
24591
24736
|
title: _ctx.$route.meta.title,
|
|
24592
24737
|
content: _ctx.$route.meta.description,
|
|
@@ -24638,12 +24783,12 @@ function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24638
24783
|
}, null, 8, ["onOnAfterSave"])
|
|
24639
24784
|
]);
|
|
24640
24785
|
}
|
|
24641
|
-
var organization = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24642
|
-
var
|
|
24786
|
+
var organization = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["render", _sfc_render$14], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/organization.vue"]]);
|
|
24787
|
+
var __glob_46_19 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24643
24788
|
__proto__: null,
|
|
24644
24789
|
"default": organization
|
|
24645
24790
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24646
|
-
const _sfc_main$
|
|
24791
|
+
const _sfc_main$13 = {
|
|
24647
24792
|
name: "system-organizationType",
|
|
24648
24793
|
mixins: [mixinPage],
|
|
24649
24794
|
components: {},
|
|
@@ -24655,14 +24800,14 @@ const _sfc_main$12 = {
|
|
|
24655
24800
|
},
|
|
24656
24801
|
methods: {}
|
|
24657
24802
|
};
|
|
24658
|
-
const _hoisted_1$
|
|
24659
|
-
function _sfc_render$
|
|
24803
|
+
const _hoisted_1$Q = { class: "i-layout-page-header" };
|
|
24804
|
+
function _sfc_render$13(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24660
24805
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24661
24806
|
const _component_view_table = resolveComponent("view-table");
|
|
24662
24807
|
const _component_Card = resolveComponent("Card");
|
|
24663
24808
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24664
24809
|
return openBlock(), createElementBlock("div", null, [
|
|
24665
|
-
createElementVNode("div", _hoisted_1$
|
|
24810
|
+
createElementVNode("div", _hoisted_1$Q, [
|
|
24666
24811
|
createVNode$1(_component_PageHeader, {
|
|
24667
24812
|
title: _ctx.$route.meta.title,
|
|
24668
24813
|
content: _ctx.$route.meta.description,
|
|
@@ -24691,12 +24836,12 @@ function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24691
24836
|
}, null, 512)
|
|
24692
24837
|
]);
|
|
24693
24838
|
}
|
|
24694
|
-
var organizationType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24695
|
-
var
|
|
24839
|
+
var organizationType = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$13], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/organizationType.vue"]]);
|
|
24840
|
+
var __glob_46_20 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24696
24841
|
__proto__: null,
|
|
24697
24842
|
"default": organizationType
|
|
24698
24843
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
24699
|
-
const _sfc_main$
|
|
24844
|
+
const _sfc_main$12 = {
|
|
24700
24845
|
name: "system-permission",
|
|
24701
24846
|
mixins: [mixinPage],
|
|
24702
24847
|
components: {},
|
|
@@ -24849,8 +24994,8 @@ const _sfc_main$11 = {
|
|
|
24849
24994
|
}
|
|
24850
24995
|
}
|
|
24851
24996
|
};
|
|
24852
|
-
const _hoisted_1$
|
|
24853
|
-
function _sfc_render$
|
|
24997
|
+
const _hoisted_1$P = { class: "i-layout-page-header" };
|
|
24998
|
+
function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24854
24999
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24855
25000
|
const _component_Button = resolveComponent("Button");
|
|
24856
25001
|
const _component_file_upload = resolveComponent("file-upload");
|
|
@@ -24858,7 +25003,7 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24858
25003
|
const _component_Card = resolveComponent("Card");
|
|
24859
25004
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24860
25005
|
return openBlock(), createElementBlock("div", null, [
|
|
24861
|
-
createElementVNode("div", _hoisted_1$
|
|
25006
|
+
createElementVNode("div", _hoisted_1$P, [
|
|
24862
25007
|
createVNode$1(_component_PageHeader, {
|
|
24863
25008
|
title: _ctx.$route.meta.title,
|
|
24864
25009
|
content: _ctx.$route.meta.description,
|
|
@@ -24946,8 +25091,8 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
24946
25091
|
}, null, 8, ["onOnChange", "onOnAfterSave"])
|
|
24947
25092
|
]);
|
|
24948
25093
|
}
|
|
24949
|
-
var permission = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
24950
|
-
var
|
|
25094
|
+
var permission = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$12], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/permission.vue"]]);
|
|
25095
|
+
var __glob_46_21 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
24951
25096
|
__proto__: null,
|
|
24952
25097
|
"default": permission
|
|
24953
25098
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -24963,7 +25108,7 @@ var planJobApi = {
|
|
|
24963
25108
|
});
|
|
24964
25109
|
}
|
|
24965
25110
|
};
|
|
24966
|
-
const _sfc_main$
|
|
25111
|
+
const _sfc_main$11 = {
|
|
24967
25112
|
name: "system-planJob",
|
|
24968
25113
|
mixins: [mixinPage],
|
|
24969
25114
|
components: {},
|
|
@@ -24983,15 +25128,15 @@ const _sfc_main$10 = {
|
|
|
24983
25128
|
}
|
|
24984
25129
|
}
|
|
24985
25130
|
};
|
|
24986
|
-
const _hoisted_1$
|
|
24987
|
-
function _sfc_render$
|
|
25131
|
+
const _hoisted_1$O = { class: "i-layout-page-header" };
|
|
25132
|
+
function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24988
25133
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
24989
25134
|
const _component_Button = resolveComponent("Button");
|
|
24990
25135
|
const _component_view_table = resolveComponent("view-table");
|
|
24991
25136
|
const _component_Card = resolveComponent("Card");
|
|
24992
25137
|
const _component_modal_form = resolveComponent("modal-form");
|
|
24993
25138
|
return openBlock(), createElementBlock("div", null, [
|
|
24994
|
-
createElementVNode("div", _hoisted_1$
|
|
25139
|
+
createElementVNode("div", _hoisted_1$O, [
|
|
24995
25140
|
createVNode$1(_component_PageHeader, {
|
|
24996
25141
|
title: _ctx.$route.meta.title,
|
|
24997
25142
|
content: _ctx.$route.meta.description,
|
|
@@ -25031,12 +25176,12 @@ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25031
25176
|
}, null, 512)
|
|
25032
25177
|
]);
|
|
25033
25178
|
}
|
|
25034
|
-
var planJob = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
25035
|
-
var
|
|
25179
|
+
var planJob = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$11], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/planJob.vue"]]);
|
|
25180
|
+
var __glob_46_22 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25036
25181
|
__proto__: null,
|
|
25037
25182
|
"default": planJob
|
|
25038
25183
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
25039
|
-
const _sfc_main
|
|
25184
|
+
const _sfc_main$10 = {
|
|
25040
25185
|
name: "system-printTemplate",
|
|
25041
25186
|
mixins: [mixinPage],
|
|
25042
25187
|
components: {},
|
|
@@ -25068,14 +25213,14 @@ const _sfc_main$$ = {
|
|
|
25068
25213
|
}
|
|
25069
25214
|
}
|
|
25070
25215
|
};
|
|
25071
|
-
const _hoisted_1$
|
|
25072
|
-
function _sfc_render
|
|
25216
|
+
const _hoisted_1$N = { class: "i-layout-page-header" };
|
|
25217
|
+
function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25073
25218
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
25074
25219
|
const _component_view_table = resolveComponent("view-table");
|
|
25075
25220
|
const _component_Card = resolveComponent("Card");
|
|
25076
25221
|
const _component_modal_form = resolveComponent("modal-form");
|
|
25077
25222
|
return openBlock(), createElementBlock("div", null, [
|
|
25078
|
-
createElementVNode("div", _hoisted_1$
|
|
25223
|
+
createElementVNode("div", _hoisted_1$N, [
|
|
25079
25224
|
createVNode$1(_component_PageHeader, {
|
|
25080
25225
|
title: _ctx.$route.meta.title,
|
|
25081
25226
|
content: _ctx.$route.meta.description,
|
|
@@ -25105,8 +25250,8 @@ function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25105
25250
|
}, null, 8, ["onOnChange"])
|
|
25106
25251
|
]);
|
|
25107
25252
|
}
|
|
25108
|
-
var printTemplate = /* @__PURE__ */ _export_sfc(_sfc_main
|
|
25109
|
-
var
|
|
25253
|
+
var printTemplate = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$10], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/printTemplate.vue"]]);
|
|
25254
|
+
var __glob_46_23 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25110
25255
|
__proto__: null,
|
|
25111
25256
|
"default": printTemplate
|
|
25112
25257
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -25143,7 +25288,7 @@ var processDefApi = {
|
|
|
25143
25288
|
});
|
|
25144
25289
|
}
|
|
25145
25290
|
};
|
|
25146
|
-
const _sfc_main
|
|
25291
|
+
const _sfc_main$$ = {
|
|
25147
25292
|
mixins: [mixinPage],
|
|
25148
25293
|
components: {},
|
|
25149
25294
|
props: {},
|
|
@@ -25492,7 +25637,7 @@ const _sfc_main$_ = {
|
|
|
25492
25637
|
}
|
|
25493
25638
|
}
|
|
25494
25639
|
};
|
|
25495
|
-
const _hoisted_1$
|
|
25640
|
+
const _hoisted_1$M = { class: "title" };
|
|
25496
25641
|
const _hoisted_2$x = /* @__PURE__ */ createElementVNode("span", { class: "description" }, null, -1);
|
|
25497
25642
|
const _hoisted_3$t = { class: "ivu-ml-8 ivu-mr-8" };
|
|
25498
25643
|
const _hoisted_4$k = /* @__PURE__ */ createElementVNode("symbol", {
|
|
@@ -25566,7 +25711,7 @@ const _hoisted_35$1 = ["x1", "y1", "x2", "y2", "onDblclick"];
|
|
|
25566
25711
|
const _hoisted_36$1 = ["font-size", "onDblclick"];
|
|
25567
25712
|
const _hoisted_37$1 = ["href"];
|
|
25568
25713
|
const _hoisted_38$1 = ["x1", "y1", "x2", "y2"];
|
|
25569
|
-
function _sfc_render
|
|
25714
|
+
function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
|
|
25570
25715
|
const _component_Button = resolveComponent("Button");
|
|
25571
25716
|
const _component_Modal = resolveComponent("Modal");
|
|
25572
25717
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -25588,7 +25733,7 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
25588
25733
|
header: withCtx(() => [
|
|
25589
25734
|
createElementVNode("div", null, [
|
|
25590
25735
|
renderSlot(_ctx.$slots, "header", {}, () => [
|
|
25591
|
-
createElementVNode("span", _hoisted_1$
|
|
25736
|
+
createElementVNode("span", _hoisted_1$M, toDisplayString$1($data.data.process ? $data.data.process.name : _ctx.$t("Front_Label_Process_Definition")), 1),
|
|
25592
25737
|
_hoisted_2$x
|
|
25593
25738
|
])
|
|
25594
25739
|
])
|
|
@@ -26135,7 +26280,7 @@ function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26135
26280
|
}, 512)
|
|
26136
26281
|
]);
|
|
26137
26282
|
}
|
|
26138
|
-
var flowChart = /* @__PURE__ */ _export_sfc(_sfc_main
|
|
26283
|
+
var flowChart = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$$], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/workflow/flow-chart.vue"]]);
|
|
26139
26284
|
const res$7 = "Process";
|
|
26140
26285
|
var processApi = {
|
|
26141
26286
|
async exportFile(ids) {
|
|
@@ -26153,7 +26298,7 @@ var processApi = {
|
|
|
26153
26298
|
saveAs(blob, "Process-" + format$3(new Date(), "yyyyMMddHHmmss") + ".proc");
|
|
26154
26299
|
}
|
|
26155
26300
|
};
|
|
26156
|
-
const _sfc_main$
|
|
26301
|
+
const _sfc_main$_ = {
|
|
26157
26302
|
name: "system-process",
|
|
26158
26303
|
mixins: [mixinPage],
|
|
26159
26304
|
components: { flowChart },
|
|
@@ -26192,8 +26337,8 @@ const _sfc_main$Z = {
|
|
|
26192
26337
|
}
|
|
26193
26338
|
}
|
|
26194
26339
|
};
|
|
26195
|
-
const _hoisted_1$
|
|
26196
|
-
function _sfc_render$
|
|
26340
|
+
const _hoisted_1$L = { class: "i-layout-page-header" };
|
|
26341
|
+
function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26197
26342
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
26198
26343
|
const _component_Button = resolveComponent("Button");
|
|
26199
26344
|
const _component_file_upload = resolveComponent("file-upload");
|
|
@@ -26203,7 +26348,7 @@ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26203
26348
|
const _component_modal_table = resolveComponent("modal-table");
|
|
26204
26349
|
const _component_flow_chart = resolveComponent("flow-chart");
|
|
26205
26350
|
return openBlock(), createElementBlock("div", null, [
|
|
26206
|
-
createElementVNode("div", _hoisted_1$
|
|
26351
|
+
createElementVNode("div", _hoisted_1$L, [
|
|
26207
26352
|
createVNode$1(_component_PageHeader, {
|
|
26208
26353
|
title: _ctx.$route.meta.title,
|
|
26209
26354
|
content: _ctx.$route.meta.description,
|
|
@@ -26307,12 +26452,12 @@ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26307
26452
|
createVNode$1(_component_flow_chart, { ref: "flowChart" }, null, 512)
|
|
26308
26453
|
]);
|
|
26309
26454
|
}
|
|
26310
|
-
var process$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
26311
|
-
var
|
|
26455
|
+
var process$1 = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$_], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/process.vue"]]);
|
|
26456
|
+
var __glob_46_24 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26312
26457
|
__proto__: null,
|
|
26313
26458
|
"default": process$1
|
|
26314
26459
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
26315
|
-
const _sfc_main$
|
|
26460
|
+
const _sfc_main$Z = {
|
|
26316
26461
|
name: "system-processType",
|
|
26317
26462
|
mixins: [mixinPage],
|
|
26318
26463
|
components: {},
|
|
@@ -26324,14 +26469,14 @@ const _sfc_main$Y = {
|
|
|
26324
26469
|
},
|
|
26325
26470
|
methods: {}
|
|
26326
26471
|
};
|
|
26327
|
-
const _hoisted_1$
|
|
26328
|
-
function _sfc_render$
|
|
26472
|
+
const _hoisted_1$K = { class: "i-layout-page-header" };
|
|
26473
|
+
function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26329
26474
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
26330
26475
|
const _component_view_table = resolveComponent("view-table");
|
|
26331
26476
|
const _component_Card = resolveComponent("Card");
|
|
26332
26477
|
const _component_modal_form = resolveComponent("modal-form");
|
|
26333
26478
|
return openBlock(), createElementBlock("div", null, [
|
|
26334
|
-
createElementVNode("div", _hoisted_1$
|
|
26479
|
+
createElementVNode("div", _hoisted_1$K, [
|
|
26335
26480
|
createVNode$1(_component_PageHeader, {
|
|
26336
26481
|
title: _ctx.$route.meta.title,
|
|
26337
26482
|
content: _ctx.$route.meta.description,
|
|
@@ -26360,8 +26505,8 @@ function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26360
26505
|
}, null, 512)
|
|
26361
26506
|
]);
|
|
26362
26507
|
}
|
|
26363
|
-
var processType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
26364
|
-
var
|
|
26508
|
+
var processType = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$Z], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/processType.vue"]]);
|
|
26509
|
+
var __glob_46_25 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26365
26510
|
__proto__: null,
|
|
26366
26511
|
"default": processType
|
|
26367
26512
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -26379,7 +26524,7 @@ var rolePermissionApi = {
|
|
|
26379
26524
|
});
|
|
26380
26525
|
}
|
|
26381
26526
|
};
|
|
26382
|
-
const _sfc_main$
|
|
26527
|
+
const _sfc_main$Y = {
|
|
26383
26528
|
mixins: [mixinPage],
|
|
26384
26529
|
components: { columnCheck },
|
|
26385
26530
|
data() {
|
|
@@ -26625,7 +26770,7 @@ const _sfc_main$X = {
|
|
|
26625
26770
|
}
|
|
26626
26771
|
}
|
|
26627
26772
|
};
|
|
26628
|
-
const _hoisted_1$
|
|
26773
|
+
const _hoisted_1$J = { class: "title" };
|
|
26629
26774
|
const _hoisted_2$w = { class: "description" };
|
|
26630
26775
|
const _hoisted_3$s = { class: "ivu-ml-8 ivu-mr-8" };
|
|
26631
26776
|
const _hoisted_4$j = /* @__PURE__ */ createTextVNode("\u5355\u884C\u6587\u672C\u6846");
|
|
@@ -26641,7 +26786,7 @@ const _hoisted_13$1 = { class: "i-table-no-border" };
|
|
|
26641
26786
|
const _hoisted_14$1 = { class: "title" };
|
|
26642
26787
|
const _hoisted_15$1 = { class: "description" };
|
|
26643
26788
|
const _hoisted_16$1 = { class: "ivu-ml-8 ivu-mr-8" };
|
|
26644
|
-
function _sfc_render$
|
|
26789
|
+
function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
|
|
26645
26790
|
const _component_Input = resolveComponent("Input");
|
|
26646
26791
|
const _component_FormItem = resolveComponent("FormItem");
|
|
26647
26792
|
const _component_Col = resolveComponent("Col");
|
|
@@ -26668,7 +26813,7 @@ function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
26668
26813
|
}, {
|
|
26669
26814
|
header: withCtx(() => [
|
|
26670
26815
|
createElementVNode("div", null, [
|
|
26671
|
-
createElementVNode("span", _hoisted_1$
|
|
26816
|
+
createElementVNode("span", _hoisted_1$J, toDisplayString$1(_ctx.$t("Front_Label_Property_Setting")), 1),
|
|
26672
26817
|
createElementVNode("span", _hoisted_2$w, toDisplayString$1(_ctx.$t("Front_Label_Property_Setting_Desc")), 1)
|
|
26673
26818
|
])
|
|
26674
26819
|
]),
|
|
@@ -27238,8 +27383,8 @@ function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27238
27383
|
createVNode$1(_component_column_check, { ref: "columnParamCheck" }, null, 512)
|
|
27239
27384
|
]);
|
|
27240
27385
|
}
|
|
27241
|
-
var rolePropertyEdit = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
27242
|
-
var
|
|
27386
|
+
var rolePropertyEdit = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$Y], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/rolePropertyEdit.vue"]]);
|
|
27387
|
+
var __glob_46_27 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27243
27388
|
__proto__: null,
|
|
27244
27389
|
"default": rolePropertyEdit
|
|
27245
27390
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -27286,7 +27431,7 @@ var getChecked$1 = (data2) => {
|
|
|
27286
27431
|
});
|
|
27287
27432
|
return checked;
|
|
27288
27433
|
};
|
|
27289
|
-
const _sfc_main$
|
|
27434
|
+
const _sfc_main$X = {
|
|
27290
27435
|
name: "system-role",
|
|
27291
27436
|
mixins: [mixinPage],
|
|
27292
27437
|
components: { rolePropertyEdit },
|
|
@@ -27436,11 +27581,11 @@ const _sfc_main$W = {
|
|
|
27436
27581
|
}
|
|
27437
27582
|
}
|
|
27438
27583
|
};
|
|
27439
|
-
const _hoisted_1$
|
|
27584
|
+
const _hoisted_1$I = { class: "i-layout-page-header" };
|
|
27440
27585
|
const _hoisted_2$v = { class: "title" };
|
|
27441
27586
|
const _hoisted_3$r = { class: "description" };
|
|
27442
27587
|
const _hoisted_4$i = { class: "ivu-ml-8 ivu-mr-8" };
|
|
27443
|
-
function _sfc_render$
|
|
27588
|
+
function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27444
27589
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
27445
27590
|
const _component_Button = resolveComponent("Button");
|
|
27446
27591
|
const _component_view_table = resolveComponent("view-table");
|
|
@@ -27462,7 +27607,7 @@ function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27462
27607
|
const _component_Tree = resolveComponent("Tree");
|
|
27463
27608
|
const _component_Modal = resolveComponent("Modal");
|
|
27464
27609
|
return openBlock(), createElementBlock("div", null, [
|
|
27465
|
-
createElementVNode("div", _hoisted_1$
|
|
27610
|
+
createElementVNode("div", _hoisted_1$I, [
|
|
27466
27611
|
createVNode$1(_component_PageHeader, {
|
|
27467
27612
|
title: _ctx.$route.meta.title,
|
|
27468
27613
|
content: _ctx.$route.meta.description,
|
|
@@ -27778,12 +27923,12 @@ function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27778
27923
|
}, 8, ["modelValue", "mask-closable", "draggable"])
|
|
27779
27924
|
]);
|
|
27780
27925
|
}
|
|
27781
|
-
var role = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
27782
|
-
var
|
|
27926
|
+
var role = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$X], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/role.vue"]]);
|
|
27927
|
+
var __glob_46_26 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27783
27928
|
__proto__: null,
|
|
27784
27929
|
"default": role
|
|
27785
27930
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27786
|
-
const _sfc_main$
|
|
27931
|
+
const _sfc_main$W = {
|
|
27787
27932
|
name: "system-sequenceSetting",
|
|
27788
27933
|
mixins: [mixinPage],
|
|
27789
27934
|
components: {},
|
|
@@ -27795,14 +27940,14 @@ const _sfc_main$V = {
|
|
|
27795
27940
|
},
|
|
27796
27941
|
methods: {}
|
|
27797
27942
|
};
|
|
27798
|
-
const _hoisted_1$
|
|
27799
|
-
function _sfc_render$
|
|
27943
|
+
const _hoisted_1$H = { class: "i-layout-page-header" };
|
|
27944
|
+
function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27800
27945
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
27801
27946
|
const _component_view_table = resolveComponent("view-table");
|
|
27802
27947
|
const _component_Card = resolveComponent("Card");
|
|
27803
27948
|
const _component_modal_form = resolveComponent("modal-form");
|
|
27804
27949
|
return openBlock(), createElementBlock("div", null, [
|
|
27805
|
-
createElementVNode("div", _hoisted_1$
|
|
27950
|
+
createElementVNode("div", _hoisted_1$H, [
|
|
27806
27951
|
createVNode$1(_component_PageHeader, {
|
|
27807
27952
|
title: _ctx.$route.meta.title,
|
|
27808
27953
|
content: _ctx.$route.meta.description,
|
|
@@ -27831,11 +27976,64 @@ function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27831
27976
|
}, null, 512)
|
|
27832
27977
|
]);
|
|
27833
27978
|
}
|
|
27834
|
-
var sequenceSetting = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
27835
|
-
var
|
|
27979
|
+
var sequenceSetting = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$W], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/sequenceSetting.vue"]]);
|
|
27980
|
+
var __glob_46_28 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27836
27981
|
__proto__: null,
|
|
27837
27982
|
"default": sequenceSetting
|
|
27838
27983
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27984
|
+
const _sfc_main$V = {
|
|
27985
|
+
name: "system-setting",
|
|
27986
|
+
mixins: [mixinPage],
|
|
27987
|
+
components: {},
|
|
27988
|
+
data() {
|
|
27989
|
+
return {};
|
|
27990
|
+
},
|
|
27991
|
+
computed: {},
|
|
27992
|
+
created() {
|
|
27993
|
+
},
|
|
27994
|
+
methods: {}
|
|
27995
|
+
};
|
|
27996
|
+
const _hoisted_1$G = { class: "i-layout-page-header" };
|
|
27997
|
+
function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27998
|
+
const _component_PageHeader = resolveComponent("PageHeader");
|
|
27999
|
+
const _component_view_table = resolveComponent("view-table");
|
|
28000
|
+
const _component_Card = resolveComponent("Card");
|
|
28001
|
+
const _component_modal_form = resolveComponent("modal-form");
|
|
28002
|
+
return openBlock(), createElementBlock("div", null, [
|
|
28003
|
+
createElementVNode("div", _hoisted_1$G, [
|
|
28004
|
+
createVNode$1(_component_PageHeader, {
|
|
28005
|
+
title: _ctx.$route.meta.title,
|
|
28006
|
+
content: _ctx.$route.meta.description,
|
|
28007
|
+
"hidden-breadcrumb": ""
|
|
28008
|
+
}, null, 8, ["title", "content"])
|
|
28009
|
+
]),
|
|
28010
|
+
createVNode$1(_component_Card, {
|
|
28011
|
+
bordered: false,
|
|
28012
|
+
"dis-hover": "",
|
|
28013
|
+
class: "ivu-mt"
|
|
28014
|
+
}, {
|
|
28015
|
+
default: withCtx(() => [
|
|
28016
|
+
createVNode$1(_component_view_table, {
|
|
28017
|
+
ref: "table",
|
|
28018
|
+
"view-code": "Setting",
|
|
28019
|
+
onCreate: _cache[0] || (_cache[0] = ($event) => _ctx.$refs.form.open()),
|
|
28020
|
+
onEdit: _cache[1] || (_cache[1] = ({ row, index: index2 }) => _ctx.$refs.form.open(row))
|
|
28021
|
+
}, null, 512)
|
|
28022
|
+
]),
|
|
28023
|
+
_: 1
|
|
28024
|
+
}),
|
|
28025
|
+
createVNode$1(_component_modal_form, {
|
|
28026
|
+
ref: "form",
|
|
28027
|
+
"view-code": "SettingEdit",
|
|
28028
|
+
onOnAfterSave: _cache[2] || (_cache[2] = ($event) => _ctx.$refs.table.loadData())
|
|
28029
|
+
}, null, 512)
|
|
28030
|
+
]);
|
|
28031
|
+
}
|
|
28032
|
+
var setting = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$V], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/setting.vue"]]);
|
|
28033
|
+
var __glob_46_29 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
28034
|
+
__proto__: null,
|
|
28035
|
+
"default": setting
|
|
28036
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
27839
28037
|
const res$5 = "System";
|
|
27840
28038
|
var systemApi = {
|
|
27841
28039
|
async exportFile(types) {
|
|
@@ -27881,7 +28079,7 @@ const _sfc_main$U = {
|
|
|
27881
28079
|
}
|
|
27882
28080
|
}
|
|
27883
28081
|
};
|
|
27884
|
-
const _hoisted_1$
|
|
28082
|
+
const _hoisted_1$F = { class: "i-layout-page-header" };
|
|
27885
28083
|
const _hoisted_2$u = { style: { "text-align": "center" } };
|
|
27886
28084
|
function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
|
|
27887
28085
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
@@ -27890,7 +28088,7 @@ function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27890
28088
|
const _component_file_upload = resolveComponent("file-upload");
|
|
27891
28089
|
const _component_Card = resolveComponent("Card");
|
|
27892
28090
|
return openBlock(), createElementBlock("div", null, [
|
|
27893
|
-
createElementVNode("div", _hoisted_1$
|
|
28091
|
+
createElementVNode("div", _hoisted_1$F, [
|
|
27894
28092
|
createVNode$1(_component_PageHeader, {
|
|
27895
28093
|
title: _ctx.$route.meta.title,
|
|
27896
28094
|
content: _ctx.$route.meta.description,
|
|
@@ -27944,7 +28142,7 @@ function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27944
28142
|
]);
|
|
27945
28143
|
}
|
|
27946
28144
|
var systemData = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$U], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/systemData.vue"]]);
|
|
27947
|
-
var
|
|
28145
|
+
var __glob_46_30 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27948
28146
|
__proto__: null,
|
|
27949
28147
|
"default": systemData
|
|
27950
28148
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -28113,7 +28311,7 @@ const _sfc_main$T = {
|
|
|
28113
28311
|
}
|
|
28114
28312
|
}
|
|
28115
28313
|
};
|
|
28116
|
-
const _hoisted_1$
|
|
28314
|
+
const _hoisted_1$E = { class: "title" };
|
|
28117
28315
|
const _hoisted_2$t = { class: "description" };
|
|
28118
28316
|
const _hoisted_3$q = { class: "ivu-ml-8 ivu-mr-8" };
|
|
28119
28317
|
function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
|
|
@@ -28132,7 +28330,7 @@ function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
28132
28330
|
}, {
|
|
28133
28331
|
header: withCtx(() => [
|
|
28134
28332
|
createElementVNode("div", null, [
|
|
28135
|
-
createElementVNode("span", _hoisted_1$
|
|
28333
|
+
createElementVNode("span", _hoisted_1$E, toDisplayString$1(_ctx.$t("Front_Label_Column_Select")), 1),
|
|
28136
28334
|
createElementVNode("span", _hoisted_2$t, toDisplayString$1(_ctx.$t("Front_Label_Column_Select_Desc")), 1)
|
|
28137
28335
|
])
|
|
28138
28336
|
]),
|
|
@@ -28487,7 +28685,7 @@ const _sfc_main$S = {
|
|
|
28487
28685
|
}
|
|
28488
28686
|
}
|
|
28489
28687
|
};
|
|
28490
|
-
const _hoisted_1$
|
|
28688
|
+
const _hoisted_1$D = /* @__PURE__ */ createElementVNode("div", null, [
|
|
28491
28689
|
/* @__PURE__ */ createElementVNode("span", { class: "title" }, "\u7B5B\u9009\u9879\u8BBE\u7F6E"),
|
|
28492
28690
|
/* @__PURE__ */ createElementVNode("span", { class: "description" }, "Filter Setting")
|
|
28493
28691
|
], -1);
|
|
@@ -28528,7 +28726,7 @@ function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
28528
28726
|
width: "800"
|
|
28529
28727
|
}, {
|
|
28530
28728
|
header: withCtx(() => [
|
|
28531
|
-
_hoisted_1$
|
|
28729
|
+
_hoisted_1$D
|
|
28532
28730
|
]),
|
|
28533
28731
|
footer: withCtx(() => [
|
|
28534
28732
|
createElementVNode("div", null, [
|
|
@@ -29558,7 +29756,7 @@ const _sfc_main$Q = {
|
|
|
29558
29756
|
}
|
|
29559
29757
|
}
|
|
29560
29758
|
};
|
|
29561
|
-
const _hoisted_1$
|
|
29759
|
+
const _hoisted_1$C = { key: 0 };
|
|
29562
29760
|
function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
29563
29761
|
const _component_Button = resolveComponent("Button");
|
|
29564
29762
|
const _component_modal_table = resolveComponent("modal-table");
|
|
@@ -29602,7 +29800,7 @@ function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29602
29800
|
"view-code": "GroupMethodEdit"
|
|
29603
29801
|
}, {
|
|
29604
29802
|
column: withCtx(({ data: data2, code }) => [
|
|
29605
|
-
code == "columnExp" ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
29803
|
+
code == "columnExp" ? (openBlock(), createElementBlock("div", _hoisted_1$C, [
|
|
29606
29804
|
createVNode$1(_component_Input, {
|
|
29607
29805
|
type: "text",
|
|
29608
29806
|
modelValue: data2.columnExp,
|
|
@@ -29706,7 +29904,7 @@ const _sfc_main$P = {
|
|
|
29706
29904
|
}
|
|
29707
29905
|
}
|
|
29708
29906
|
};
|
|
29709
|
-
const _hoisted_1$
|
|
29907
|
+
const _hoisted_1$B = { key: 0 };
|
|
29710
29908
|
function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
|
|
29711
29909
|
const _component_Button = resolveComponent("Button");
|
|
29712
29910
|
const _component_modal_table = resolveComponent("modal-table");
|
|
@@ -29750,7 +29948,7 @@ function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29750
29948
|
"view-code": "GroupColumnEdit"
|
|
29751
29949
|
}, {
|
|
29752
29950
|
column: withCtx(({ data: data2, code }) => [
|
|
29753
|
-
code == "columnExp" ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
29951
|
+
code == "columnExp" ? (openBlock(), createElementBlock("div", _hoisted_1$B, [
|
|
29754
29952
|
createVNode$1(_component_Input, {
|
|
29755
29953
|
type: "text",
|
|
29756
29954
|
modelValue: data2.columnExp,
|
|
@@ -29876,7 +30074,7 @@ const _sfc_main$O = {
|
|
|
29876
30074
|
}
|
|
29877
30075
|
}
|
|
29878
30076
|
};
|
|
29879
|
-
const _hoisted_1$
|
|
30077
|
+
const _hoisted_1$A = { class: "title" };
|
|
29880
30078
|
const _hoisted_2$r = { class: "description" };
|
|
29881
30079
|
const _hoisted_3$o = { class: "ivu-ml-8 ivu-mr-8" };
|
|
29882
30080
|
const _hoisted_4$g = { class: "title" };
|
|
@@ -29906,7 +30104,7 @@ function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
29906
30104
|
}, {
|
|
29907
30105
|
header: withCtx(() => [
|
|
29908
30106
|
createElementVNode("div", null, [
|
|
29909
|
-
createElementVNode("span", _hoisted_1$
|
|
30107
|
+
createElementVNode("span", _hoisted_1$A, toDisplayString$1(_ctx.$t("Front_Label_Condition_Setting")), 1),
|
|
29910
30108
|
createElementVNode("span", _hoisted_2$r, toDisplayString$1(_ctx.$t("Front_Label_Condition_Setting_Desc")), 1)
|
|
29911
30109
|
])
|
|
29912
30110
|
]),
|
|
@@ -30213,24 +30411,24 @@ const _sfc_main$N = {
|
|
|
30213
30411
|
if (!(json || "").trim()) {
|
|
30214
30412
|
return true;
|
|
30215
30413
|
} else {
|
|
30216
|
-
let
|
|
30217
|
-
return
|
|
30414
|
+
let setting2 = JSON.parse(json);
|
|
30415
|
+
return setting2.type == "True" || setting2.type == "False";
|
|
30218
30416
|
}
|
|
30219
30417
|
},
|
|
30220
30418
|
checkChange(jsonKey, checkKey) {
|
|
30221
30419
|
if (!!(this.data[jsonKey] || "").trim()) {
|
|
30222
|
-
let
|
|
30420
|
+
let setting2 = JSON.parse(this.data[jsonKey]);
|
|
30223
30421
|
if (this.data[checkKey]) {
|
|
30224
|
-
|
|
30422
|
+
setting2.type = "True";
|
|
30225
30423
|
} else {
|
|
30226
|
-
|
|
30424
|
+
setting2.type = "False";
|
|
30227
30425
|
}
|
|
30228
|
-
this.data[jsonKey] = JSON.stringify(
|
|
30426
|
+
this.data[jsonKey] = JSON.stringify(setting2);
|
|
30229
30427
|
}
|
|
30230
30428
|
}
|
|
30231
30429
|
}
|
|
30232
30430
|
};
|
|
30233
|
-
const _hoisted_1$
|
|
30431
|
+
const _hoisted_1$z = { class: "i-layout-page-header" };
|
|
30234
30432
|
const _hoisted_2$q = { key: 0 };
|
|
30235
30433
|
const _hoisted_3$n = { key: 1 };
|
|
30236
30434
|
const _hoisted_4$f = { key: 2 };
|
|
@@ -30258,7 +30456,7 @@ function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30258
30456
|
const _component_group_column = resolveComponent("group-column");
|
|
30259
30457
|
const _component_condition_edit = resolveComponent("condition-edit");
|
|
30260
30458
|
return openBlock(), createElementBlock("div", null, [
|
|
30261
|
-
createElementVNode("div", _hoisted_1$
|
|
30459
|
+
createElementVNode("div", _hoisted_1$z, [
|
|
30262
30460
|
createVNode$1(_component_PageHeader, {
|
|
30263
30461
|
title: _ctx.$route.meta.title,
|
|
30264
30462
|
content: _ctx.$route.meta.description,
|
|
@@ -30541,7 +30739,7 @@ function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30541
30739
|
]);
|
|
30542
30740
|
}
|
|
30543
30741
|
var tableView = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["render", _sfc_render$N], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/tableView.vue"]]);
|
|
30544
|
-
var
|
|
30742
|
+
var __glob_46_31 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
30545
30743
|
__proto__: null,
|
|
30546
30744
|
"default": tableView
|
|
30547
30745
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -30593,14 +30791,14 @@ const _sfc_main$M = {
|
|
|
30593
30791
|
}
|
|
30594
30792
|
}
|
|
30595
30793
|
};
|
|
30596
|
-
const _hoisted_1$
|
|
30794
|
+
const _hoisted_1$y = { class: "i-layout-page-header" };
|
|
30597
30795
|
function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30598
30796
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
30599
30797
|
const _component_Button = resolveComponent("Button");
|
|
30600
30798
|
const _component_view_table = resolveComponent("view-table");
|
|
30601
30799
|
const _component_Card = resolveComponent("Card");
|
|
30602
30800
|
return openBlock(), createElementBlock("div", null, [
|
|
30603
|
-
createElementVNode("div", _hoisted_1$
|
|
30801
|
+
createElementVNode("div", _hoisted_1$y, [
|
|
30604
30802
|
createVNode$1(_component_PageHeader, {
|
|
30605
30803
|
title: _ctx.$route.meta.title,
|
|
30606
30804
|
content: _ctx.$route.meta.description,
|
|
@@ -30642,7 +30840,7 @@ function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30642
30840
|
]);
|
|
30643
30841
|
}
|
|
30644
30842
|
var taskQueue = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["render", _sfc_render$M], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/taskQueue.vue"]]);
|
|
30645
|
-
var
|
|
30843
|
+
var __glob_46_32 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
30646
30844
|
__proto__: null,
|
|
30647
30845
|
"default": taskQueue
|
|
30648
30846
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -30802,7 +31000,7 @@ const _sfc_main$L = {
|
|
|
30802
31000
|
}
|
|
30803
31001
|
}
|
|
30804
31002
|
};
|
|
30805
|
-
const _hoisted_1$
|
|
31003
|
+
const _hoisted_1$x = { class: "i-layout-page-header" };
|
|
30806
31004
|
function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30807
31005
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
30808
31006
|
const _component_Button = resolveComponent("Button");
|
|
@@ -30816,7 +31014,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
30816
31014
|
const _component_dialog_select = resolveComponent("dialog-select");
|
|
30817
31015
|
const _component_Checkbox = resolveComponent("Checkbox");
|
|
30818
31016
|
return openBlock(), createElementBlock("div", null, [
|
|
30819
|
-
createElementVNode("div", _hoisted_1$
|
|
31017
|
+
createElementVNode("div", _hoisted_1$x, [
|
|
30820
31018
|
createVNode$1(_component_PageHeader, {
|
|
30821
31019
|
title: _ctx.$route.meta.title,
|
|
30822
31020
|
content: _ctx.$route.meta.description,
|
|
@@ -31029,7 +31227,7 @@ function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
31029
31227
|
]);
|
|
31030
31228
|
}
|
|
31031
31229
|
var user = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_render$L], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/user.vue"]]);
|
|
31032
|
-
var
|
|
31230
|
+
var __glob_46_33 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
31033
31231
|
__proto__: null,
|
|
31034
31232
|
"default": user
|
|
31035
31233
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -31183,7 +31381,7 @@ const _sfc_main$K = {
|
|
|
31183
31381
|
}
|
|
31184
31382
|
}
|
|
31185
31383
|
};
|
|
31186
|
-
const _hoisted_1$
|
|
31384
|
+
const _hoisted_1$w = { class: "i-layout-page-header" };
|
|
31187
31385
|
const _hoisted_2$p = /* @__PURE__ */ createElementVNode("span", null, null, -1);
|
|
31188
31386
|
const _hoisted_3$m = /* @__PURE__ */ createElementVNode("span", null, null, -1);
|
|
31189
31387
|
const _hoisted_4$e = /* @__PURE__ */ createTextVNode(" \u53D1\u8868\u610F\u89C1 ");
|
|
@@ -31204,7 +31402,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
31204
31402
|
const _component_Form = resolveComponent("Form");
|
|
31205
31403
|
const _component_Modal = resolveComponent("Modal");
|
|
31206
31404
|
return openBlock(), createElementBlock("div", null, [
|
|
31207
|
-
createElementVNode("div", _hoisted_1$
|
|
31405
|
+
createElementVNode("div", _hoisted_1$w, [
|
|
31208
31406
|
createVNode$1(_component_PageHeader, {
|
|
31209
31407
|
title: _ctx.$route.meta.title,
|
|
31210
31408
|
content: _ctx.$route.meta.description,
|
|
@@ -31421,7 +31619,7 @@ function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
31421
31619
|
]);
|
|
31422
31620
|
}
|
|
31423
31621
|
var processPage = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["render", _sfc_render$K], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/template/processPage.vue"]]);
|
|
31424
|
-
var
|
|
31622
|
+
var __glob_46_34 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
31425
31623
|
__proto__: null,
|
|
31426
31624
|
"default": processPage
|
|
31427
31625
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -31478,7 +31676,7 @@ var dataSourceApi = {
|
|
|
31478
31676
|
try {
|
|
31479
31677
|
LODOP = lodop.getLodop();
|
|
31480
31678
|
} catch (e2) {
|
|
31481
|
-
alert(window.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
31679
|
+
alert(window.$app.$t("Front_Msg_Check_Print_Driver") + e2.message);
|
|
31482
31680
|
return;
|
|
31483
31681
|
}
|
|
31484
31682
|
let data2 = {
|
|
@@ -31836,7 +32034,7 @@ const _sfc_main$J = {
|
|
|
31836
32034
|
}
|
|
31837
32035
|
}
|
|
31838
32036
|
};
|
|
31839
|
-
const _hoisted_1$
|
|
32037
|
+
const _hoisted_1$v = ["id"];
|
|
31840
32038
|
function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
|
|
31841
32039
|
const _component_Button = resolveComponent("Button");
|
|
31842
32040
|
const _component_Input = resolveComponent("Input");
|
|
@@ -31847,7 +32045,7 @@ function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
31847
32045
|
key: 0,
|
|
31848
32046
|
id: $data.uid,
|
|
31849
32047
|
style: normalizeStyle$1([{ "margin": "auto" }, { height: $data.setting.chartHeight ? $data.setting.chartHeight + "px" : "400px", width: $data.setting.chartWidth ? $data.setting.chartWidth + "px" : "95%" }])
|
|
31850
|
-
}, null, 12, _hoisted_1$
|
|
32048
|
+
}, null, 12, _hoisted_1$v)) : createCommentVNode("v-if", true),
|
|
31851
32049
|
createElementVNode("div", null, [
|
|
31852
32050
|
_ctx.allow("permission/tableView") ? (openBlock(), createBlock(_component_Button, {
|
|
31853
32051
|
key: 0,
|
|
@@ -31952,14 +32150,14 @@ const _sfc_main$I = {
|
|
|
31952
32150
|
}
|
|
31953
32151
|
}
|
|
31954
32152
|
};
|
|
31955
|
-
const _hoisted_1$
|
|
32153
|
+
const _hoisted_1$u = { class: "i-layout-page-header" };
|
|
31956
32154
|
function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
31957
32155
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
31958
32156
|
const _component_view_chart = resolveComponent("view-chart");
|
|
31959
32157
|
const _component_view_table = resolveComponent("view-table");
|
|
31960
32158
|
const _component_Card = resolveComponent("Card");
|
|
31961
32159
|
return openBlock(), createElementBlock("div", null, [
|
|
31962
|
-
createElementVNode("div", _hoisted_1$
|
|
32160
|
+
createElementVNode("div", _hoisted_1$u, [
|
|
31963
32161
|
createVNode$1(_component_PageHeader, {
|
|
31964
32162
|
title: _ctx.$route.meta.title,
|
|
31965
32163
|
content: _ctx.$route.meta.description,
|
|
@@ -31989,7 +32187,7 @@ function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
31989
32187
|
]);
|
|
31990
32188
|
}
|
|
31991
32189
|
var reportPage = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["render", _sfc_render$I], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/template/reportPage.vue"]]);
|
|
31992
|
-
var
|
|
32190
|
+
var __glob_46_35 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
31993
32191
|
__proto__: null,
|
|
31994
32192
|
"default": reportPage
|
|
31995
32193
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -32057,7 +32255,7 @@ const _sfc_main$H = {
|
|
|
32057
32255
|
}
|
|
32058
32256
|
}
|
|
32059
32257
|
};
|
|
32060
|
-
const _hoisted_1$
|
|
32258
|
+
const _hoisted_1$t = { class: "i-layout-page-header" };
|
|
32061
32259
|
const _hoisted_2$o = { command: "{ row }" };
|
|
32062
32260
|
function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
32063
32261
|
const _component_PageHeader = resolveComponent("PageHeader");
|
|
@@ -32067,7 +32265,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
32067
32265
|
const _component_modal_form = resolveComponent("modal-form");
|
|
32068
32266
|
const _component_modal_table = resolveComponent("modal-table");
|
|
32069
32267
|
return openBlock(), createElementBlock("div", null, [
|
|
32070
|
-
createElementVNode("div", _hoisted_1$
|
|
32268
|
+
createElementVNode("div", _hoisted_1$t, [
|
|
32071
32269
|
createVNode$1(_component_PageHeader, {
|
|
32072
32270
|
title: _ctx.$route.meta.title,
|
|
32073
32271
|
content: _ctx.$route.meta.description,
|
|
@@ -32150,7 +32348,7 @@ function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
32150
32348
|
]);
|
|
32151
32349
|
}
|
|
32152
32350
|
var viewPage = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$H], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/template/viewPage.vue"]]);
|
|
32153
|
-
var
|
|
32351
|
+
var __glob_46_36 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
32154
32352
|
__proto__: null,
|
|
32155
32353
|
"default": viewPage
|
|
32156
32354
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -32167,7 +32365,7 @@ function _sfc_render$G(_ctx, _cache) {
|
|
|
32167
32365
|
]);
|
|
32168
32366
|
}
|
|
32169
32367
|
var _404 = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render$G], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/pages/system/error/404.vue"]]);
|
|
32170
|
-
var
|
|
32368
|
+
var __glob_46_37 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
32171
32369
|
__proto__: null,
|
|
32172
32370
|
"default": _404
|
|
32173
32371
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
@@ -32301,7 +32499,7 @@ const _sfc_main$F = {
|
|
|
32301
32499
|
off$1(window, "resize", this.handleWindowResize);
|
|
32302
32500
|
}
|
|
32303
32501
|
};
|
|
32304
|
-
const _hoisted_1$
|
|
32502
|
+
const _hoisted_1$s = { id: "app" };
|
|
32305
32503
|
const _hoisted_2$n = {
|
|
32306
32504
|
key: 0,
|
|
32307
32505
|
class: "page-loader-wrapper"
|
|
@@ -32311,7 +32509,7 @@ const _hoisted_4$d = { class: "m-t-30" };
|
|
|
32311
32509
|
const _hoisted_5$b = ["src"];
|
|
32312
32510
|
function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) {
|
|
32313
32511
|
const _component_router_view = resolveComponent("router-view");
|
|
32314
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
32512
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
32315
32513
|
createVNode$1(_component_router_view),
|
|
32316
32514
|
createVNode$1(Transition, { name: "loader" }, {
|
|
32317
32515
|
default: withCtx(() => [
|
|
@@ -32542,7 +32740,7 @@ const _sfc_main$D = {
|
|
|
32542
32740
|
}
|
|
32543
32741
|
}
|
|
32544
32742
|
};
|
|
32545
|
-
const _hoisted_1$
|
|
32743
|
+
const _hoisted_1$r = ["href", "target"];
|
|
32546
32744
|
function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
|
|
32547
32745
|
return openBlock(), createElementBlock("a", {
|
|
32548
32746
|
href: _ctx.linkUrl,
|
|
@@ -32555,7 +32753,7 @@ function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
32555
32753
|
]
|
|
32556
32754
|
}, [
|
|
32557
32755
|
renderSlot(_ctx.$slots, "default")
|
|
32558
|
-
], 10, _hoisted_1$
|
|
32756
|
+
], 10, _hoisted_1$r);
|
|
32559
32757
|
}
|
|
32560
32758
|
var Link = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["render", _sfc_render$D], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/link/index.vue"]]);
|
|
32561
32759
|
/**
|
|
@@ -32807,9 +33005,9 @@ const _sfc_main$C = {
|
|
|
32807
33005
|
}
|
|
32808
33006
|
}
|
|
32809
33007
|
};
|
|
32810
|
-
const _hoisted_1$
|
|
33008
|
+
const _hoisted_1$q = { id: "editor" };
|
|
32811
33009
|
function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) {
|
|
32812
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
33010
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q);
|
|
32813
33011
|
}
|
|
32814
33012
|
var RichEditor = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["render", _sfc_render$C], ["__file", "D:/Project/Mooho/FrontEnd/mooho-base-admin-plus/src/components/richEditor/index.vue"]]);
|
|
32815
33013
|
const _sfc_main$B = {
|
|
@@ -33132,7 +33330,7 @@ const _sfc_main$A = {
|
|
|
33132
33330
|
}
|
|
33133
33331
|
}
|
|
33134
33332
|
};
|
|
33135
|
-
const _hoisted_1$
|
|
33333
|
+
const _hoisted_1$p = { class: "title" };
|
|
33136
33334
|
const _hoisted_2$m = { class: "description" };
|
|
33137
33335
|
const _hoisted_3$k = { class: "ivu-pl-8" };
|
|
33138
33336
|
const _hoisted_4$c = { class: "ivu-pl-8" };
|
|
@@ -33159,7 +33357,7 @@ function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33159
33357
|
}, {
|
|
33160
33358
|
header: withCtx(() => [
|
|
33161
33359
|
createElementVNode("div", null, [
|
|
33162
|
-
createElementVNode("span", _hoisted_1$
|
|
33360
|
+
createElementVNode("span", _hoisted_1$p, toDisplayString$1($props.title), 1),
|
|
33163
33361
|
createElementVNode("span", _hoisted_2$m, toDisplayString$1($props.description), 1)
|
|
33164
33362
|
])
|
|
33165
33363
|
]),
|
|
@@ -33303,6 +33501,10 @@ const _sfc_main$z = {
|
|
|
33303
33501
|
},
|
|
33304
33502
|
accept: {
|
|
33305
33503
|
type: String
|
|
33504
|
+
},
|
|
33505
|
+
draggable: {
|
|
33506
|
+
type: Boolean,
|
|
33507
|
+
default: false
|
|
33306
33508
|
}
|
|
33307
33509
|
},
|
|
33308
33510
|
computed: {
|
|
@@ -33362,8 +33564,13 @@ const _sfc_main$z = {
|
|
|
33362
33564
|
}
|
|
33363
33565
|
}
|
|
33364
33566
|
};
|
|
33567
|
+
const _hoisted_1$o = {
|
|
33568
|
+
key: 1,
|
|
33569
|
+
style: { "padding": "20px 0" }
|
|
33570
|
+
};
|
|
33365
33571
|
function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
33366
33572
|
const _component_Button = resolveComponent("Button");
|
|
33573
|
+
const _component_Icon = resolveComponent("Icon");
|
|
33367
33574
|
const _component_Upload = resolveComponent("Upload");
|
|
33368
33575
|
const _component_Input = resolveComponent("Input");
|
|
33369
33576
|
return openBlock(), createElementBlock("div", null, [
|
|
@@ -33377,10 +33584,11 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33377
33584
|
"on-remove": $options.onUploadRemove,
|
|
33378
33585
|
disabled: $props.readonly,
|
|
33379
33586
|
accept: $props.accept,
|
|
33380
|
-
multiple: true
|
|
33587
|
+
multiple: true,
|
|
33588
|
+
type: $props.draggable ? "drag" : "select"
|
|
33381
33589
|
}, {
|
|
33382
33590
|
default: withCtx(() => [
|
|
33383
|
-
!$props.readonly ? (openBlock(), createBlock(_component_Button, {
|
|
33591
|
+
!$props.draggable && !$props.readonly ? (openBlock(), createBlock(_component_Button, {
|
|
33384
33592
|
key: 0,
|
|
33385
33593
|
size: $props.size,
|
|
33386
33594
|
icon: "ios-cloud-upload-outline"
|
|
@@ -33389,10 +33597,18 @@ function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
33389
33597
|
createTextVNode(toDisplayString$1(_ctx.$t("Front_Btn_Upload")), 1)
|
|
33390
33598
|
]),
|
|
33391
33599
|
_: 1
|
|
33392
|
-
}, 8, ["size"])) : createCommentVNode("v-if", true)
|
|
33600
|
+
}, 8, ["size"])) : createCommentVNode("v-if", true),
|
|
33601
|
+
$props.draggable && !$props.readonly ? (openBlock(), createElementBlock("div", _hoisted_1$o, [
|
|
33602
|
+
createVNode$1(_component_Icon, {
|
|
33603
|
+
type: "ios-cloud-upload",
|
|
33604
|
+
size: "52",
|
|
33605
|
+
style: { "color": "#3399ff" }
|
|
33606
|
+
}),
|
|
33607
|
+
createElementVNode("p", null, toDisplayString$1(_ctx.$t("Front_Label_Drag_Upload")), 1)
|
|
33608
|
+
])) : createCommentVNode("v-if", true)
|
|
33393
33609
|
]),
|
|
33394
33610
|
_: 1
|
|
33395
|
-
}, 8, ["action", "headers", "default-file-list", "before-upload", "on-success", "on-preview", "on-remove", "disabled", "accept"]),
|
|
33611
|
+
}, 8, ["action", "headers", "default-file-list", "before-upload", "on-success", "on-preview", "on-remove", "disabled", "accept", "type"]),
|
|
33396
33612
|
withDirectives(createVNode$1(_component_Input, {
|
|
33397
33613
|
type: "text",
|
|
33398
33614
|
"model-value": $props.modelValue,
|
|
@@ -34221,22 +34437,22 @@ const _sfc_main$w = {
|
|
|
34221
34437
|
async onDataChange(sender, selected) {
|
|
34222
34438
|
for (let column of this.columns) {
|
|
34223
34439
|
if (!!(column.showJson || "").trim()) {
|
|
34224
|
-
let
|
|
34225
|
-
if (
|
|
34226
|
-
column.isShow = this.judgeCondition(
|
|
34440
|
+
let setting2 = JSON.parse(column.showJson);
|
|
34441
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
34442
|
+
column.isShow = this.judgeCondition(setting2, this.data);
|
|
34227
34443
|
}
|
|
34228
34444
|
}
|
|
34229
34445
|
if (!!(column.readonlyJson || "").trim()) {
|
|
34230
|
-
let
|
|
34231
|
-
if (
|
|
34232
|
-
column.isReadonly = this.judgeCondition(
|
|
34446
|
+
let setting2 = JSON.parse(column.readonlyJson);
|
|
34447
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
34448
|
+
column.isReadonly = this.judgeCondition(setting2, this.data);
|
|
34233
34449
|
}
|
|
34234
34450
|
}
|
|
34235
34451
|
if (!!(column.requiredJson || "").trim()) {
|
|
34236
|
-
let
|
|
34237
|
-
if (
|
|
34452
|
+
let setting2 = JSON.parse(column.requiredJson);
|
|
34453
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
34238
34454
|
let before = column.isRequired;
|
|
34239
|
-
column.isRequired = this.judgeCondition(
|
|
34455
|
+
column.isRequired = this.judgeCondition(setting2, this.data);
|
|
34240
34456
|
if (before != column.isRequired) {
|
|
34241
34457
|
let field = this.$refs.form.fields.find((field2) => {
|
|
34242
34458
|
return field2.prop == column.code;
|
|
@@ -34921,8 +35137,9 @@ function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
34921
35137
|
"model-value": _ctx.parseData($data.data, column.code),
|
|
34922
35138
|
"onUpdate:modelValue": ($event) => _ctx.setData($data.data, column.code, $event),
|
|
34923
35139
|
maxCount: column.maxLength,
|
|
34924
|
-
accept: column.pattern
|
|
34925
|
-
|
|
35140
|
+
accept: column.pattern,
|
|
35141
|
+
draggable: column.mergeSame
|
|
35142
|
+
}, null, 8, ["model-value", "onUpdate:modelValue", "maxCount", "accept", "draggable"])) : createCommentVNode("v-if", true),
|
|
34926
35143
|
($props.readonly || column.isReadonly) && !!(_ctx.parseData($data.data, column.code) || "").trim() ? (openBlock(true), createElementBlock(Fragment, { key: 1 }, renderList(JSON.parse(_ctx.parseData($data.data, column.code)), (attachment, attachmentIndex) => {
|
|
34927
35144
|
return openBlock(), createElementBlock("a", {
|
|
34928
35145
|
href: _ctx.getAttachmentUrl(attachment.file, attachment.name),
|
|
@@ -35266,19 +35483,19 @@ const _sfc_main$v = {
|
|
|
35266
35483
|
if (!(json || "").trim()) {
|
|
35267
35484
|
return true;
|
|
35268
35485
|
} else {
|
|
35269
|
-
let
|
|
35270
|
-
return
|
|
35486
|
+
let setting2 = JSON.parse(json);
|
|
35487
|
+
return setting2.type == "True" || setting2.type == "False";
|
|
35271
35488
|
}
|
|
35272
35489
|
},
|
|
35273
35490
|
checkChange(jsonKey, checkKey) {
|
|
35274
35491
|
if (!!(this.data[jsonKey] || "").trim()) {
|
|
35275
|
-
let
|
|
35492
|
+
let setting2 = JSON.parse(this.data[jsonKey]);
|
|
35276
35493
|
if (this.data[checkKey]) {
|
|
35277
|
-
|
|
35494
|
+
setting2.type = "True";
|
|
35278
35495
|
} else {
|
|
35279
|
-
|
|
35496
|
+
setting2.type = "False";
|
|
35280
35497
|
}
|
|
35281
|
-
this.data[jsonKey] = JSON.stringify(
|
|
35498
|
+
this.data[jsonKey] = JSON.stringify(setting2);
|
|
35282
35499
|
}
|
|
35283
35500
|
}
|
|
35284
35501
|
}
|
|
@@ -35317,7 +35534,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
35317
35534
|
return openBlock(), createElementBlock("div", null, [
|
|
35318
35535
|
createVNode$1(_component_Modal, {
|
|
35319
35536
|
modelValue: $data.opened,
|
|
35320
|
-
"onUpdate:modelValue": _cache[
|
|
35537
|
+
"onUpdate:modelValue": _cache[54] || (_cache[54] = ($event) => $data.opened = $event),
|
|
35321
35538
|
scrollable: "",
|
|
35322
35539
|
"mask-closable": _ctx.layout.maskClosable,
|
|
35323
35540
|
draggable: _ctx.layout.draggable,
|
|
@@ -35364,7 +35581,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
35364
35581
|
"label-colon": "\uFF1A",
|
|
35365
35582
|
class: "ivu-mt",
|
|
35366
35583
|
rules: $data.rules,
|
|
35367
|
-
onSubmit: _cache[
|
|
35584
|
+
onSubmit: _cache[53] || (_cache[53] = withModifiers(() => {
|
|
35368
35585
|
}, ["prevent"]))
|
|
35369
35586
|
}, {
|
|
35370
35587
|
default: withCtx(() => [
|
|
@@ -36019,7 +36236,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36019
36236
|
]),
|
|
36020
36237
|
_: 1
|
|
36021
36238
|
}, 16),
|
|
36022
|
-
|
|
36239
|
+
$props.viewType == "TableView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 18 }, _ctx.grid8)), {
|
|
36023
36240
|
default: withCtx(() => [
|
|
36024
36241
|
createVNode$1(_component_FormItem, {
|
|
36025
36242
|
label: "\u7981\u7528\u6392\u5E8F",
|
|
@@ -36038,7 +36255,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36038
36255
|
})
|
|
36039
36256
|
]),
|
|
36040
36257
|
_: 1
|
|
36041
|
-
}, 16),
|
|
36258
|
+
}, 16)) : createCommentVNode("v-if", true),
|
|
36042
36259
|
createVNode$1(_component_Col, normalizeProps(guardReactiveProps(_ctx.grid8)), {
|
|
36043
36260
|
default: withCtx(() => [
|
|
36044
36261
|
createVNode$1(_component_FormItem, {
|
|
@@ -36079,7 +36296,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36079
36296
|
]),
|
|
36080
36297
|
_: 1
|
|
36081
36298
|
}, 16),
|
|
36082
|
-
$data.data.controlType == "TextInput" || $data.data.controlType == "TextArea" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36299
|
+
$data.data.controlType == "TextInput" || $data.data.controlType == "TextArea" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 19 }, _ctx.grid8)), {
|
|
36083
36300
|
default: withCtx(() => [
|
|
36084
36301
|
createVNode$1(_component_FormItem, {
|
|
36085
36302
|
label: "\u6700\u5927\u5B57\u7B26\u6570\u91CF",
|
|
@@ -36100,7 +36317,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36100
36317
|
]),
|
|
36101
36318
|
_: 1
|
|
36102
36319
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36103
|
-
$data.data.controlType == "Attachment" || $data.data.controlType == "Image" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36320
|
+
$data.data.controlType == "Attachment" || $data.data.controlType == "Image" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 20 }, _ctx.grid8)), {
|
|
36104
36321
|
default: withCtx(() => [
|
|
36105
36322
|
createVNode$1(_component_FormItem, {
|
|
36106
36323
|
label: "\u6700\u5927\u6587\u4EF6\u6570\u91CF",
|
|
@@ -36121,9 +36338,9 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36121
36338
|
]),
|
|
36122
36339
|
_: 1
|
|
36123
36340
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36124
|
-
$data.data.controlType == "NumberInput" || $data.data.controlType == "Slider" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36341
|
+
$data.data.controlType == "NumberInput" || $data.data.controlType == "Slider" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 21 }, _ctx.grid8)), {
|
|
36125
36342
|
default: withCtx(() => [
|
|
36126
|
-
createVNode$1(_component_FormItem, { label: "\
|
|
36343
|
+
createVNode$1(_component_FormItem, { label: "\u8F93\u5165\u8303\u56F4" }, {
|
|
36127
36344
|
default: withCtx(() => [
|
|
36128
36345
|
createVNode$1(_component_Input, {
|
|
36129
36346
|
type: "number",
|
|
@@ -36149,7 +36366,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36149
36366
|
createVNode$1(_component_Col, normalizeProps(guardReactiveProps(_ctx.grid8)), {
|
|
36150
36367
|
default: withCtx(() => [
|
|
36151
36368
|
createVNode$1(_component_FormItem, {
|
|
36152
|
-
label: "\
|
|
36369
|
+
label: "\u663E\u793A\u4FDD\u7559\u5C0F\u6570\u4F4D",
|
|
36153
36370
|
key: "digit",
|
|
36154
36371
|
prop: "digit"
|
|
36155
36372
|
}, {
|
|
@@ -36187,7 +36404,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36187
36404
|
]),
|
|
36188
36405
|
_: 1
|
|
36189
36406
|
}, 16),
|
|
36190
|
-
$props.viewType == "FormView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36407
|
+
$props.viewType == "FormView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 22 }, _ctx.grid8)), {
|
|
36191
36408
|
default: withCtx(() => [
|
|
36192
36409
|
createVNode$1(_component_FormItem, {
|
|
36193
36410
|
label: "\u5F3A\u5236\u6362\u884C",
|
|
@@ -36207,7 +36424,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36207
36424
|
]),
|
|
36208
36425
|
_: 1
|
|
36209
36426
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36210
|
-
$props.viewType == "TableView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36427
|
+
$props.viewType == "TableView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 23 }, _ctx.grid8)), {
|
|
36211
36428
|
default: withCtx(() => [
|
|
36212
36429
|
createVNode$1(_component_FormItem, {
|
|
36213
36430
|
label: "\u7236\u5355\u5143\u683C\u4EE3\u7801",
|
|
@@ -36227,7 +36444,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36227
36444
|
]),
|
|
36228
36445
|
_: 1
|
|
36229
36446
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36230
|
-
$props.viewType == "TableView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36447
|
+
$props.viewType == "TableView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 24 }, _ctx.grid8)), {
|
|
36231
36448
|
default: withCtx(() => [
|
|
36232
36449
|
createVNode$1(_component_FormItem, {
|
|
36233
36450
|
label: "\u5408\u5E76\u5355\u5143\u683C",
|
|
@@ -36247,7 +36464,27 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36247
36464
|
]),
|
|
36248
36465
|
_: 1
|
|
36249
36466
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36250
|
-
$data.data.controlType == "
|
|
36467
|
+
$props.viewType == "FormView" && $data.data.controlType == "Attachment" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 25 }, _ctx.grid8)), {
|
|
36468
|
+
default: withCtx(() => [
|
|
36469
|
+
createVNode$1(_component_FormItem, {
|
|
36470
|
+
label: "\u62D6\u62FD\u4E0A\u4F20",
|
|
36471
|
+
key: "mergeSame",
|
|
36472
|
+
prop: "mergeSame"
|
|
36473
|
+
}, {
|
|
36474
|
+
default: withCtx(() => [
|
|
36475
|
+
createVNode$1(_component_Switch, {
|
|
36476
|
+
"model-value": !!$data.data.mergeSame,
|
|
36477
|
+
"onUpdate:modelValue": _cache[47] || (_cache[47] = ($event) => {
|
|
36478
|
+
$data.data.mergeSame = $event;
|
|
36479
|
+
})
|
|
36480
|
+
}, null, 8, ["model-value"])
|
|
36481
|
+
]),
|
|
36482
|
+
_: 1
|
|
36483
|
+
})
|
|
36484
|
+
]),
|
|
36485
|
+
_: 1
|
|
36486
|
+
}, 16)) : createCommentVNode("v-if", true),
|
|
36487
|
+
$data.data.controlType == "TextInput" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 26 }, _ctx.grid8)), {
|
|
36251
36488
|
default: withCtx(() => [
|
|
36252
36489
|
createVNode$1(_component_FormItem, {
|
|
36253
36490
|
label: "\u9A8C\u8BC1\u8868\u8FBE\u5F0F",
|
|
@@ -36258,7 +36495,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36258
36495
|
createVNode$1(_component_Input, {
|
|
36259
36496
|
type: "text",
|
|
36260
36497
|
modelValue: $data.data.pattern,
|
|
36261
|
-
"onUpdate:modelValue": _cache[
|
|
36498
|
+
"onUpdate:modelValue": _cache[48] || (_cache[48] = ($event) => $data.data.pattern = $event),
|
|
36262
36499
|
maxlength: "100"
|
|
36263
36500
|
}, null, 8, ["modelValue"])
|
|
36264
36501
|
]),
|
|
@@ -36267,7 +36504,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36267
36504
|
]),
|
|
36268
36505
|
_: 1
|
|
36269
36506
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36270
|
-
$data.data.controlType == "SelectWithOther" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36507
|
+
$data.data.controlType == "SelectWithOther" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 27 }, _ctx.grid8)), {
|
|
36271
36508
|
default: withCtx(() => [
|
|
36272
36509
|
createVNode$1(_component_FormItem, {
|
|
36273
36510
|
label: "\u5176\u4ED6\u6587\u672C",
|
|
@@ -36278,7 +36515,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36278
36515
|
createVNode$1(_component_Input, {
|
|
36279
36516
|
type: "text",
|
|
36280
36517
|
modelValue: $data.data.pattern,
|
|
36281
|
-
"onUpdate:modelValue": _cache[
|
|
36518
|
+
"onUpdate:modelValue": _cache[49] || (_cache[49] = ($event) => $data.data.pattern = $event),
|
|
36282
36519
|
maxlength: "100"
|
|
36283
36520
|
}, null, 8, ["modelValue"])
|
|
36284
36521
|
]),
|
|
@@ -36287,7 +36524,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36287
36524
|
]),
|
|
36288
36525
|
_: 1
|
|
36289
36526
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36290
|
-
$data.data.controlType == "Attachment" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36527
|
+
$data.data.controlType == "Attachment" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 28 }, _ctx.grid8)), {
|
|
36291
36528
|
default: withCtx(() => [
|
|
36292
36529
|
createVNode$1(_component_FormItem, {
|
|
36293
36530
|
label: "\u63A5\u53D7\u7684\u6587\u4EF6\u7C7B\u578B",
|
|
@@ -36298,7 +36535,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36298
36535
|
createVNode$1(_component_Input, {
|
|
36299
36536
|
type: "text",
|
|
36300
36537
|
modelValue: $data.data.pattern,
|
|
36301
|
-
"onUpdate:modelValue": _cache[
|
|
36538
|
+
"onUpdate:modelValue": _cache[50] || (_cache[50] = ($event) => $data.data.pattern = $event),
|
|
36302
36539
|
maxlength: "100"
|
|
36303
36540
|
}, null, 8, ["modelValue"])
|
|
36304
36541
|
]),
|
|
@@ -36307,7 +36544,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36307
36544
|
]),
|
|
36308
36545
|
_: 1
|
|
36309
36546
|
}, 16)) : createCommentVNode("v-if", true),
|
|
36310
|
-
$props.viewType == "FormView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key:
|
|
36547
|
+
$props.viewType == "FormView" ? (openBlock(), createBlock(_component_Col, normalizeProps(mergeProps({ key: 29 }, _ctx.grid8)), {
|
|
36311
36548
|
default: withCtx(() => [
|
|
36312
36549
|
createVNode$1(_component_FormItem, {
|
|
36313
36550
|
label: "\u9009\u9879\u5361\u5E8F\u53F7",
|
|
@@ -36320,7 +36557,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36320
36557
|
style: { "width": "100px" },
|
|
36321
36558
|
number: "",
|
|
36322
36559
|
modelValue: $data.data.tabIndex,
|
|
36323
|
-
"onUpdate:modelValue": _cache[
|
|
36560
|
+
"onUpdate:modelValue": _cache[51] || (_cache[51] = ($event) => $data.data.tabIndex = $event)
|
|
36324
36561
|
}, null, 8, ["modelValue"])
|
|
36325
36562
|
]),
|
|
36326
36563
|
_: 1
|
|
@@ -36339,7 +36576,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36339
36576
|
createVNode$1(_component_Input, {
|
|
36340
36577
|
type: "text",
|
|
36341
36578
|
modelValue: $data.data.calculate,
|
|
36342
|
-
"onUpdate:modelValue": _cache[
|
|
36579
|
+
"onUpdate:modelValue": _cache[52] || (_cache[52] = ($event) => $data.data.calculate = $event),
|
|
36343
36580
|
maxlength: "500"
|
|
36344
36581
|
}, null, 8, ["modelValue"])
|
|
36345
36582
|
]),
|
|
@@ -36360,7 +36597,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36360
36597
|
}, 8, ["modelValue", "mask-closable", "draggable"]),
|
|
36361
36598
|
createVNode$1(_component_Modal, {
|
|
36362
36599
|
modelValue: $data.paramOpened,
|
|
36363
|
-
"onUpdate:modelValue": _cache[
|
|
36600
|
+
"onUpdate:modelValue": _cache[56] || (_cache[56] = ($event) => $data.paramOpened = $event),
|
|
36364
36601
|
scrollable: "",
|
|
36365
36602
|
"mask-closable": _ctx.layout.maskClosable,
|
|
36366
36603
|
draggable: _ctx.layout.draggable,
|
|
@@ -36382,7 +36619,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36382
36619
|
type: "primary",
|
|
36383
36620
|
ghost: "",
|
|
36384
36621
|
"custom-icon": "fa fa-plus",
|
|
36385
|
-
onClick: _cache[
|
|
36622
|
+
onClick: _cache[55] || (_cache[55] = ($event) => $options.paramEdit())
|
|
36386
36623
|
}, {
|
|
36387
36624
|
default: withCtx(() => [
|
|
36388
36625
|
createTextVNode(toDisplayString$1(_ctx.$t("Front_Btn_Add")), 1)
|
|
@@ -36451,7 +36688,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36451
36688
|
}, 8, ["modelValue", "mask-closable", "draggable"]),
|
|
36452
36689
|
createVNode$1(_component_Modal, {
|
|
36453
36690
|
modelValue: $data.paramItemOpened,
|
|
36454
|
-
"onUpdate:modelValue": _cache[
|
|
36691
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = ($event) => $data.paramItemOpened = $event),
|
|
36455
36692
|
scrollable: "",
|
|
36456
36693
|
"mask-closable": _ctx.layout.maskClosable,
|
|
36457
36694
|
draggable: _ctx.layout.draggable,
|
|
@@ -36495,7 +36732,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36495
36732
|
"label-position": "top",
|
|
36496
36733
|
"label-colon": "\uFF1A",
|
|
36497
36734
|
class: "ivu-mt",
|
|
36498
|
-
onSubmit: _cache[
|
|
36735
|
+
onSubmit: _cache[62] || (_cache[62] = withModifiers(() => {
|
|
36499
36736
|
}, ["prevent"]))
|
|
36500
36737
|
}, {
|
|
36501
36738
|
default: withCtx(() => [
|
|
@@ -36515,12 +36752,12 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36515
36752
|
createVNode$1(_component_Input, {
|
|
36516
36753
|
type: "text",
|
|
36517
36754
|
modelValue: $data.paramData.code,
|
|
36518
|
-
"onUpdate:modelValue": _cache[
|
|
36755
|
+
"onUpdate:modelValue": _cache[58] || (_cache[58] = ($event) => $data.paramData.code = $event)
|
|
36519
36756
|
}, {
|
|
36520
36757
|
prepend: withCtx(() => [
|
|
36521
36758
|
createVNode$1(_component_Button, {
|
|
36522
36759
|
"custom-icon": "fa fa-search",
|
|
36523
|
-
onClick: _cache[
|
|
36760
|
+
onClick: _cache[57] || (_cache[57] = ($event) => $options.openColumnSelect($data.paramData, "code"))
|
|
36524
36761
|
})
|
|
36525
36762
|
]),
|
|
36526
36763
|
_: 1
|
|
@@ -36541,7 +36778,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36541
36778
|
default: withCtx(() => [
|
|
36542
36779
|
createVNode$1(_component_RadioGroup, {
|
|
36543
36780
|
modelValue: $data.paramData.keyType,
|
|
36544
|
-
"onUpdate:modelValue": _cache[
|
|
36781
|
+
"onUpdate:modelValue": _cache[59] || (_cache[59] = ($event) => $data.paramData.keyType = $event),
|
|
36545
36782
|
onOnChange: $options.keyTypeChange
|
|
36546
36783
|
}, {
|
|
36547
36784
|
default: withCtx(() => [
|
|
@@ -36567,7 +36804,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36567
36804
|
createVNode$1(_component_Input, {
|
|
36568
36805
|
type: "text",
|
|
36569
36806
|
modelValue: $data.paramData.val,
|
|
36570
|
-
"onUpdate:modelValue": _cache[
|
|
36807
|
+
"onUpdate:modelValue": _cache[60] || (_cache[60] = ($event) => $data.paramData.val = $event)
|
|
36571
36808
|
}, null, 8, ["modelValue"])
|
|
36572
36809
|
]),
|
|
36573
36810
|
_: 1
|
|
@@ -36586,7 +36823,7 @@ function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
36586
36823
|
createVNode$1(_component_Input, {
|
|
36587
36824
|
type: "text",
|
|
36588
36825
|
modelValue: $data.paramData.val,
|
|
36589
|
-
"onUpdate:modelValue": _cache[
|
|
36826
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = ($event) => $data.paramData.val = $event)
|
|
36590
36827
|
}, {
|
|
36591
36828
|
prepend: withCtx(() => [
|
|
36592
36829
|
createVNode$1(_component_Button, {
|
|
@@ -36639,7 +36876,7 @@ const _sfc_main$u = {
|
|
|
36639
36876
|
{
|
|
36640
36877
|
type: "index",
|
|
36641
36878
|
width: 100,
|
|
36642
|
-
title:
|
|
36879
|
+
title: " ",
|
|
36643
36880
|
align: "center"
|
|
36644
36881
|
},
|
|
36645
36882
|
{
|
|
@@ -37012,7 +37249,7 @@ const _sfc_main$t = {
|
|
|
37012
37249
|
{
|
|
37013
37250
|
type: "index",
|
|
37014
37251
|
width: 100,
|
|
37015
|
-
title:
|
|
37252
|
+
title: " ",
|
|
37016
37253
|
align: "center"
|
|
37017
37254
|
},
|
|
37018
37255
|
{
|
|
@@ -37699,19 +37936,19 @@ const _sfc_main$s = {
|
|
|
37699
37936
|
if (!(json || "").trim()) {
|
|
37700
37937
|
return true;
|
|
37701
37938
|
} else {
|
|
37702
|
-
let
|
|
37703
|
-
return
|
|
37939
|
+
let setting2 = JSON.parse(json);
|
|
37940
|
+
return setting2.type == "True" || setting2.type == "False";
|
|
37704
37941
|
}
|
|
37705
37942
|
},
|
|
37706
37943
|
checkChange(jsonKey, checkKey) {
|
|
37707
37944
|
if (!!(this.data[jsonKey] || "").trim()) {
|
|
37708
|
-
let
|
|
37945
|
+
let setting2 = JSON.parse(this.data[jsonKey]);
|
|
37709
37946
|
if (this.data[checkKey]) {
|
|
37710
|
-
|
|
37947
|
+
setting2.type = "True";
|
|
37711
37948
|
} else {
|
|
37712
|
-
|
|
37949
|
+
setting2.type = "False";
|
|
37713
37950
|
}
|
|
37714
|
-
this.data[jsonKey] = JSON.stringify(
|
|
37951
|
+
this.data[jsonKey] = JSON.stringify(setting2);
|
|
37715
37952
|
}
|
|
37716
37953
|
}
|
|
37717
37954
|
}
|
|
@@ -39040,7 +39277,7 @@ const _sfc_main$q = {
|
|
|
39040
39277
|
});
|
|
39041
39278
|
if (this.tableView.snEnable) {
|
|
39042
39279
|
this.columns.unshift({
|
|
39043
|
-
title:
|
|
39280
|
+
title: " ",
|
|
39044
39281
|
slot: "sn",
|
|
39045
39282
|
align: "center",
|
|
39046
39283
|
width: 60
|
|
@@ -39336,9 +39573,9 @@ const _sfc_main$q = {
|
|
|
39336
39573
|
}
|
|
39337
39574
|
let isRequired = column.isRequired;
|
|
39338
39575
|
if (!!(column.requiredJson || "").trim()) {
|
|
39339
|
-
let
|
|
39340
|
-
if (
|
|
39341
|
-
isRequired = this.judgeCondition(
|
|
39576
|
+
let setting2 = JSON.parse(column.requiredJson);
|
|
39577
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
39578
|
+
isRequired = this.judgeCondition(setting2, row);
|
|
39342
39579
|
}
|
|
39343
39580
|
}
|
|
39344
39581
|
if (isRequired) {
|
|
@@ -39961,9 +40198,9 @@ const _sfc_main$q = {
|
|
|
39961
40198
|
},
|
|
39962
40199
|
judge(enable, json, data2) {
|
|
39963
40200
|
if (!!(json || "").trim()) {
|
|
39964
|
-
let
|
|
39965
|
-
if (
|
|
39966
|
-
return this.judgeCondition(
|
|
40201
|
+
let setting2 = JSON.parse(json);
|
|
40202
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
40203
|
+
return this.judgeCondition(setting2, data2);
|
|
39967
40204
|
}
|
|
39968
40205
|
}
|
|
39969
40206
|
return enable;
|
|
@@ -40024,18 +40261,18 @@ const _sfc_main$q = {
|
|
|
40024
40261
|
if (data2._isShow == null) {
|
|
40025
40262
|
data2._isShow = {};
|
|
40026
40263
|
}
|
|
40027
|
-
let
|
|
40028
|
-
if (
|
|
40029
|
-
data2._isShow[column.code] = this.judgeCondition(
|
|
40264
|
+
let setting2 = JSON.parse(column.showJson);
|
|
40265
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
40266
|
+
data2._isShow[column.code] = this.judgeCondition(setting2, data2);
|
|
40030
40267
|
}
|
|
40031
40268
|
}
|
|
40032
40269
|
if (!!(column.readonlyJson || "").trim()) {
|
|
40033
40270
|
if (data2._isReadonly == null) {
|
|
40034
40271
|
data2._isReadonly = {};
|
|
40035
40272
|
}
|
|
40036
|
-
let
|
|
40037
|
-
if (
|
|
40038
|
-
data2._isReadonly[column.code] = this.judgeCondition(
|
|
40273
|
+
let setting2 = JSON.parse(column.readonlyJson);
|
|
40274
|
+
if (setting2.type == "Condition" || setting2.type == "Expression") {
|
|
40275
|
+
data2._isReadonly[column.code] = this.judgeCondition(setting2, data2);
|
|
40039
40276
|
}
|
|
40040
40277
|
}
|
|
40041
40278
|
}
|
|
@@ -48264,8 +48501,10 @@ function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
48264
48501
|
"model-value": _ctx.parseData($data.data, column.code),
|
|
48265
48502
|
"onUpdate:modelValue": ($event) => _ctx.setData($data.data, column.code, $event),
|
|
48266
48503
|
readonly: column.isReadonly,
|
|
48267
|
-
maxCount: column.maxLength
|
|
48268
|
-
|
|
48504
|
+
maxCount: column.maxLength,
|
|
48505
|
+
accept: column.pattern,
|
|
48506
|
+
draggable: column.mergeSame
|
|
48507
|
+
}, null, 8, ["model-value", "onUpdate:modelValue", "readonly", "maxCount", "accept", "draggable"])) : column.controlType === "Image" ? (openBlock(), createBlock(_component_upload_image, {
|
|
48269
48508
|
key: 22,
|
|
48270
48509
|
"model-value": _ctx.parseData($data.data, column.code),
|
|
48271
48510
|
"onUpdate:modelValue": ($event) => _ctx.setData($data.data, column.code, $event),
|
|
@@ -77803,8 +78042,8 @@ function firstDataNotNull(arr) {
|
|
|
77803
78042
|
return arr[i2];
|
|
77804
78043
|
}
|
|
77805
78044
|
var Scale = function() {
|
|
77806
|
-
function Scale2(
|
|
77807
|
-
this._setting =
|
|
78045
|
+
function Scale2(setting2) {
|
|
78046
|
+
this._setting = setting2 || {};
|
|
77808
78047
|
this._extent = [Infinity, -Infinity];
|
|
77809
78048
|
}
|
|
77810
78049
|
Scale2.prototype.getSetting = function(name) {
|
|
@@ -77967,8 +78206,8 @@ function scale(val, extent3) {
|
|
|
77967
78206
|
}
|
|
77968
78207
|
var OrdinalScale = function(_super) {
|
|
77969
78208
|
__extends(OrdinalScale2, _super);
|
|
77970
|
-
function OrdinalScale2(
|
|
77971
|
-
var _this = _super.call(this,
|
|
78209
|
+
function OrdinalScale2(setting2) {
|
|
78210
|
+
var _this = _super.call(this, setting2) || this;
|
|
77972
78211
|
_this.type = "ordinal";
|
|
77973
78212
|
var ordinalMeta = _this.getSetting("ordinalMeta");
|
|
77974
78213
|
if (!ordinalMeta) {
|
|
@@ -90770,8 +91009,8 @@ function trigger$1(controller, eventName, behaviorToCheck, e2, contollerEvent) {
|
|
|
90770
91009
|
controller.trigger(eventName, contollerEvent);
|
|
90771
91010
|
}
|
|
90772
91011
|
function isAvailableBehavior(behaviorToCheck, e2, settings) {
|
|
90773
|
-
var
|
|
90774
|
-
return !behaviorToCheck ||
|
|
91012
|
+
var setting2 = settings[behaviorToCheck];
|
|
91013
|
+
return !behaviorToCheck || setting2 && (!isString(setting2) || e2.event[setting2 + "Key"]);
|
|
90775
91014
|
}
|
|
90776
91015
|
var RoamController$1 = RoamController;
|
|
90777
91016
|
function updateViewOnPan(controllerHost, dx, dy) {
|
|
@@ -113440,19 +113679,19 @@ var handlers = {
|
|
|
113440
113679
|
}
|
|
113441
113680
|
};
|
|
113442
113681
|
function makeAxisFinder(dzFeatureModel) {
|
|
113443
|
-
var
|
|
113682
|
+
var setting2 = {
|
|
113444
113683
|
xAxisIndex: dzFeatureModel.get("xAxisIndex", true),
|
|
113445
113684
|
yAxisIndex: dzFeatureModel.get("yAxisIndex", true),
|
|
113446
113685
|
xAxisId: dzFeatureModel.get("xAxisId", true),
|
|
113447
113686
|
yAxisId: dzFeatureModel.get("yAxisId", true)
|
|
113448
113687
|
};
|
|
113449
|
-
if (
|
|
113450
|
-
|
|
113688
|
+
if (setting2.xAxisIndex == null && setting2.xAxisId == null) {
|
|
113689
|
+
setting2.xAxisIndex = "all";
|
|
113451
113690
|
}
|
|
113452
|
-
if (
|
|
113453
|
-
|
|
113691
|
+
if (setting2.yAxisIndex == null && setting2.yAxisId == null) {
|
|
113692
|
+
setting2.yAxisIndex = "all";
|
|
113454
113693
|
}
|
|
113455
|
-
return
|
|
113694
|
+
return setting2;
|
|
113456
113695
|
}
|
|
113457
113696
|
function updateBackBtnStatus(featureModel, ecModel) {
|
|
113458
113697
|
featureModel.setIconStatus("back", count(ecModel) > 1 ? "emphasis" : "normal");
|
|
@@ -123569,9 +123808,6 @@ const components = {
|
|
|
123569
123808
|
const install = function(app) {
|
|
123570
123809
|
if (install.installed)
|
|
123571
123810
|
return;
|
|
123572
|
-
if (window) {
|
|
123573
|
-
window.$t = i18n$1.global.t;
|
|
123574
|
-
}
|
|
123575
123811
|
app.use(store);
|
|
123576
123812
|
app.use(i18n$1);
|
|
123577
123813
|
app.use(ViewUIPlus, {
|
|
@@ -123589,12 +123825,18 @@ const install = function(app) {
|
|
|
123589
123825
|
const API = {
|
|
123590
123826
|
install
|
|
123591
123827
|
};
|
|
123592
|
-
const files = { "./pages/account/login.vue":
|
|
123828
|
+
const files = { "./pages/account/login.vue": __glob_46_0, "./pages/common/home.vue": __glob_46_1, "./pages/common/task-form.vue": __glob_46_2, "./pages/common/todo.vue": __glob_46_3, "./pages/system/apiLog.vue": __glob_46_4, "./pages/system/applicationType.vue": __glob_46_5, "./pages/system/customPage.vue": __glob_46_6, "./pages/system/customTable.vue": __glob_46_7, "./pages/system/dict.vue": __glob_46_8, "./pages/system/dictType.vue": __glob_46_9, "./pages/system/entityView.vue": __glob_46_10, "./pages/system/extendColumn.vue": __glob_46_11, "./pages/system/formView.vue": __glob_46_12, "./pages/system/i18nText.vue": __glob_46_13, "./pages/system/log.vue": __glob_46_14, "./pages/system/mailTemplate.vue": __glob_46_15, "./pages/system/notice.vue": __glob_46_16, "./pages/system/openApi.vue": __glob_46_17, "./pages/system/openUser.vue": __glob_46_18, "./pages/system/organization.vue": __glob_46_19, "./pages/system/organizationType.vue": __glob_46_20, "./pages/system/permission.vue": __glob_46_21, "./pages/system/planJob.vue": __glob_46_22, "./pages/system/printTemplate.vue": __glob_46_23, "./pages/system/process.vue": __glob_46_24, "./pages/system/processType.vue": __glob_46_25, "./pages/system/role.vue": __glob_46_26, "./pages/system/rolePropertyEdit.vue": __glob_46_27, "./pages/system/sequenceSetting.vue": __glob_46_28, "./pages/system/setting.vue": __glob_46_29, "./pages/system/systemData.vue": __glob_46_30, "./pages/system/tableView.vue": __glob_46_31, "./pages/system/taskQueue.vue": __glob_46_32, "./pages/system/user.vue": __glob_46_33, "./pages/template/processPage.vue": __glob_46_34, "./pages/template/reportPage.vue": __glob_46_35, "./pages/template/viewPage.vue": __glob_46_36, "./pages/system/error/404.vue": __glob_46_37 };
|
|
123593
123829
|
const pages = {};
|
|
123594
123830
|
Object.keys(files).forEach((key) => {
|
|
123595
123831
|
pages[key.replace(/(\.\/pages\/)/g, "")] = files[key].default;
|
|
123596
123832
|
});
|
|
123597
123833
|
const created = async (app) => {
|
|
123834
|
+
if (window) {
|
|
123835
|
+
window.$app = getCurrentInstance();
|
|
123836
|
+
window.$app.$t = i18n$1.global.t;
|
|
123837
|
+
window.$app.$Message = app.config.globalProperties.$Message;
|
|
123838
|
+
window.$app.$Notice = app.config.globalProperties.$Notice;
|
|
123839
|
+
}
|
|
123598
123840
|
await store.dispatch("admin/i18n/load", app);
|
|
123599
123841
|
store.commit("admin/menu/setHeader", menuHeader);
|
|
123600
123842
|
store.dispatch("admin/account/load");
|