| 12345678910111213141516171819202122232425262728293031323334 |
- /*
- * @Author : LQ
- * @Description :
- * @version : 3.0
- * @Date : 2021-08-20 16:44:21
- * @LastAuthor : jry
- * @lastTime : 2025-12-19 08:55:21
- * @FilePath : /uview-plus/libs/config/props/popup.js
- */
- export default {
- // 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: '20px',
- zoom: true,
- bgColor: '',
- overlayOpacity: 0.5,
- pageInline: false,
- touchable: false,
- minHeight: '200px',
- maxHeight: '600px'
- }
- }
|