storage.js 5.0 KB

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