1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| "use strict";
| const Popup = {
| // popup组件
| popup: {
| show: false,
| overlay: true,
| mode: "bottom",
| duration: 300,
| closeable: false,
| overlayStyle: {},
| closeOnClickOverlay: true,
| zIndex: 10075,
| safeAreaInsetBottom: true,
| safeAreaInsetTop: false,
| closeIconPos: "top-right",
| round: 0,
| zoom: true,
| bgColor: "",
| overlayOpacity: 0.5
| }
| };
| exports.Popup = Popup;
| //# sourceMappingURL=../../../../../.sourcemap/mp-weixin/uni_modules/uview-plus/components/u-popup/popup.js.map
|
|