storage.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. // 存储
  2. const USER_BASE_INFO = 'user_base_info';
  3. const STORAGE_USER_TOKEN = 'storage_user_token';
  4. const BATCH_SELECTED_DEVICE_LIST = 'batch_selected_device_list';
  5. const SELECTED_SHOP = 'selected_shop';
  6. const REFRESH_DEVICE_PAGE = 'refresh_device_page';
  7. const SELECTED_DEVICE_INFO = 'selected_device_info';
  8. const SEARCH_CLIENT_USER_INFO = 'search_client_user_info';
  9. const GROUP_TREE_LIST = 'group_tree_list';
  10. const APP_CONFIG = 'app_config';
  11. const ICON_LIST = 'icon_list';
  12. const ALARM_INFO = 'alarm_info';
  13. const SELECTED_SHOP_INFO = 'selected_shop_info';
  14. const GROUP_LIST = 'group_list';
  15. const BLUETOOTH_LIST = 'bluetooth_list';
  16. const POP_TIME = 'prompt_pop_time';
  17. const NOTICE_VERSION = 'notice_version';
  18. function setApiToken(token) {
  19. uni.setStorageSync(STORAGE_USER_TOKEN, token);
  20. }
  21. function getApiToken() {
  22. return uni.getStorageSync(STORAGE_USER_TOKEN);
  23. }
  24. function setPopTime(time) {
  25. uni.setStorageSync(POP_TIME, time);
  26. }
  27. function getPopTime(time) {
  28. return uni.getStorageSync(POP_TIME);
  29. }
  30. function setBaseUserInfo(baseUserInfo) {
  31. uni.setStorageSync(USER_BASE_INFO, baseUserInfo);
  32. }
  33. function getBaseUserInfo() {
  34. return uni.getStorageSync(USER_BASE_INFO);
  35. }
  36. function cleanBaseUserInfo() {
  37. uni.removeStorageSync(USER_BASE_INFO);
  38. }
  39. function setBatchSelectedDeviceList(device_list) {
  40. uni.setStorageSync(BATCH_SELECTED_DEVICE_LIST, device_list);
  41. }
  42. function getBatchSelectedDeviceList() {
  43. return uni.getStorageSync(BATCH_SELECTED_DEVICE_LIST);
  44. }
  45. function setSelectedShop(shop) {
  46. uni.setStorageSync(SELECTED_SHOP, shop);
  47. }
  48. function getSelectedShop() {
  49. return uni.getStorageSync(SELECTED_SHOP);
  50. }
  51. function setRefreshDeviceoPage(is_fresh) {
  52. uni.setStorageSync(REFRESH_DEVICE_PAGE, is_fresh);
  53. }
  54. function getRefreshDeviceoPage() {
  55. return uni.getStorageSync(REFRESH_DEVICE_PAGE);
  56. }
  57. function setSelectedDeviceInfo(device_info) {
  58. uni.setStorageSync(SELECTED_DEVICE_INFO, device_info);
  59. }
  60. function getSelectedDeviceInfo() {
  61. return uni.getStorageSync(SELECTED_DEVICE_INFO);
  62. }
  63. function setSearchClientUserInfo(user_info) {
  64. uni.setStorageSync(SEARCH_CLIENT_USER_INFO, user_info);
  65. }
  66. function getSearchClientUserInfo() {
  67. return uni.getStorageSync(SEARCH_CLIENT_USER_INFO);
  68. }
  69. function setGroupTreeList(group_tree_list) {
  70. uni.setStorageSync(GROUP_TREE_LIST, group_tree_list);
  71. }
  72. function getGroupTreeList() {
  73. return uni.getStorageSync(GROUP_TREE_LIST);
  74. }
  75. function setAppConfig(app_config) {
  76. uni.setStorageSync(APP_CONFIG, app_config);
  77. }
  78. function getAppConfig() {
  79. return uni.getStorageSync(APP_CONFIG);
  80. }
  81. function setIconList(iconList) {
  82. uni.setStorageSync(ICON_LIST, iconList);
  83. }
  84. function getIconList() {
  85. return uni.getStorageSync(ICON_LIST);
  86. }
  87. function setAlarmInfo(alarmInfo) {
  88. uni.setStorageSync(ALARM_INFO, alarmInfo);
  89. }
  90. function getAlarmInfo() {
  91. return uni.getStorageSync(ALARM_INFO);
  92. }
  93. function setSelectedShopInfo(selectedShopInfo) {
  94. uni.setStorageSync(SELECTED_SHOP_INFO, selectedShopInfo);
  95. }
  96. function getSelectedShopInfo() {
  97. return uni.getStorageSync(SELECTED_SHOP_INFO);
  98. }
  99. function setGroupList(group_list) {
  100. uni.setStorageSync(GROUP_LIST, group_list);
  101. }
  102. function getGroupList() {
  103. return uni.getStorageSync(GROUP_LIST);
  104. }
  105. function setBluetoothList(bluetooth_list) {
  106. uni.setStorageSync(BLUETOOTH_LIST, bluetooth_list);
  107. }
  108. function getBluetoothList() {
  109. return uni.getStorageSync(BLUETOOTH_LIST);
  110. }
  111. function setNoticeVersion(is_notice) {
  112. uni.setStorageSync(NOTICE_VERSION, is_notice);
  113. }
  114. function getNoticeVersion() {
  115. return uni.getStorageSync(NOTICE_VERSION);
  116. }
  117. module.exports = {
  118. setApiToken: setApiToken,
  119. getApiToken: getApiToken,
  120. setPopTime: setPopTime,
  121. getPopTime: getPopTime,
  122. setUserInfo: setBaseUserInfo,
  123. getUserInfo: getBaseUserInfo,
  124. cleanUserInfo: cleanBaseUserInfo,
  125. setBatchSelectedDeviceList: setBatchSelectedDeviceList,
  126. getBatchSelectedDeviceList: getBatchSelectedDeviceList,
  127. setSelectedShop: setSelectedShop,
  128. getSelectedShop: getSelectedShop,
  129. setRefreshDeviceoPage: setRefreshDeviceoPage,
  130. getRefreshDeviceoPage: getRefreshDeviceoPage,
  131. setSelectedDeviceInfo: setSelectedDeviceInfo,
  132. getSelectedDeviceInfo: getSelectedDeviceInfo,
  133. setSearchClientUserInfo: setSearchClientUserInfo,
  134. getSearchClientUserInfo: getSearchClientUserInfo,
  135. setGroupTreeList: setGroupTreeList,
  136. getGroupTreeList: getGroupTreeList,
  137. setAppConfig: setAppConfig,
  138. getAppConfig: getAppConfig,
  139. setIconList: setIconList,
  140. getIconList: getIconList,
  141. setAlarmInfo: setAlarmInfo,
  142. getAlarmInfo: getAlarmInfo,
  143. setSelectedShopInfo: setSelectedShopInfo,
  144. getSelectedShopInfo: getSelectedShopInfo,
  145. setGroupList: setGroupList,
  146. getGroupList: getGroupList,
  147. setBluetoothList: setBluetoothList,
  148. getBluetoothList: getBluetoothList,
  149. setNoticeVersion: setNoticeVersion,
  150. getNoticeVersion: getNoticeVersion
  151. };