@fecp/designer 5.5.64 → 5.5.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/designer/package.json.mjs +1 -1
- package/es/designer/src/components/DocumentParam.vue.mjs +1 -1
- package/es/designer/src/components/ParamsConfig.vue2.mjs +1 -1
- package/es/designer/src/layout/aside/HiddenFieldDialog.vue.mjs +1 -1
- package/es/designer/src/packages/advancedFilter/ValueInput.vue2.mjs +1 -1
- package/es/designer/src/packages/dataLinkage/index.vue.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/index.vue.mjs +1 -1
- package/es/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/approvalHistory.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/contract.vue.mjs +1 -1
- package/es/designer/src/packages/form/property/subForm.vue.mjs +1 -1
- package/es/designer/src/packages/prod/index.vue.mjs +1 -1
- package/es/designer/src/packages/table/headerBtn.vue.mjs +1 -1
- package/es/designer.css +554 -23
- package/es/packages/mobile/index.mjs +8 -0
- package/es/packages/mobile/src/api/index.mjs +8 -0
- package/es/packages/mobile/src/components/all.mjs +6 -0
- package/es/packages/mobile/src/components/dataDisplay/cardList/CardList.vue.mjs +18 -4
- package/es/packages/mobile/src/components/dataDisplay/dataStat/DataStat.vue.mjs +14 -0
- package/es/packages/mobile/src/components/dataDisplay/dataStat/index.mjs +10 -0
- package/es/packages/mobile/src/components/dataDisplay/menuGrid/MenuGrid.vue.mjs +123 -0
- package/es/packages/mobile/src/components/dataDisplay/menuGrid/index.mjs +7 -0
- package/es/packages/mobile/src/components/dataDisplay/noticeBar/NoticeBar.vue.mjs +98 -16
- package/es/packages/mobile/src/components/dataDisplay/table/Table.vue.mjs +19 -4
- package/es/packages/mobile/src/components/feedback/quickFilter/QuickFilter.vue.mjs +248 -0
- package/es/packages/mobile/src/components/feedback/quickFilter/index.mjs +10 -0
- package/es/packages/mobile/src/components/form/search/Search.vue.mjs +159 -15
- package/es/packages/mobile/src/components/navigation/actionBar/ActionBar.vue.mjs +1 -1
- package/es/packages/mobile/src/components/navigation/navBar/NavBar.vue.mjs +13 -3
- package/es/packages/mobile/src/components/navigation/navBar/index.mjs +2 -2
- package/es/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.mjs +8 -4
- package/es/packages/mobile/src/components/navigation/tabbar/index.mjs +2 -2
- package/es/packages/mobile/src/index.vue.mjs +138 -0
- package/es/packages/mobile/src/page.vue.mjs +117 -0
- package/es/packages/mobile/src/utils/eventBus.mjs +5 -0
- package/es/packages/mobile/src/utils/pageHistory.mjs +111 -0
- package/es/packages/vue/src/components/details/footer/Footer.vue.mjs +3 -2
- package/es/packages/vue/src/components/forms/cascader/Cascader.vue.mjs +1 -1
- package/es/packages/vue/src/components/forms/form/validation.mjs +1 -1
- package/es/packages/vue/src/utils/parseFilterConfig.mjs +25 -0
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/components/DocumentParam.vue.js +1 -1
- package/lib/designer/src/components/ParamsConfig.vue2.js +1 -1
- package/lib/designer/src/layout/aside/HiddenFieldDialog.vue.js +1 -1
- package/lib/designer/src/packages/advancedFilter/ValueInput.vue2.js +1 -1
- package/lib/designer/src/packages/dataLinkage/index.vue.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/index.vue.js +1 -1
- package/lib/designer/src/packages/eventFlow/dialog/action/RiskSch.vue.js +1 -1
- package/lib/designer/src/packages/form/property/approvalHistory.vue.js +1 -1
- package/lib/designer/src/packages/form/property/contract.vue.js +1 -1
- package/lib/designer/src/packages/form/property/subForm.vue.js +1 -1
- package/lib/designer/src/packages/prod/index.vue.js +1 -1
- package/lib/designer/src/packages/table/headerBtn.vue.js +1 -1
- package/lib/designer.css +554 -23
- package/lib/packages/mobile/index.js +94 -86
- package/lib/packages/mobile/src/api/index.js +8 -0
- package/lib/packages/mobile/src/components/all.js +92 -86
- package/lib/packages/mobile/src/components/dataDisplay/cardList/CardList.vue.js +17 -3
- package/lib/packages/mobile/src/components/dataDisplay/dataStat/DataStat.vue.js +14 -0
- package/lib/packages/mobile/src/components/dataDisplay/dataStat/index.js +10 -0
- package/lib/packages/mobile/src/components/dataDisplay/menuGrid/MenuGrid.vue.js +123 -0
- package/lib/packages/mobile/src/components/dataDisplay/menuGrid/index.js +7 -0
- package/lib/packages/mobile/src/components/dataDisplay/noticeBar/NoticeBar.vue.js +97 -15
- package/lib/packages/mobile/src/components/dataDisplay/table/Table.vue.js +18 -3
- package/lib/packages/mobile/src/components/feedback/quickFilter/QuickFilter.vue.js +248 -0
- package/lib/packages/mobile/src/components/feedback/quickFilter/index.js +10 -0
- package/lib/packages/mobile/src/components/form/search/Search.vue.js +158 -14
- package/lib/packages/mobile/src/components/navigation/actionBar/ActionBar.vue.js +1 -1
- package/lib/packages/mobile/src/components/navigation/navBar/NavBar.vue.js +13 -3
- package/lib/packages/mobile/src/components/navigation/tabbar/Tabbar.vue.js +8 -4
- package/lib/packages/mobile/src/index.vue.js +138 -0
- package/lib/packages/mobile/src/page.vue.js +117 -0
- package/lib/packages/mobile/src/utils/eventBus.js +5 -0
- package/lib/packages/mobile/src/utils/pageHistory.js +111 -0
- package/lib/packages/vue/src/components/details/footer/Footer.vue.js +3 -2
- package/lib/packages/vue/src/components/forms/cascader/Cascader.vue.js +1 -1
- package/lib/packages/vue/src/components/forms/form/validation.js +1 -1
- package/lib/packages/vue/src/utils/parseFilterConfig.js +25 -0
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
|
|
|
3
3
|
const all = require("./src/components/all.js");
|
|
4
4
|
require("./node_modules/@vant/touch-emulator/dist/index.js");
|
|
5
5
|
;/* empty css */
|
|
6
|
+
const index$15 = ;/* empty css */
|
|
6
7
|
const index$1 = require("./src/components/base/button/index.js");
|
|
7
8
|
const index$2 = require("./src/components/base/icon/index.js");
|
|
8
9
|
const index$3 = require("./src/components/base/cell/index.js");
|
|
@@ -25,49 +26,52 @@ const index$j = require("./src/components/dataDisplay/swipeItem/index.js");
|
|
|
25
26
|
const index$k = require("./src/components/dataDisplay/textEllipsis/index.js");
|
|
26
27
|
const index$l = require("./src/components/dataDisplay/timeLine/index.js");
|
|
27
28
|
const index$m = require("./src/components/dataDisplay/cardList/index.js");
|
|
28
|
-
const index$n = require("./src/components/
|
|
29
|
-
const index$o = require("./src/components/
|
|
30
|
-
const index$p = require("./src/components/feedback/
|
|
31
|
-
const index$q = require("./src/components/feedback/
|
|
32
|
-
const index$r = require("./src/components/feedback/
|
|
33
|
-
const index$s = require("./src/components/feedback/
|
|
34
|
-
const index$t = require("./src/components/feedback/
|
|
35
|
-
const index$u = require("./src/components/
|
|
36
|
-
const index$v = require("./src/components/
|
|
37
|
-
const index$w = require("./src/components/
|
|
38
|
-
const index$x = require("./src/components/form/
|
|
39
|
-
const index$y = require("./src/components/form/
|
|
40
|
-
const index$z = require("./src/components/form/
|
|
41
|
-
const index$A = require("./src/components/form/
|
|
42
|
-
const index$B = require("./src/components/form/
|
|
43
|
-
const index$C = require("./src/components/form/
|
|
44
|
-
const index$D = require("./src/components/form/
|
|
45
|
-
const index$E = require("./src/components/form/
|
|
46
|
-
const index$F = require("./src/components/form/
|
|
47
|
-
const index$G = require("./src/components/form/
|
|
48
|
-
const index$H = require("./src/components/form/
|
|
49
|
-
const index$I = require("./src/components/form/
|
|
50
|
-
const index$J = require("./src/components/form/
|
|
51
|
-
const index$K = require("./src/components/form/
|
|
52
|
-
const index$L = require("./src/components/form/
|
|
53
|
-
const index$M = require("./src/components/form/
|
|
54
|
-
const index$N = require("./src/components/form/
|
|
55
|
-
const index$O = require("./src/components/form/
|
|
56
|
-
const index$P = require("./src/components/
|
|
57
|
-
const index$Q = require("./src/components/
|
|
58
|
-
const index$R = require("./src/components/
|
|
59
|
-
const index$S = require("./src/components/navigation/
|
|
60
|
-
const index$T = require("./src/components/navigation/
|
|
61
|
-
const index$U = require("./src/components/navigation/
|
|
62
|
-
const index$V = require("./src/components/navigation/
|
|
63
|
-
const index$W = require("./src/components/navigation/
|
|
64
|
-
const index$X = require("./src/components/navigation/
|
|
65
|
-
const index$Y = require("./src/components/navigation/
|
|
66
|
-
const index$Z = require("./src/components/navigation/
|
|
67
|
-
const index$_ = require("./src/components/navigation/
|
|
68
|
-
const index$$ = require("./src/components/navigation/
|
|
69
|
-
const index$10 = require("./src/components/
|
|
70
|
-
const index$11 = require("./src/components/
|
|
29
|
+
const index$n = require("./src/components/dataDisplay/menuGrid/index.js");
|
|
30
|
+
const index$o = require("./src/components/dataDisplay/dataStat/index.js");
|
|
31
|
+
const index$p = require("./src/components/feedback/actionSheet/index.js");
|
|
32
|
+
const index$q = require("./src/components/feedback/dropdownMenu/index.js");
|
|
33
|
+
const index$r = require("./src/components/feedback/floatingPanel/index.js");
|
|
34
|
+
const index$s = require("./src/components/feedback/floatingBubble/index.js");
|
|
35
|
+
const index$t = require("./src/components/feedback/loading/index.js");
|
|
36
|
+
const index$u = require("./src/components/feedback/pullRefresh/index.js");
|
|
37
|
+
const index$v = require("./src/components/feedback/swipeCell/index.js");
|
|
38
|
+
const index$w = require("./src/components/feedback/quickFilter/index.js");
|
|
39
|
+
const index$x = require("./src/components/form/checkbox/index.js");
|
|
40
|
+
const index$y = require("./src/components/form/checkboxGroup/index.js");
|
|
41
|
+
const index$z = require("./src/components/form/field/index.js");
|
|
42
|
+
const index$A = require("./src/components/form/fieldPicker/index.js");
|
|
43
|
+
const index$B = require("./src/components/form/fieldCalendarPicker/index.js");
|
|
44
|
+
const index$C = require("./src/components/form/fieldDatePicker/index.js");
|
|
45
|
+
const index$D = require("./src/components/form/fieldTimePicker/index.js");
|
|
46
|
+
const index$E = require("./src/components/form/fieldDateTimePicker/index.js");
|
|
47
|
+
const index$F = require("./src/components/form/fieldCascaderPicker/index.js");
|
|
48
|
+
const index$G = require("./src/components/form/fieldCheckbox/index.js");
|
|
49
|
+
const index$H = require("./src/components/form/fieldRadio/index.js");
|
|
50
|
+
const index$I = require("./src/components/form/fieldArea/index.js");
|
|
51
|
+
const index$J = require("./src/components/form/fieldIndustry/index.js");
|
|
52
|
+
const index$K = require("./src/components/form/form/index.js");
|
|
53
|
+
const index$L = require("./src/components/form/formItem/index.js");
|
|
54
|
+
const index$M = require("./src/components/form/radioGroup/index.js");
|
|
55
|
+
const index$N = require("./src/components/form/search/index.js");
|
|
56
|
+
const index$O = require("./src/components/form/uploader/index.js");
|
|
57
|
+
const index$P = require("./src/components/form/fieldUploader/index.js");
|
|
58
|
+
const index$Q = require("./src/components/form/submitButton/index.js");
|
|
59
|
+
const index$R = require("./src/components/form/fieldSubTitle/index.js");
|
|
60
|
+
const index$S = require("./src/components/navigation/actionBar/index.js");
|
|
61
|
+
const index$T = require("./src/components/navigation/backTop/index.js");
|
|
62
|
+
const index$U = require("./src/components/navigation/grid/index.js");
|
|
63
|
+
const index$V = require("./src/components/navigation/indexBar/index.js");
|
|
64
|
+
const index$W = require("./src/components/navigation/indexAnchor/index.js");
|
|
65
|
+
const index$X = require("./src/components/navigation/navBar/index.js");
|
|
66
|
+
const index$Y = require("./src/components/navigation/pagination/index.js");
|
|
67
|
+
const index$Z = require("./src/components/navigation/sidebar/index.js");
|
|
68
|
+
const index$_ = require("./src/components/navigation/sidebarItem/index.js");
|
|
69
|
+
const index$$ = require("./src/components/navigation/tabs/index.js");
|
|
70
|
+
const index$10 = require("./src/components/navigation/tabbar/index.js");
|
|
71
|
+
const index$11 = require("./src/components/navigation/tabbarItem/index.js");
|
|
72
|
+
const index$12 = require("./src/components/navigation/treeSelect/index.js");
|
|
73
|
+
const index$13 = require("./src/components/layout/layout/index.js");
|
|
74
|
+
const index$14 = require("./src/components/custom/timeLineFilter/index.js");
|
|
71
75
|
const functionCall = require("./node_modules/vant/es/dialog/function-call.js");
|
|
72
76
|
const functionCall$1 = require("./node_modules/vant/es/image-preview/function-call.js");
|
|
73
77
|
const functionCall$2 = require("./node_modules/vant/es/notify/function-call.js");
|
|
@@ -77,6 +81,7 @@ const index = {
|
|
|
77
81
|
for (let c in all) {
|
|
78
82
|
app.use(all[c]);
|
|
79
83
|
}
|
|
84
|
+
app.component("FecMobileApp", index$15.default);
|
|
80
85
|
}
|
|
81
86
|
};
|
|
82
87
|
exports.MobileButton = index$1.MobileButton;
|
|
@@ -101,49 +106,52 @@ exports.MobileSwipeItem = index$j.MobileSwipeItem;
|
|
|
101
106
|
exports.MobileTextEllipsis = index$k.MobileTextEllipsis;
|
|
102
107
|
exports.MobileTimeLine = index$l.MobileTimeLine;
|
|
103
108
|
exports.MobileCardList = index$m.MobileCardList;
|
|
104
|
-
exports.
|
|
105
|
-
exports.
|
|
106
|
-
exports.
|
|
107
|
-
exports.
|
|
108
|
-
exports.
|
|
109
|
-
exports.
|
|
110
|
-
exports.
|
|
111
|
-
exports.
|
|
112
|
-
exports.
|
|
113
|
-
exports.
|
|
114
|
-
exports.
|
|
115
|
-
exports.
|
|
116
|
-
exports.
|
|
117
|
-
exports.
|
|
118
|
-
exports.
|
|
119
|
-
exports.
|
|
120
|
-
exports.
|
|
121
|
-
exports.
|
|
122
|
-
exports.
|
|
123
|
-
exports.
|
|
124
|
-
exports.
|
|
125
|
-
exports.
|
|
126
|
-
exports.
|
|
127
|
-
exports.
|
|
128
|
-
exports.
|
|
129
|
-
exports.
|
|
130
|
-
exports.
|
|
131
|
-
exports.
|
|
132
|
-
exports.
|
|
133
|
-
exports.
|
|
134
|
-
exports.
|
|
135
|
-
exports.
|
|
136
|
-
exports.
|
|
137
|
-
exports.
|
|
138
|
-
exports.
|
|
139
|
-
exports.
|
|
140
|
-
exports.
|
|
141
|
-
exports.
|
|
142
|
-
exports.
|
|
143
|
-
exports.
|
|
144
|
-
exports.
|
|
145
|
-
exports.
|
|
146
|
-
exports.
|
|
109
|
+
exports.MobileMenuGrid = index$n.MobileMenuGrid;
|
|
110
|
+
exports.MobileDataStat = index$o.MobileDataStat;
|
|
111
|
+
exports.MobileActionSheet = index$p.MobileActionSheet;
|
|
112
|
+
exports.MobileDropdownMenu = index$q.MobileDropdownMenu;
|
|
113
|
+
exports.MobileFloatingPanel = index$r.MobileFloatingPanel;
|
|
114
|
+
exports.MobileFloatingBubble = index$s.MobileFloatingBubble;
|
|
115
|
+
exports.MobileLoading = index$t.MobileLoading;
|
|
116
|
+
exports.MobilePullRefresh = index$u.MobilePullRefresh;
|
|
117
|
+
exports.MobileSwipeCell = index$v.MobileSwipeCell;
|
|
118
|
+
exports.MobileQuickFilter = index$w.MobileQuickFilter;
|
|
119
|
+
exports.MobileCheckbox = index$x.MobileCheckbox;
|
|
120
|
+
exports.MobileCheckboxGroup = index$y.MobileCheckboxGroup;
|
|
121
|
+
exports.MobileField = index$z.MobileField;
|
|
122
|
+
exports.MobileFieldPicker = index$A.MobileFieldPicker;
|
|
123
|
+
exports.MobileFieldCalendarPicker = index$B.MobileFieldCalendarPicker;
|
|
124
|
+
exports.MobileFieldDatePicker = index$C.MobileFieldDatePicker;
|
|
125
|
+
exports.MobileFieldTimePicker = index$D.MobileFieldTimePicker;
|
|
126
|
+
exports.MobileFieldDateTimePicker = index$E.MobileFieldDateTimePicker;
|
|
127
|
+
exports.MobileFieldCascaderPicker = index$F.MobileFieldCascaderPicker;
|
|
128
|
+
exports.MobileFieldCheckbox = index$G.MobileFieldCheckbox;
|
|
129
|
+
exports.MobileFieldRadio = index$H.MobileFieldRadio;
|
|
130
|
+
exports.MobileFieldArea = index$I.MobileFieldArea;
|
|
131
|
+
exports.MobileFieldIndustry = index$J.MobileFieldIndustry;
|
|
132
|
+
exports.MobileForm = index$K.MobileForm;
|
|
133
|
+
exports.MobileFormItem = index$L.MobileFormItem;
|
|
134
|
+
exports.MobileRadioGroup = index$M.MobileRadioGroup;
|
|
135
|
+
exports.MobileSearch = index$N.MobileSearch;
|
|
136
|
+
exports.MobileUploader = index$O.MobileUploader;
|
|
137
|
+
exports.MobileFieldUploader = index$P.MobileFieldUploader;
|
|
138
|
+
exports.MobileSubmitButton = index$Q.MobileSubmitButton;
|
|
139
|
+
exports.MobileFieldSubTitle = index$R.MobileFieldSubTitle;
|
|
140
|
+
exports.MobileActionBar = index$S.MobileActionBar;
|
|
141
|
+
exports.MobileBackTop = index$T.MobileBackTop;
|
|
142
|
+
exports.MobileGrid = index$U.MobileGrid;
|
|
143
|
+
exports.MobileIndexBar = index$V.MobileIndexBar;
|
|
144
|
+
exports.MobileIndexAnchor = index$W.MobileIndexAnchor;
|
|
145
|
+
exports.MobileNavBar = index$X.MobileNavBar;
|
|
146
|
+
exports.MobilePagination = index$Y.MobilePagination;
|
|
147
|
+
exports.MobileSidebar = index$Z.MobileSidebar;
|
|
148
|
+
exports.MobileSidebarItem = index$_.MobileSidebarItem;
|
|
149
|
+
exports.MobileTabs = index$$.MobileTabs;
|
|
150
|
+
exports.MobileTabbar = index$10.MobileTabbar;
|
|
151
|
+
exports.MobileTabbarItem = index$11.MobileTabbarItem;
|
|
152
|
+
exports.MobileTreeSelect = index$12.MobileTreeSelect;
|
|
153
|
+
exports.MobileLayout = index$13.MobileLayout;
|
|
154
|
+
exports.MobileTimeLineFilter = index$14.MobileTimeLineFilter;
|
|
147
155
|
exports.closeDialog = functionCall.closeDialog;
|
|
148
156
|
exports.showConfirmDialog = functionCall.showConfirmDialog;
|
|
149
157
|
exports.showDialog = functionCall.showDialog;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const api = {
|
|
4
|
+
getAppById: ($http, id) => {
|
|
5
|
+
return $http.postForm(`${$servers.base}/sysMobileApp/getById`, { id });
|
|
6
|
+
}
|
|
7
|
+
};
|
|
8
|
+
exports.default = api;
|
|
@@ -22,49 +22,52 @@ const index$i = require("./dataDisplay/swipeItem/index.js");
|
|
|
22
22
|
const index$j = require("./dataDisplay/textEllipsis/index.js");
|
|
23
23
|
const index$k = require("./dataDisplay/timeLine/index.js");
|
|
24
24
|
const index$l = require("./dataDisplay/cardList/index.js");
|
|
25
|
-
const index$m = require("./
|
|
26
|
-
const index$n = require("./
|
|
27
|
-
const index$o = require("./feedback/
|
|
28
|
-
const index$p = require("./feedback/
|
|
29
|
-
const index$q = require("./feedback/
|
|
30
|
-
const index$r = require("./feedback/
|
|
31
|
-
const index$s = require("./feedback/
|
|
32
|
-
const index$t = require("./
|
|
33
|
-
const index$u = require("./
|
|
34
|
-
const index$v = require("./
|
|
35
|
-
const index$w = require("./form/
|
|
36
|
-
const index$x = require("./form/
|
|
37
|
-
const index$y = require("./form/
|
|
38
|
-
const index$z = require("./form/
|
|
39
|
-
const index$A = require("./form/
|
|
40
|
-
const index$B = require("./form/
|
|
41
|
-
const index$C = require("./form/
|
|
42
|
-
const index$D = require("./form/
|
|
43
|
-
const index$E = require("./form/
|
|
44
|
-
const index$F = require("./form/
|
|
45
|
-
const index$G = require("./form/
|
|
46
|
-
const index$H = require("./form/
|
|
47
|
-
const index$I = require("./form/
|
|
48
|
-
const index$J = require("./form/
|
|
49
|
-
const index$K = require("./form/
|
|
50
|
-
const index$L = require("./form/
|
|
51
|
-
const index$M = require("./form/
|
|
52
|
-
const index$N = require("./form/
|
|
53
|
-
const index$O = require("./
|
|
54
|
-
const index$P = require("./
|
|
55
|
-
const index$Q = require("./
|
|
56
|
-
const index$R = require("./navigation/
|
|
57
|
-
const index$S = require("./navigation/
|
|
58
|
-
const index$T = require("./navigation/
|
|
59
|
-
const index$U = require("./navigation/
|
|
60
|
-
const index$V = require("./navigation/
|
|
61
|
-
const index$W = require("./navigation/
|
|
62
|
-
const index$X = require("./navigation/
|
|
63
|
-
const index$Y = require("./navigation/
|
|
64
|
-
const index$Z = require("./navigation/
|
|
65
|
-
const index$_ = require("./navigation/
|
|
66
|
-
const index$$ = require("./
|
|
67
|
-
const index$10 = require("./
|
|
25
|
+
const index$m = require("./dataDisplay/menuGrid/index.js");
|
|
26
|
+
const index$n = require("./dataDisplay/dataStat/index.js");
|
|
27
|
+
const index$o = require("./feedback/actionSheet/index.js");
|
|
28
|
+
const index$p = require("./feedback/dropdownMenu/index.js");
|
|
29
|
+
const index$q = require("./feedback/floatingPanel/index.js");
|
|
30
|
+
const index$r = require("./feedback/floatingBubble/index.js");
|
|
31
|
+
const index$s = require("./feedback/loading/index.js");
|
|
32
|
+
const index$t = require("./feedback/pullRefresh/index.js");
|
|
33
|
+
const index$u = require("./feedback/swipeCell/index.js");
|
|
34
|
+
const index$v = require("./feedback/quickFilter/index.js");
|
|
35
|
+
const index$w = require("./form/checkbox/index.js");
|
|
36
|
+
const index$x = require("./form/checkboxGroup/index.js");
|
|
37
|
+
const index$y = require("./form/field/index.js");
|
|
38
|
+
const index$z = require("./form/fieldPicker/index.js");
|
|
39
|
+
const index$A = require("./form/fieldCalendarPicker/index.js");
|
|
40
|
+
const index$B = require("./form/fieldDatePicker/index.js");
|
|
41
|
+
const index$C = require("./form/fieldTimePicker/index.js");
|
|
42
|
+
const index$D = require("./form/fieldDateTimePicker/index.js");
|
|
43
|
+
const index$E = require("./form/fieldCascaderPicker/index.js");
|
|
44
|
+
const index$F = require("./form/fieldCheckbox/index.js");
|
|
45
|
+
const index$G = require("./form/fieldRadio/index.js");
|
|
46
|
+
const index$H = require("./form/fieldArea/index.js");
|
|
47
|
+
const index$I = require("./form/fieldIndustry/index.js");
|
|
48
|
+
const index$J = require("./form/form/index.js");
|
|
49
|
+
const index$K = require("./form/formItem/index.js");
|
|
50
|
+
const index$L = require("./form/radioGroup/index.js");
|
|
51
|
+
const index$M = require("./form/search/index.js");
|
|
52
|
+
const index$N = require("./form/uploader/index.js");
|
|
53
|
+
const index$O = require("./form/fieldUploader/index.js");
|
|
54
|
+
const index$P = require("./form/submitButton/index.js");
|
|
55
|
+
const index$Q = require("./form/fieldSubTitle/index.js");
|
|
56
|
+
const index$R = require("./navigation/actionBar/index.js");
|
|
57
|
+
const index$S = require("./navigation/backTop/index.js");
|
|
58
|
+
const index$T = require("./navigation/grid/index.js");
|
|
59
|
+
const index$U = require("./navigation/indexBar/index.js");
|
|
60
|
+
const index$V = require("./navigation/indexAnchor/index.js");
|
|
61
|
+
const index$W = require("./navigation/navBar/index.js");
|
|
62
|
+
const index$X = require("./navigation/pagination/index.js");
|
|
63
|
+
const index$Y = require("./navigation/sidebar/index.js");
|
|
64
|
+
const index$Z = require("./navigation/sidebarItem/index.js");
|
|
65
|
+
const index$_ = require("./navigation/tabs/index.js");
|
|
66
|
+
const index$$ = require("./navigation/tabbar/index.js");
|
|
67
|
+
const index$10 = require("./navigation/tabbarItem/index.js");
|
|
68
|
+
const index$11 = require("./navigation/treeSelect/index.js");
|
|
69
|
+
const index$12 = require("./layout/layout/index.js");
|
|
70
|
+
const index$13 = require("./custom/timeLineFilter/index.js");
|
|
68
71
|
exports.MobileButton = index.MobileButton;
|
|
69
72
|
exports.MobileIcon = index$1.MobileIcon;
|
|
70
73
|
exports.MobileCell = index$2.MobileCell;
|
|
@@ -87,46 +90,49 @@ exports.MobileSwipeItem = index$i.MobileSwipeItem;
|
|
|
87
90
|
exports.MobileTextEllipsis = index$j.MobileTextEllipsis;
|
|
88
91
|
exports.MobileTimeLine = index$k.MobileTimeLine;
|
|
89
92
|
exports.MobileCardList = index$l.MobileCardList;
|
|
90
|
-
exports.
|
|
91
|
-
exports.
|
|
92
|
-
exports.
|
|
93
|
-
exports.
|
|
94
|
-
exports.
|
|
95
|
-
exports.
|
|
96
|
-
exports.
|
|
97
|
-
exports.
|
|
98
|
-
exports.
|
|
99
|
-
exports.
|
|
100
|
-
exports.
|
|
101
|
-
exports.
|
|
102
|
-
exports.
|
|
103
|
-
exports.
|
|
104
|
-
exports.
|
|
105
|
-
exports.
|
|
106
|
-
exports.
|
|
107
|
-
exports.
|
|
108
|
-
exports.
|
|
109
|
-
exports.
|
|
110
|
-
exports.
|
|
111
|
-
exports.
|
|
112
|
-
exports.
|
|
113
|
-
exports.
|
|
114
|
-
exports.
|
|
115
|
-
exports.
|
|
116
|
-
exports.
|
|
117
|
-
exports.
|
|
118
|
-
exports.
|
|
119
|
-
exports.
|
|
120
|
-
exports.
|
|
121
|
-
exports.
|
|
122
|
-
exports.
|
|
123
|
-
exports.
|
|
124
|
-
exports.
|
|
125
|
-
exports.
|
|
126
|
-
exports.
|
|
127
|
-
exports.
|
|
128
|
-
exports.
|
|
129
|
-
exports.
|
|
130
|
-
exports.
|
|
131
|
-
exports.
|
|
132
|
-
exports.
|
|
93
|
+
exports.MobileMenuGrid = index$m.MobileMenuGrid;
|
|
94
|
+
exports.MobileDataStat = index$n.MobileDataStat;
|
|
95
|
+
exports.MobileActionSheet = index$o.MobileActionSheet;
|
|
96
|
+
exports.MobileDropdownMenu = index$p.MobileDropdownMenu;
|
|
97
|
+
exports.MobileFloatingPanel = index$q.MobileFloatingPanel;
|
|
98
|
+
exports.MobileFloatingBubble = index$r.MobileFloatingBubble;
|
|
99
|
+
exports.MobileLoading = index$s.MobileLoading;
|
|
100
|
+
exports.MobilePullRefresh = index$t.MobilePullRefresh;
|
|
101
|
+
exports.MobileSwipeCell = index$u.MobileSwipeCell;
|
|
102
|
+
exports.MobileQuickFilter = index$v.MobileQuickFilter;
|
|
103
|
+
exports.MobileCheckbox = index$w.MobileCheckbox;
|
|
104
|
+
exports.MobileCheckboxGroup = index$x.MobileCheckboxGroup;
|
|
105
|
+
exports.MobileField = index$y.MobileField;
|
|
106
|
+
exports.MobileFieldPicker = index$z.MobileFieldPicker;
|
|
107
|
+
exports.MobileFieldCalendarPicker = index$A.MobileFieldCalendarPicker;
|
|
108
|
+
exports.MobileFieldDatePicker = index$B.MobileFieldDatePicker;
|
|
109
|
+
exports.MobileFieldTimePicker = index$C.MobileFieldTimePicker;
|
|
110
|
+
exports.MobileFieldDateTimePicker = index$D.MobileFieldDateTimePicker;
|
|
111
|
+
exports.MobileFieldCascaderPicker = index$E.MobileFieldCascaderPicker;
|
|
112
|
+
exports.MobileFieldCheckbox = index$F.MobileFieldCheckbox;
|
|
113
|
+
exports.MobileFieldRadio = index$G.MobileFieldRadio;
|
|
114
|
+
exports.MobileFieldArea = index$H.MobileFieldArea;
|
|
115
|
+
exports.MobileFieldIndustry = index$I.MobileFieldIndustry;
|
|
116
|
+
exports.MobileForm = index$J.MobileForm;
|
|
117
|
+
exports.MobileFormItem = index$K.MobileFormItem;
|
|
118
|
+
exports.MobileRadioGroup = index$L.MobileRadioGroup;
|
|
119
|
+
exports.MobileSearch = index$M.MobileSearch;
|
|
120
|
+
exports.MobileUploader = index$N.MobileUploader;
|
|
121
|
+
exports.MobileFieldUploader = index$O.MobileFieldUploader;
|
|
122
|
+
exports.MobileSubmitButton = index$P.MobileSubmitButton;
|
|
123
|
+
exports.MobileFieldSubTitle = index$Q.MobileFieldSubTitle;
|
|
124
|
+
exports.MobileActionBar = index$R.MobileActionBar;
|
|
125
|
+
exports.MobileBackTop = index$S.MobileBackTop;
|
|
126
|
+
exports.MobileGrid = index$T.MobileGrid;
|
|
127
|
+
exports.MobileIndexBar = index$U.MobileIndexBar;
|
|
128
|
+
exports.MobileIndexAnchor = index$V.MobileIndexAnchor;
|
|
129
|
+
exports.MobileNavBar = index$W.MobileNavBar;
|
|
130
|
+
exports.MobilePagination = index$X.MobilePagination;
|
|
131
|
+
exports.MobileSidebar = index$Y.MobileSidebar;
|
|
132
|
+
exports.MobileSidebarItem = index$Z.MobileSidebarItem;
|
|
133
|
+
exports.MobileTabs = index$_.MobileTabs;
|
|
134
|
+
exports.MobileTabbar = index$$.MobileTabbar;
|
|
135
|
+
exports.MobileTabbarItem = index$10.MobileTabbarItem;
|
|
136
|
+
exports.MobileTreeSelect = index$11.MobileTreeSelect;
|
|
137
|
+
exports.MobileLayout = index$12.MobileLayout;
|
|
138
|
+
exports.MobileTimeLineFilter = index$13.MobileTimeLineFilter;
|
|
@@ -55,6 +55,14 @@ const _sfc_main = {
|
|
|
55
55
|
filterPlaceholder: {
|
|
56
56
|
type: String,
|
|
57
57
|
default: ""
|
|
58
|
+
},
|
|
59
|
+
filterMode: {
|
|
60
|
+
type: String,
|
|
61
|
+
default: ""
|
|
62
|
+
},
|
|
63
|
+
quickFilter: {
|
|
64
|
+
type: Array,
|
|
65
|
+
default: []
|
|
58
66
|
}
|
|
59
67
|
},
|
|
60
68
|
setup(__props) {
|
|
@@ -140,6 +148,9 @@ const _sfc_main = {
|
|
|
140
148
|
loading.value = false;
|
|
141
149
|
}
|
|
142
150
|
}
|
|
151
|
+
const quickFilterConfig = Vue.computed(() => {
|
|
152
|
+
return props.quickFilter;
|
|
153
|
+
});
|
|
143
154
|
return (_ctx, _cache) => {
|
|
144
155
|
const _component_fec_mobile_search = Vue.resolveComponent("fec-mobile-search");
|
|
145
156
|
const _component_fec_mobile_card = Vue.resolveComponent("fec-mobile-card");
|
|
@@ -147,8 +158,11 @@ const _sfc_main = {
|
|
|
147
158
|
return Vue.openBlock(), Vue.createElementBlock(Vue.Fragment, null, [
|
|
148
159
|
__props.enableFilter ? (Vue.openBlock(), Vue.createBlock(_component_fec_mobile_search, {
|
|
149
160
|
key: 0,
|
|
150
|
-
placeholder: __props.filterPlaceholder
|
|
151
|
-
|
|
161
|
+
placeholder: __props.filterPlaceholder,
|
|
162
|
+
filterMode: __props.filterMode,
|
|
163
|
+
dataSources: __props.dataSources,
|
|
164
|
+
filterConfig: Vue.unref(quickFilterConfig)
|
|
165
|
+
}, null, 8, ["placeholder", "filterMode", "dataSources", "filterConfig"])) : Vue.createCommentVNode("", true),
|
|
152
166
|
Vue.createVNode(_component_van_list, {
|
|
153
167
|
ref_key: "listRef",
|
|
154
168
|
ref: listRef,
|
|
@@ -186,5 +200,5 @@ const _sfc_main = {
|
|
|
186
200
|
};
|
|
187
201
|
}
|
|
188
202
|
};
|
|
189
|
-
const _CardList = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-
|
|
203
|
+
const _CardList = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-77da18e2"]]);
|
|
190
204
|
exports.default = _CardList;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const Vue = require("vue");
|
|
4
|
+
;/* empty css */
|
|
5
|
+
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
6
|
+
const _sfc_main = {};
|
|
7
|
+
const _hoisted_1 = { class: "stat-card" };
|
|
8
|
+
function _sfc_render(_ctx, _cache) {
|
|
9
|
+
return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, _cache[0] || (_cache[0] = [
|
|
10
|
+
Vue.createStaticVNode('<div class="stat-top" data-v-fa8fbc8a><div class="stat-item" data-v-fa8fbc8a><div class="label" data-v-fa8fbc8a>今日认购金额</div><div class="num" data-v-fa8fbc8a><span class="value" data-v-fa8fbc8a>4,012</span><span class="unit" data-v-fa8fbc8a>万元</span></div></div><div class="stat-item" data-v-fa8fbc8a><div class="label" data-v-fa8fbc8a>今日回款金额</div><div class="num" data-v-fa8fbc8a><span class="value" data-v-fa8fbc8a>1,336</span><span class="unit" data-v-fa8fbc8a>万元</span></div></div><div class="stat-item" data-v-fa8fbc8a><div class="label" data-v-fa8fbc8a>今日交楼金额</div><div class="num" data-v-fa8fbc8a><span class="value" data-v-fa8fbc8a>306</span><span class="unit" data-v-fa8fbc8a>万元</span></div></div></div><div class="detail-row" data-v-fa8fbc8a><div class="detail-left" data-v-fa8fbc8a><div class="detail-group" data-v-fa8fbc8a><div class="detail-label" data-v-fa8fbc8a>实际完成(万元)</div><div class="detail-num" data-v-fa8fbc8a>101.342</div></div><div class="detail-group" data-v-fa8fbc8a><div class="detail-label" data-v-fa8fbc8a>目标金额(万元)</div><div class="detail-num" data-v-fa8fbc8a>223.764</div></div></div><div class="detail-right" data-v-fa8fbc8a><div class="detail-item" data-v-fa8fbc8a><div class="detail-item-top" data-v-fa8fbc8a><div class="detail-item-title" data-v-fa8fbc8a>年度回款(万元)</div><div class="detail-percent" data-v-fa8fbc8a>70%</div></div><div class="detail-kv" data-v-fa8fbc8a><span class="k" data-v-fa8fbc8a>实际</span><span class="v" data-v-fa8fbc8a>342.234</span></div><div class="detail-kv" data-v-fa8fbc8a><span class="k" data-v-fa8fbc8a>目标</span><span class="v" data-v-fa8fbc8a>432.340</span></div></div><div class="detail-item" data-v-fa8fbc8a><div class="detail-item-top" data-v-fa8fbc8a><div class="detail-item-title" data-v-fa8fbc8a>年度回款(万元)</div><div class="detail-percent" data-v-fa8fbc8a>70%</div></div><div class="detail-kv" data-v-fa8fbc8a><span class="k" data-v-fa8fbc8a>实际</span><span class="v" data-v-fa8fbc8a>342.234</span></div><div class="detail-kv" data-v-fa8fbc8a><span class="k" data-v-fa8fbc8a>目标</span><span class="v" data-v-fa8fbc8a>432.340</span></div></div></div></div>', 2)
|
|
11
|
+
]));
|
|
12
|
+
}
|
|
13
|
+
const _DataStat = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-fa8fbc8a"]]);
|
|
14
|
+
exports.default = _DataStat;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const DataStat = require("./DataStat.vue.js");
|
|
4
|
+
const install = require("../../../utils/install.js");
|
|
5
|
+
const MobileDataStat = install.default.withInstall(
|
|
6
|
+
"MobileDataStat",
|
|
7
|
+
DataStat.default
|
|
8
|
+
);
|
|
9
|
+
exports.MobileDataStat = MobileDataStat;
|
|
10
|
+
exports.default = MobileDataStat;
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
;/* empty css */
|
|
4
|
+
;/* empty css */
|
|
5
|
+
;/* empty css */
|
|
6
|
+
;/* empty css */
|
|
7
|
+
;/* empty css */
|
|
8
|
+
const Vue = require("vue");
|
|
9
|
+
const eventBus = require("../../../utils/eventBus.js");
|
|
10
|
+
;/* empty css */
|
|
11
|
+
const _pluginVue_exportHelper = require("../../../../../../_virtual/_plugin-vue_export-helper.js");
|
|
12
|
+
const index$1 = require("../../../../node_modules/vant/es/grid/index.js");
|
|
13
|
+
const index$2 = require("../../../../node_modules/vant/es/grid-item/index.js");
|
|
14
|
+
const index = require("../../../../node_modules/vant/es/icon/index.js");
|
|
15
|
+
const _hoisted_1 = { class: "menu-grid-wrap" };
|
|
16
|
+
const _hoisted_2 = {
|
|
17
|
+
key: 0,
|
|
18
|
+
class: "menu-header"
|
|
19
|
+
};
|
|
20
|
+
const _hoisted_3 = { class: "header-left" };
|
|
21
|
+
const _hoisted_4 = { class: "header-title" };
|
|
22
|
+
const _hoisted_5 = {
|
|
23
|
+
key: 0,
|
|
24
|
+
class: "header-right"
|
|
25
|
+
};
|
|
26
|
+
const _hoisted_6 = { class: "more-btn" };
|
|
27
|
+
const _hoisted_7 = { class: "menu-item" };
|
|
28
|
+
const _hoisted_8 = ["src"];
|
|
29
|
+
const _hoisted_9 = {
|
|
30
|
+
key: 1,
|
|
31
|
+
class: "icon-text"
|
|
32
|
+
};
|
|
33
|
+
const _hoisted_10 = { class: "menu-text" };
|
|
34
|
+
const _sfc_main = {
|
|
35
|
+
__name: "MenuGrid",
|
|
36
|
+
props: {
|
|
37
|
+
title: {
|
|
38
|
+
type: String,
|
|
39
|
+
default: ""
|
|
40
|
+
},
|
|
41
|
+
showHeader: {
|
|
42
|
+
type: Boolean,
|
|
43
|
+
default: true
|
|
44
|
+
},
|
|
45
|
+
showMore: {
|
|
46
|
+
type: Boolean,
|
|
47
|
+
default: true
|
|
48
|
+
},
|
|
49
|
+
moreText: {
|
|
50
|
+
type: String,
|
|
51
|
+
default: ""
|
|
52
|
+
},
|
|
53
|
+
columnNum: {
|
|
54
|
+
type: Number,
|
|
55
|
+
default: 5
|
|
56
|
+
},
|
|
57
|
+
menuItems: {
|
|
58
|
+
type: Array,
|
|
59
|
+
default: () => []
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
setup(__props) {
|
|
63
|
+
function clickHandler(item) {
|
|
64
|
+
console.log("🚀 ~ clickHandler ~ item:", item);
|
|
65
|
+
eventBus.default.emit("loadPage", item.pageId);
|
|
66
|
+
}
|
|
67
|
+
return (_ctx, _cache) => {
|
|
68
|
+
const _component_van_icon = index.Icon;
|
|
69
|
+
const _component_van_grid_item = index$2.GridItem;
|
|
70
|
+
const _component_van_grid = index$1.Grid;
|
|
71
|
+
return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, [
|
|
72
|
+
__props.showHeader ? (Vue.openBlock(), Vue.createElementBlock("div", _hoisted_2, [
|
|
73
|
+
Vue.createElementVNode("div", _hoisted_3, [
|
|
74
|
+
Vue.createElementVNode("span", _hoisted_4, Vue.toDisplayString(__props.title), 1)
|
|
75
|
+
]),
|
|
76
|
+
__props.showMore ? (Vue.openBlock(), Vue.createElementBlock("div", _hoisted_5, [
|
|
77
|
+
Vue.createElementVNode("span", _hoisted_6, Vue.toDisplayString(__props.moreText), 1),
|
|
78
|
+
Vue.createVNode(_component_van_icon, {
|
|
79
|
+
name: "arrow",
|
|
80
|
+
class: "more-icon"
|
|
81
|
+
})
|
|
82
|
+
])) : Vue.createCommentVNode("", true)
|
|
83
|
+
])) : Vue.createCommentVNode("", true),
|
|
84
|
+
Vue.createVNode(_component_van_grid, {
|
|
85
|
+
"column-num": __props.columnNum,
|
|
86
|
+
border: "false",
|
|
87
|
+
class: "menu-grid"
|
|
88
|
+
}, {
|
|
89
|
+
default: Vue.withCtx(() => [
|
|
90
|
+
(Vue.openBlock(true), Vue.createElementBlock(Vue.Fragment, null, Vue.renderList(__props.menuItems, (item, index2) => {
|
|
91
|
+
return Vue.openBlock(), Vue.createBlock(_component_van_grid_item, {
|
|
92
|
+
key: index2,
|
|
93
|
+
onClick: ($event) => clickHandler(item)
|
|
94
|
+
}, {
|
|
95
|
+
default: Vue.withCtx(() => [
|
|
96
|
+
Vue.createElementVNode("div", _hoisted_7, [
|
|
97
|
+
Vue.createElementVNode("div", {
|
|
98
|
+
class: Vue.normalizeClass(["icon-box", item.bgClass || "icon-blue"])
|
|
99
|
+
}, [
|
|
100
|
+
item.iconType === "image" ? (Vue.openBlock(), Vue.createElementBlock("img", {
|
|
101
|
+
key: 0,
|
|
102
|
+
src: item.icon,
|
|
103
|
+
class: "icon-img"
|
|
104
|
+
}, null, 8, _hoisted_8)) : item.iconText ? (Vue.openBlock(), Vue.createElementBlock("span", _hoisted_9, Vue.toDisplayString(item.iconText), 1)) : (Vue.openBlock(), Vue.createBlock(_component_van_icon, {
|
|
105
|
+
key: 2,
|
|
106
|
+
name: item.icon || "apps-o"
|
|
107
|
+
}, null, 8, ["name"]))
|
|
108
|
+
], 2),
|
|
109
|
+
Vue.createElementVNode("div", _hoisted_10, Vue.toDisplayString(item.label), 1)
|
|
110
|
+
])
|
|
111
|
+
]),
|
|
112
|
+
_: 2
|
|
113
|
+
}, 1032, ["onClick"]);
|
|
114
|
+
}), 128))
|
|
115
|
+
]),
|
|
116
|
+
_: 1
|
|
117
|
+
}, 8, ["column-num"])
|
|
118
|
+
]);
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
const _MenuGrid = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["__scopeId", "data-v-bde7e748"]]);
|
|
123
|
+
exports.default = _MenuGrid;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const MenuGrid = require("./MenuGrid.vue.js");
|
|
4
|
+
const install = require("../../../utils/install.js");
|
|
5
|
+
const MobileMenuGrid = install.default.withInstall("MobileMenuGrid", MenuGrid.default);
|
|
6
|
+
exports.MobileMenuGrid = MobileMenuGrid;
|
|
7
|
+
exports.default = MobileMenuGrid;
|