血透系统pad前端

index.vue 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <div class="mainBox">
  3. <div>
  4. <side-bar :active_index="0" :total_read_dot="readNum"></side-bar>
  5. <div class="mainContent">
  6. <record-page :un_read_wait_num="unReadWaitNum" :un_read_dialysis_num="unReadDialysisNum"></record-page>
  7. </div>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. import RecordPage from './RecordPage'
  13. import SideBar from '@/pages/layout/SideBar'
  14. import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
  15. import {parseTime} from '@/utils/index'
  16. export default {
  17. name: 'Main',
  18. data () {
  19. return {
  20. timer:null,
  21. scheduals: [],
  22. advice_groups: [],
  23. unReadWaitNum: 0,
  24. unReadDialysisNum: 0,
  25. }
  26. },
  27. components: {
  28. RecordPage,
  29. SideBar,
  30. },
  31. created () {
  32. this.requestScheduals()
  33. this.requestDialysisScheduals()
  34. },
  35. methods: {
  36. requestScheduals () {
  37. var storedata = this.$store.getters.waitscheduals
  38. var scheduals = storedata.waitscheduals
  39. if (Object.keys(storedata).length > 0){
  40. this.scheduals = scheduals
  41. console.log(this.scheduals)
  42. let doctorAdvice = []
  43. for (let i = 0; i < this.scheduals.length; i++) {
  44. for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
  45. if(this.scheduals[i].dialysis_order == null ){
  46. if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
  47. doctorAdvice.push(this.scheduals[i].doctor_advice[y])
  48. }
  49. }
  50. }
  51. }
  52. const sorted = this.groupBy(doctorAdvice, function (item) {
  53. return [item.groupno]
  54. })
  55. this.unReadWaitNum = sorted.length
  56. } else {
  57. var date = parseTime(Date.parse(new Date()), '{y}-{m}-{d}')
  58. getWaitingScheduals({date: date}).then(rs => {
  59. var resp = rs.data
  60. this.$store.dispatch("SetRequestScheduals",{resp})
  61. // console.log(resp);
  62. if (resp.state == 1) {
  63. var scheduals = resp.data.scheduals
  64. this.scheduals = scheduals
  65. console.log(this.scheduals)
  66. let doctorAdvice = []
  67. for (let i = 0; i < this.scheduals.length; i++) {
  68. for (let y = 0; y < this.scheduals[i].doctor_advice.length; y++) {
  69. if(this.scheduals[i].dialysis_order == null ){
  70. if (this.scheduals[i].doctor_advice[y].execution_state == 2) {
  71. doctorAdvice.push(this.scheduals[i].doctor_advice[y])
  72. }
  73. }
  74. }
  75. }
  76. const sorted = this.groupBy(doctorAdvice, function (item) {
  77. return [item.groupno]
  78. })
  79. this.unReadWaitNum = sorted.length
  80. } else {
  81. this.$toast({
  82. message: resp.msg
  83. })
  84. }
  85. })
  86. }
  87. },
  88. requestDialysisScheduals () {
  89. var storedata = this.$store.getters.scheduals
  90. var scheduals = storedata.scheduals
  91. if (Object.keys(storedata).length > 0){
  92. let doctorAdvice = []
  93. for (let index = 0; index < scheduals.length; index++) {
  94. const schedual = scheduals[index]
  95. if (schedual.dialysis_order == null) {
  96. continue
  97. }
  98. for (let y = 0; y < schedual.doctor_advice.length; y++) {
  99. if (schedual.doctor_advice[y].execution_state == 2) {
  100. doctorAdvice.push(schedual.doctor_advice[y])
  101. }
  102. }
  103. }
  104. const sorted = this.groupBy(doctorAdvice, function (item) {
  105. return [item.groupno]
  106. })
  107. this.unReadDialysisNum = sorted.length
  108. }else {
  109. var date = this.$store.getters.app.dialysis_area.schedule_date
  110. var type = 0
  111. getDialysisScheduals({type: type, date: parseTime(date, '{y}-{m}-{d}')})
  112. .then(rs => {
  113. var resp = rs.data
  114. this.$store.dispatch("SetRequestDialysisScheduals",{resp})
  115. if (resp.state == 1) {
  116. var scheduals = resp.data.scheduals
  117. let doctorAdvice = []
  118. for (let index = 0; index < scheduals.length; index++) {
  119. const schedual = scheduals[index]
  120. if (schedual.dialysis_order == null) {
  121. continue
  122. }
  123. for (let y = 0; y < schedual.doctor_advice.length; y++) {
  124. if (schedual.doctor_advice[y].execution_state == 2) {
  125. doctorAdvice.push(schedual.doctor_advice[y])
  126. }
  127. }
  128. }
  129. const sorted = this.groupBy(doctorAdvice, function (item) {
  130. return [item.groupno]
  131. })
  132. this.unReadDialysisNum = sorted.length
  133. } else {
  134. this.$toast({
  135. message: resp.msg
  136. })
  137. }
  138. })
  139. .catch(v => {
  140. })
  141. }
  142. }, groupBy (array, f) {
  143. const groups = {}
  144. array.forEach(function (o) {
  145. const group = JSON.stringify(f(o))
  146. groups[group] = groups[group] || []
  147. groups[group].push(o)
  148. })
  149. return Object.keys(groups).map(function (group) {
  150. return groups[group]
  151. })
  152. },getData(){
  153. console.log("111111")
  154. // this.requestScheduals()
  155. // this.requestDialysisScheduals()
  156. }
  157. },
  158. computed: {
  159. readNum: function () {
  160. return this.unReadWaitNum + this.unReadDialysisNum
  161. }
  162. }, mounted(){
  163. this.timer = window.setInterval(() => {
  164. setTimeout(this.getData(), 0)
  165. }, 30000)
  166. },beforeDestroy() {
  167. clearInterval(this.timer);
  168. this.timer = null;
  169. },
  170. }
  171. </script>
  172. <style style="stylesheet/scss" lang="scss" scoped>
  173. html,
  174. body {
  175. height: 100%;
  176. }
  177. .mainBox {
  178. height: 100%;
  179. font-size:0.3rem;
  180. .sideColumn {
  181. .column {
  182. .head {
  183. @include display-flex;
  184. @include align-items-center;
  185. @include flex-direction;
  186. @include text-align;
  187. @include justify-content-center;
  188. margin: 0.5rem 0 0.5rem 0;
  189. img {
  190. width: 100%;
  191. height: 100%;
  192. border-radius: 0.5rem;
  193. width: 0.7rem;
  194. height: 0.7rem;
  195. }
  196. }
  197. .sidebar {
  198. @include display-flex;
  199. @include align-items-center;
  200. @include flex-direction;
  201. @include text-align;
  202. padding: 0;
  203. li {
  204. padding: 0 0 0.8rem 0;
  205. a {
  206. color: #a8b3ba;
  207. display: inline-block;
  208. padding: 0;
  209. margin: 0;
  210. p {
  211. font-size: 0.24rem;
  212. margin-top: 0.2rem;
  213. }
  214. .iconfont {
  215. font-size: 0.5rem;
  216. display: inline-block;
  217. }
  218. }
  219. &.active {
  220. a {
  221. color: #409eff;
  222. }
  223. }
  224. }
  225. }
  226. }
  227. }
  228. }
  229. .mainContent{
  230. margin: 0 0 0 1.58rem;
  231. }
  232. </style>