12345678910111213141516171819202122232425262728293031323334353637 |
- const GlobalOption = {
- down: {
-
- textInOffset: '下拉刷新',
- textOutOffset: '释放更新',
- textLoading: '加载中 ...',
- textSuccess: '加载成功',
- textErr: '加载失败',
- beforeEndDelay: 100,
- offset: 80,
- native: false
- },
- up: {
-
- textLoading: '加载中 ...',
- textNoMore: '亲, 没有更多了',
- offset: 150,
- toTop: {
-
- src: "https://www.mescroll.com/img/mescroll-totop.png",
- offset: 1000,
- right: 20,
- bottom: 120,
- width: 72
- },
- empty: {
- use: true,
-
- icon: '/static/empty.png',
- tip: '亲,暂无相关数据'
- }
- }
- }
- export default GlobalOption
|