storage.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. import {
  2. QINIU_URL
  3. } from '@/common/constant'
  4. import i18n from '../locale/index.js'
  5. // 存储
  6. const STORAGE_USER_TOKEN = 'storage_user_token';
  7. const PRODUCTS_TO_ORDER = 'products_to_order';
  8. const USER_BASE_INFO = 'user_base_info';
  9. const POSITION_MACID = 'position_macid'; // 暂存macid 用于页面跳转
  10. const APP_CONFIG = 'app_config';
  11. const CAR_IMAGES = 'car_images'; // 现场拍摄车辆照片
  12. const SELECTED_DEVICE_INFO = 'selected_device_info';
  13. const CB_BLUETOOTH_INFO = 'cb_bluetooth_info';
  14. const USER_CURRENT_LOCATION = 'user_current_location'; // 用户当前位置
  15. const IS_SCAN = 'is_scan';
  16. const SHARE_CODE = 'share_code';
  17. const IS_AGREEMENT = 'agreement'
  18. const IS_LOCATION_AUTH = 'is_location_auth'
  19. const USER_INFO_DATA = 'USER_INFO_DATA';
  20. const IS_BUY_MODEL = 'IS_BUY_MODEL';
  21. const FUNCTIONTAG = 'FUNCTIONTAG'
  22. const ICONS = {
  23. lock: `${QINIU_URL}FgMCTZCySvEgLYgkzU65BUR4f4Ls`,
  24. edit: `${QINIU_URL}Fq3V1Zi5tKH7ibTwG1nO7N96CU8m`,
  25. add: `${QINIU_URL}FqLEWbMe8DcnQtNz6GdDDD87ObZK`,
  26. placeholder: `${QINIU_URL}FpKvfFNSDbx0d9RDwyGAQdFb7Kt6`
  27. }
  28. const activeTabs = [{
  29. name: i18n.t('开机'),
  30. iconUrl: `${QINIU_URL}Fp5T9lSNakoiioji6S7W4DmFQ_ys`,
  31. isLock: true
  32. },
  33. {
  34. name: i18n.t('闪灯鸣笛'),
  35. iconUrl: `${QINIU_URL}FpeQsDh2dbeTullNLI-HhWj4WAQS`
  36. },
  37. {
  38. name: i18n.t('打开座桶'),
  39. iconUrl: `${QINIU_URL}FppwhbFzrEmDeJQgZJtDTu6WOoMZ`
  40. },
  41. {
  42. name: i18n.t('打开尾箱'),
  43. iconUrl: `${QINIU_URL}Fv3KLuYWEeV5IM4_2sMbmur7yZtz`
  44. }
  45. ]
  46. const toBeSelectTabs = [{
  47. name:i18n.t('胎压'),
  48. iconUrl: `${QINIU_URL}FmbcjmvoB4J3CT1hrbjNX4kxv9Zq`
  49. },
  50. {
  51. name: i18n.t('点出信息'),
  52. iconUrl: `${QINIU_URL}Fnx_4tLoq1ytvVA0UemepWisI73A`
  53. },
  54. {
  55. name: i18n.t('导航'),
  56. iconUrl: `${QINIU_URL}FrA_ouJtDp-39g7rMBI0EYr2czVE`
  57. }
  58. ]
  59. function setFunctionTag(tag = {}) {
  60. uni.setStorageSync(FUNCTIONTAG, tag);
  61. }
  62. function getFunctionTag() {
  63. let list = uni.getStorageSync(FUNCTIONTAG) || {
  64. activeTag:activeTabs,
  65. tag:toBeSelectTabs,
  66. }
  67. return list
  68. }
  69. function setIsLocationAuth(location_auth) {
  70. uni.setStorageSync(IS_LOCATION_AUTH, location_auth);
  71. }
  72. function getIsLocationAuth() {
  73. return uni.getStorageSync(IS_LOCATION_AUTH);
  74. }
  75. function setUserToken(user_token) {
  76. uni.setStorageSync(STORAGE_USER_TOKEN, user_token);
  77. }
  78. function getUserToken() {
  79. return uni.getStorageSync(STORAGE_USER_TOKEN);
  80. }
  81. function clearStorage() {
  82. const appConfig = getAppConfig();
  83. uni.clearStorageSync();
  84. setAppConfig(appConfig);
  85. }
  86. function productsToOrder(productArr) {
  87. uni.setStorageSync(PRODUCTS_TO_ORDER, productArr);
  88. }
  89. function getProductsToOrder() {
  90. return uni.getStorageSync(PRODUCTS_TO_ORDER);
  91. }
  92. function setBaseUserInfo(baseUserInfo) {
  93. uni.setStorageSync(USER_BASE_INFO, baseUserInfo);
  94. }
  95. function getBaseUserInfo() {
  96. return uni.getStorageSync(USER_BASE_INFO);
  97. }
  98. function cleanBaseUserInfo() {
  99. uni.removeStorageSync(USER_BASE_INFO);
  100. }
  101. function setUserInfoData(baseUserInfo) {
  102. uni.setStorageSync(USER_INFO_DATA, baseUserInfo);
  103. }
  104. function getUserInfoData() {
  105. return uni.getStorageSync(USER_INFO_DATA);
  106. }
  107. function cleanUserInfoData() {
  108. uni.removeStorageSync(USER_INFO_DATA);
  109. }
  110. function setMacid(macid) {
  111. uni.setStorageSync(POSITION_MACID, macid);
  112. }
  113. function getMacid() {
  114. return uni.getStorageSync(POSITION_MACID);
  115. }
  116. function setAppConfig(app_config) {
  117. uni.setStorageSync(APP_CONFIG, app_config);
  118. }
  119. function getAppConfig() {
  120. return uni.getStorageSync(APP_CONFIG);
  121. }
  122. function setCarImages(car_imgs) {
  123. uni.setStorageSync(CAR_IMAGES, car_imgs);
  124. }
  125. function getCarImages() {
  126. return uni.getStorageSync(CAR_IMAGES);
  127. }
  128. function setSelectedDeviceInfo(device_info) {
  129. uni.setStorageSync(SELECTED_DEVICE_INFO, device_info);
  130. }
  131. function getSelectedDeviceInfo() {
  132. return uni.getStorageSync(SELECTED_DEVICE_INFO);
  133. }
  134. function setCabinetInfo(cb_info) {
  135. uni.setStorageSync(CB_BLUETOOTH_INFO, cb_info);
  136. }
  137. function getCabinetInfo() {
  138. return uni.getStorageSync(CB_BLUETOOTH_INFO);
  139. }
  140. function setUserCurrentLocation(
  141. location_info = {
  142. longitude: '',
  143. latitude: ''
  144. }
  145. ) {
  146. uni.setStorageSync(USER_CURRENT_LOCATION, location_info);
  147. }
  148. function getUserCurrentLocation() {
  149. return uni.getStorageSync(USER_CURRENT_LOCATION);
  150. }
  151. function setIsScan(isScan) {
  152. uni.setStorageSync(IS_SCAN, isScan);
  153. }
  154. function getIsScan() {
  155. return uni.getStorageSync(IS_SCAN);
  156. }
  157. function setIsAgreement(isAgree) {
  158. uni.setStorageSync(IS_AGREEMENT, isAgree);
  159. }
  160. function getIsAgreement() {
  161. return uni.getStorageSync(IS_AGREEMENT);
  162. }
  163. function setShareCode(shareCode) {
  164. uni.setStorageSync(SHARE_CODE, shareCode);
  165. }
  166. function getShareCode() {
  167. return uni.getStorageSync(SHARE_CODE);
  168. }
  169. function setIsBuyModel(check = false) {
  170. uni.setStorageSync(IS_BUY_MODEL, check);
  171. }
  172. function getIsBuyModel() {
  173. return uni.getStorageSync(IS_BUY_MODEL);
  174. }
  175. module.exports = {
  176. setFunctionTag,
  177. getFunctionTag,
  178. setUserToken: setUserToken,
  179. getUserToken: getUserToken,
  180. clearStorage: clearStorage,
  181. productsToOrder: productsToOrder,
  182. getProductsToOrder: getProductsToOrder,
  183. setUserInfo: setBaseUserInfo,
  184. getUserInfo: getBaseUserInfo,
  185. cleanUserInfo: cleanBaseUserInfo,
  186. setUserInfoData: setUserInfoData,
  187. getUserInfoData: getUserInfoData,
  188. cleanUserInfoData: cleanUserInfoData,
  189. setIsScan: setIsScan,
  190. getIsScan: getIsScan,
  191. setIsAgreement: setIsAgreement,
  192. getIsAgreement: getIsAgreement,
  193. setMacid: setMacid,
  194. getMacid: getMacid,
  195. setAppConfig: setAppConfig,
  196. getAppConfig: getAppConfig,
  197. setCarImages: setCarImages,
  198. getCarImages: getCarImages,
  199. setSelectedDeviceInfo: setSelectedDeviceInfo,
  200. getSelectedDeviceInfo: getSelectedDeviceInfo,
  201. setCabinetInfo: setCabinetInfo,
  202. getCabinetInfo: getCabinetInfo,
  203. setUserCurrentLocation: setUserCurrentLocation,
  204. getUserCurrentLocation: getUserCurrentLocation,
  205. setShareCode: setShareCode,
  206. getShareCode: getShareCode,
  207. setIsLocationAuth: setIsLocationAuth,
  208. getIsLocationAuth: getIsLocationAuth,
  209. getIsBuyModel: getIsBuyModel,
  210. setIsBuyModel: setIsBuyModel
  211. };