storage.js 6.0 KB

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