storage.js 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. type:'turnOnOrOff',
  31. iconUrl: `${QINIU_URL}Fp5T9lSNakoiioji6S7W4DmFQ_ys`,
  32. offUrl: `${QINIU_URL}FqxGx0H169EOJN0__Ym2Ls8x2i03`,
  33. isLock: true,
  34. isTurnOn:1
  35. },
  36. {
  37. name: i18n.t('闪灯鸣笛'),
  38. type:'findCar',
  39. iconUrl: `${QINIU_URL}FpeQsDh2dbeTullNLI-HhWj4WAQS`
  40. },
  41. {
  42. name: i18n.t('打开座桶'),
  43. type:'openSeatBag',
  44. iconUrl: `${QINIU_URL}FppwhbFzrEmDeJQgZJtDTu6WOoMZ`
  45. },
  46. {
  47. name: i18n.t('打开尾箱'),
  48. type:'openTailBox',
  49. iconUrl: `${QINIU_URL}Fv3KLuYWEeV5IM4_2sMbmur7yZtz`
  50. }
  51. ]
  52. const toBeSelectTabs = [{
  53. name:i18n.t('胎压'),
  54. type:'tirePressure',
  55. iconUrl: `${QINIU_URL}FmbcjmvoB4J3CT1hrbjNX4kxv9Zq`
  56. },
  57. {
  58. name: i18n.t('电池信息'),
  59. type:'batteryInfo',
  60. iconUrl: `${QINIU_URL}Fnx_4tLoq1ytvVA0UemepWisI73A`
  61. },
  62. {
  63. name: i18n.t('导航'),
  64. type:'navigation',
  65. iconUrl: `${QINIU_URL}FrA_ouJtDp-39g7rMBI0EYr2czVE`
  66. }
  67. ]
  68. function setFunctionTag(tag = {}) {
  69. uni.setStorageSync(FUNCTIONTAG, tag);
  70. }
  71. function getFunctionTag() {
  72. let list = uni.getStorageSync(FUNCTIONTAG) || {
  73. activeTag:activeTabs,
  74. tag:toBeSelectTabs,
  75. }
  76. return list
  77. }
  78. function setIsLocationAuth(location_auth) {
  79. uni.setStorageSync(IS_LOCATION_AUTH, location_auth);
  80. }
  81. function getIsLocationAuth() {
  82. return uni.getStorageSync(IS_LOCATION_AUTH);
  83. }
  84. function setUserToken(user_token) {
  85. uni.setStorageSync(STORAGE_USER_TOKEN, user_token);
  86. }
  87. function getUserToken() {
  88. return uni.getStorageSync(STORAGE_USER_TOKEN);
  89. }
  90. function clearStorage() {
  91. const appConfig = getAppConfig();
  92. uni.clearStorageSync();
  93. setAppConfig(appConfig);
  94. }
  95. function productsToOrder(productArr) {
  96. uni.setStorageSync(PRODUCTS_TO_ORDER, productArr);
  97. }
  98. function getProductsToOrder() {
  99. return uni.getStorageSync(PRODUCTS_TO_ORDER);
  100. }
  101. function setBaseUserInfo(baseUserInfo) {
  102. uni.setStorageSync(USER_BASE_INFO, baseUserInfo);
  103. }
  104. function getBaseUserInfo() {
  105. return uni.getStorageSync(USER_BASE_INFO);
  106. }
  107. function cleanBaseUserInfo() {
  108. uni.removeStorageSync(USER_BASE_INFO);
  109. }
  110. function setUserInfoData(baseUserInfo) {
  111. uni.setStorageSync(USER_INFO_DATA, baseUserInfo);
  112. }
  113. function getUserInfoData() {
  114. return uni.getStorageSync(USER_INFO_DATA);
  115. }
  116. function cleanUserInfoData() {
  117. uni.removeStorageSync(USER_INFO_DATA);
  118. }
  119. function setMacid(macid) {
  120. uni.setStorageSync(POSITION_MACID, macid);
  121. }
  122. function getMacid() {
  123. return uni.getStorageSync(POSITION_MACID);
  124. }
  125. function setAppConfig(app_config) {
  126. uni.setStorageSync(APP_CONFIG, app_config);
  127. }
  128. function getAppConfig() {
  129. return uni.getStorageSync(APP_CONFIG);
  130. }
  131. function setCarImages(car_imgs) {
  132. uni.setStorageSync(CAR_IMAGES, car_imgs);
  133. }
  134. function getCarImages() {
  135. return uni.getStorageSync(CAR_IMAGES);
  136. }
  137. function setSelectedDeviceInfo(device_info) {
  138. uni.setStorageSync(SELECTED_DEVICE_INFO, device_info);
  139. }
  140. function getSelectedDeviceInfo() {
  141. return uni.getStorageSync(SELECTED_DEVICE_INFO);
  142. }
  143. function setCabinetInfo(cb_info) {
  144. uni.setStorageSync(CB_BLUETOOTH_INFO, cb_info);
  145. }
  146. function getCabinetInfo() {
  147. return uni.getStorageSync(CB_BLUETOOTH_INFO);
  148. }
  149. function setUserCurrentLocation(
  150. location_info = {
  151. longitude: '',
  152. latitude: ''
  153. }
  154. ) {
  155. uni.setStorageSync(USER_CURRENT_LOCATION, location_info);
  156. }
  157. function getUserCurrentLocation() {
  158. return uni.getStorageSync(USER_CURRENT_LOCATION);
  159. }
  160. function setIsScan(isScan) {
  161. uni.setStorageSync(IS_SCAN, isScan);
  162. }
  163. function getIsScan() {
  164. return uni.getStorageSync(IS_SCAN);
  165. }
  166. function setIsAgreement(isAgree) {
  167. uni.setStorageSync(IS_AGREEMENT, isAgree);
  168. }
  169. function getIsAgreement() {
  170. return uni.getStorageSync(IS_AGREEMENT);
  171. }
  172. function setShareCode(shareCode) {
  173. uni.setStorageSync(SHARE_CODE, shareCode);
  174. }
  175. function getShareCode() {
  176. return uni.getStorageSync(SHARE_CODE);
  177. }
  178. function setIsBuyModel(check = false) {
  179. uni.setStorageSync(IS_BUY_MODEL, check);
  180. }
  181. function getIsBuyModel() {
  182. return uni.getStorageSync(IS_BUY_MODEL);
  183. }
  184. module.exports = {
  185. setFunctionTag,
  186. getFunctionTag,
  187. setUserToken: setUserToken,
  188. getUserToken: getUserToken,
  189. clearStorage: clearStorage,
  190. productsToOrder: productsToOrder,
  191. getProductsToOrder: getProductsToOrder,
  192. setUserInfo: setBaseUserInfo,
  193. getUserInfo: getBaseUserInfo,
  194. cleanUserInfo: cleanBaseUserInfo,
  195. setUserInfoData: setUserInfoData,
  196. getUserInfoData: getUserInfoData,
  197. cleanUserInfoData: cleanUserInfoData,
  198. setIsScan: setIsScan,
  199. getIsScan: getIsScan,
  200. setIsAgreement: setIsAgreement,
  201. getIsAgreement: getIsAgreement,
  202. setMacid: setMacid,
  203. getMacid: getMacid,
  204. setAppConfig: setAppConfig,
  205. getAppConfig: getAppConfig,
  206. setCarImages: setCarImages,
  207. getCarImages: getCarImages,
  208. setSelectedDeviceInfo: setSelectedDeviceInfo,
  209. getSelectedDeviceInfo: getSelectedDeviceInfo,
  210. setCabinetInfo: setCabinetInfo,
  211. getCabinetInfo: getCabinetInfo,
  212. setUserCurrentLocation: setUserCurrentLocation,
  213. getUserCurrentLocation: getUserCurrentLocation,
  214. setShareCode: setShareCode,
  215. getShareCode: getShareCode,
  216. setIsLocationAuth: setIsLocationAuth,
  217. getIsLocationAuth: getIsLocationAuth,
  218. getIsBuyModel: getIsBuyModel,
  219. setIsBuyModel: setIsBuyModel
  220. };