storage.js 6.2 KB

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