Нет описания

queryBase.js 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /**
  2. * Created by luyanan on 18/8/27.
  3. * bridge、server、device
  4. */
  5. /* eslint-disable one-var */
  6. import request from '@/utils/request'
  7. var $req = {
  8. get: function(url, data, sh, eh) {
  9. request({
  10. method: 'get',
  11. url: url,
  12. params: data
  13. }).then(res => {
  14. sh(res)
  15. }).catch(err => {
  16. console.log(err)
  17. eh(err)
  18. })
  19. }
  20. }
  21. var objCache = {
  22. bridge: {},
  23. server: {},
  24. device: {}
  25. }
  26. var objHcache = {
  27. bridge: {},
  28. server: {},
  29. device: {}
  30. }
  31. var objCacheHandler = {
  32. bridge: function(id) {
  33. var hc = objHcache.bridge[id]
  34. $req.get('/ajax/bridge/qo?id=' + id, null, function(data) {
  35. delete objHcache.bridge[id]
  36. if (data.success) {
  37. objCache.bridge[id] = data.data
  38. for (let i = 0; i < hc.length; ++i) {
  39. hc[i](true, data.data)
  40. }
  41. } else {
  42. for (let i = 0; i < hc.length; ++i) {
  43. hc[i](false)
  44. }
  45. }
  46. }, function() {
  47. for (let i = 0; i < hc.length; ++i) {
  48. hc[i](false)
  49. }
  50. })
  51. },
  52. server: function(id) {
  53. var hc = objHcache.server[id]
  54. $req.get('/ajax/server/qo?id=' + id, null, function(data) {
  55. delete objHcache.server[id]
  56. if (data.success) {
  57. objCache.server[id] = data.data
  58. for (let i = 0; i < hc.length; ++i) {
  59. hc[i](true, data.data)
  60. }
  61. } else {
  62. for (let i = 0; i < hc.length; ++i) {
  63. hc[i](false)
  64. }
  65. }
  66. }, function() {
  67. for (let i = 0; i < hc.length; ++i) {
  68. hc[i](false)
  69. }
  70. })
  71. },
  72. device: function(id) {
  73. var hc = objHcache.device[id]
  74. $req.get('/ajax/device/qo?id=' + id, null, function(data) {
  75. delete objHcache.device[id]
  76. if (data.success) {
  77. objCache.device[id] = data.data
  78. for (let i = 0; i < hc.length; ++i) {
  79. hc[i](true, data.data)
  80. }
  81. } else {
  82. for (let i = 0; i < hc.length; ++i) {
  83. hc[i](false)
  84. }
  85. }
  86. }, function() {
  87. for (let i = 0; i < hc.length; ++i) {
  88. hc[i](false)
  89. }
  90. })
  91. }
  92. }
  93. var cacheModel = {
  94. getBridge: function(id, handler) {
  95. var data = objCache.bridge[id]
  96. if (data) {
  97. handler(true, data)
  98. } else {
  99. if (objHcache.bridge[id]) {
  100. objHcache.bridge[id].push(handler)
  101. } else {
  102. objHcache.bridge[id] = []
  103. objHcache.bridge[id].push(handler)
  104. objCacheHandler.bridge(id)
  105. }
  106. }
  107. },
  108. getServer: function(id, handler) {
  109. var data = objCache.server[id]
  110. if (data) {
  111. handler(true, data)
  112. } else {
  113. if (objHcache.server[id]) {
  114. objHcache.server[id].push(handler)
  115. } else {
  116. objHcache.server[id] = []
  117. objHcache.server[id].push(handler)
  118. objCacheHandler.server(id)
  119. }
  120. }
  121. },
  122. getDevice: function(id, handler) {
  123. var data = objCache.device[id]
  124. if (data) {
  125. handler(true, data)
  126. } else {
  127. if (objHcache.device[id]) {
  128. objHcache.device[id].push(handler)
  129. } else {
  130. objHcache.device[id] = []
  131. objHcache.device[id].push(handler)
  132. objCacheHandler.device(id)
  133. }
  134. }
  135. }
  136. }
  137. export default cacheModel