1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-11 12:49:30 +08:00

新增:文章详情评论弹幕设置功能

This commit is contained in:
小莫唐尼
2022-12-13 10:51:21 +08:00
parent 9573b303e2
commit 5000da9a64
7 changed files with 98 additions and 33 deletions
+8 -6
View File
@@ -38,7 +38,7 @@ export const _DefaultAppSettings = {
// 评论弹幕(文章详情)
barrage: {
use: true, // 是否启用
type: 'leftBottom' // 弹幕类型
type: 'leftBottom' // 弹幕位置(rightToLeft leftBottom
},
gallery: {
// 是否使用瀑布流
@@ -61,17 +61,19 @@ export const _DefaultAppSettings = {
contact: {
// 链接是否使用复制的方式,否则直接在内部打开(小程序需要配置对应链接的业务域名)
isLinkCopy: true,
}
}
},
}
// 应用设置存储key值
export const _AppSettingsKey = 'APP_GLOBAL_SETTINGS';
/**
* 获取应用设置
*/
export const getAppSettings = () => {
let _appSettings = uni.getStorageSync('APP_GLOBAL_SETTINGS')
let _appSettings = uni.getStorageSync(_AppSettingsKey)
if (_appSettings) return JSON.parse(_appSettings)
uni.setStorageSync('APP_GLOBAL_SETTINGS', JSON.stringify(_DefaultAppSettings))
uni.setStorageSync(_AppSettingsKey, JSON.stringify(_DefaultAppSettings))
return _appSettings;
}
@@ -79,5 +81,5 @@ export const getAppSettings = () => {
* 保存应用设置
*/
export const setAppSettings = (appSettings) => {
uni.setStorageSync('APP_GLOBAL_SETTINGS', JSON.stringify(appSettings))
uni.setStorageSync(_AppSettingsKey, JSON.stringify(appSettings))
}