storage.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. // 存储
  2. const STORAGE_USER_TOKEN = 'storage_user_token';
  3. const PRODUCTS_TO_ORDER = 'products_to_order';
  4. const USER_BASE_INFO = 'user_base_info';
  5. const POSITION_MACID = 'position_macid'; // 暂存macid 用于页面跳转
  6. const APP_CONFIG = 'app_config';
  7. const CAR_IMAGES = 'car_images'; // 现场拍摄车辆照片
  8. const SELECTED_DEVICE_INFO = 'selected_device_info';
  9. const CB_BLUETOOTH_INFO = 'cb_bluetooth_info';
  10. const USER_CURRENT_LOCATION = 'user_current_location'; // 用户当前位置
  11. const IS_SCAN = 'is_scan';
  12. const SHARE_CODE = 'share_code';
  13. const IS_AGREEMENT = 'agreement'
  14. const IS_LOCATION_AUTH = 'is_location_auth'
  15. const USER_INFO_DATA = 'USER_INFO_DATA';
  16. const IS_BUY_MODEL = 'IS_BUY_MODEL';
  17. function setIsLocationAuth(location_auth) {
  18. uni.setStorageSync(IS_LOCATION_AUTH, location_auth);
  19. }
  20. function getIsLocationAuth() {
  21. return uni.getStorageSync(IS_LOCATION_AUTH);
  22. }
  23. function setUserToken(user_token) {
  24. uni.setStorageSync(STORAGE_USER_TOKEN, user_token);
  25. }
  26. function getUserToken() {
  27. return uni.getStorageSync(STORAGE_USER_TOKEN);
  28. }
  29. function clearStorage() {
  30. const appConfig = getAppConfig();
  31. uni.clearStorageSync();
  32. setAppConfig(appConfig);
  33. }
  34. function productsToOrder(productArr) {
  35. uni.setStorageSync(PRODUCTS_TO_ORDER, productArr);
  36. }
  37. function getProductsToOrder() {
  38. return uni.getStorageSync(PRODUCTS_TO_ORDER);
  39. }
  40. function setBaseUserInfo(baseUserInfo) {
  41. uni.setStorageSync(USER_BASE_INFO, baseUserInfo);
  42. }
  43. function getBaseUserInfo() {
  44. return uni.getStorageSync(USER_BASE_INFO);
  45. }
  46. function cleanBaseUserInfo() {
  47. uni.removeStorageSync(USER_BASE_INFO);
  48. }
  49. function setUserInfoData(baseUserInfo) {
  50. uni.setStorageSync(USER_INFO_DATA, baseUserInfo);
  51. }
  52. function getUserInfoData() {
  53. return uni.getStorageSync(USER_INFO_DATA);
  54. }
  55. function cleanUserInfoData() {
  56. uni.removeStorageSync(USER_INFO_DATA);
  57. }
  58. function setMacid(macid) {
  59. uni.setStorageSync(POSITION_MACID, macid);
  60. }
  61. function getMacid() {
  62. return uni.getStorageSync(POSITION_MACID);
  63. }
  64. function setAppConfig(app_config) {
  65. uni.setStorageSync(APP_CONFIG, app_config);
  66. }
  67. function getAppConfig() {
  68. return uni.getStorageSync(APP_CONFIG);
  69. }
  70. function setCarImages(car_imgs) {
  71. uni.setStorageSync(CAR_IMAGES, car_imgs);
  72. }
  73. function getCarImages() {
  74. return uni.getStorageSync(CAR_IMAGES);
  75. }
  76. function setSelectedDeviceInfo(device_info) {
  77. uni.setStorageSync(SELECTED_DEVICE_INFO, device_info);
  78. }
  79. function getSelectedDeviceInfo() {
  80. return uni.getStorageSync(SELECTED_DEVICE_INFO);
  81. }
  82. function setCabinetInfo(cb_info) {
  83. uni.setStorageSync(CB_BLUETOOTH_INFO, cb_info);
  84. }
  85. function getCabinetInfo() {
  86. return uni.getStorageSync(CB_BLUETOOTH_INFO);
  87. }
  88. function setUserCurrentLocation(
  89. location_info = {
  90. longitude: '',
  91. latitude: ''
  92. }
  93. ) {
  94. uni.setStorageSync(USER_CURRENT_LOCATION, location_info);
  95. }
  96. function getUserCurrentLocation() {
  97. return uni.getStorageSync(USER_CURRENT_LOCATION);
  98. }
  99. function setIsScan(isScan) {
  100. uni.setStorageSync(IS_SCAN, isScan);
  101. }
  102. function getIsScan() {
  103. return uni.getStorageSync(IS_SCAN);
  104. }
  105. function setIsAgreement(isAgree) {
  106. uni.setStorageSync(IS_AGREEMENT, isAgree);
  107. }
  108. function getIsAgreement() {
  109. return uni.getStorageSync(IS_AGREEMENT);
  110. }
  111. function setShareCode(shareCode) {
  112. uni.setStorageSync(SHARE_CODE, shareCode);
  113. }
  114. function getShareCode() {
  115. return uni.getStorageSync(SHARE_CODE);
  116. }
  117. function setIsBuyModel(check = false) {
  118. uni.setStorageSync(IS_BUY_MODEL, check);
  119. }
  120. function getIsBuyModel() {
  121. return uni.getStorageSync(IS_BUY_MODEL);
  122. }
  123. module.exports = {
  124. setUserToken: setUserToken,
  125. getUserToken: getUserToken,
  126. clearStorage: clearStorage,
  127. productsToOrder: productsToOrder,
  128. getProductsToOrder: getProductsToOrder,
  129. setUserInfo: setBaseUserInfo,
  130. getUserInfo: getBaseUserInfo,
  131. cleanUserInfo: cleanBaseUserInfo,
  132. setUserInfoData: setUserInfoData,
  133. getUserInfoData: getUserInfoData,
  134. cleanUserInfoData: cleanUserInfoData,
  135. setIsScan: setIsScan,
  136. getIsScan: getIsScan,
  137. setIsAgreement: setIsAgreement,
  138. getIsAgreement: getIsAgreement,
  139. setMacid: setMacid,
  140. getMacid: getMacid,
  141. setAppConfig: setAppConfig,
  142. getAppConfig: getAppConfig,
  143. setCarImages: setCarImages,
  144. getCarImages: getCarImages,
  145. setSelectedDeviceInfo: setSelectedDeviceInfo,
  146. getSelectedDeviceInfo: getSelectedDeviceInfo,
  147. setCabinetInfo: setCabinetInfo,
  148. getCabinetInfo: getCabinetInfo,
  149. setUserCurrentLocation: setUserCurrentLocation,
  150. getUserCurrentLocation: getUserCurrentLocation,
  151. setShareCode: setShareCode,
  152. getShareCode: getShareCode,
  153. setIsLocationAuth: setIsLocationAuth,
  154. getIsLocationAuth: getIsLocationAuth,
  155. getIsBuyModel:getIsBuyModel,
  156. setIsBuyModel:setIsBuyModel
  157. };