categoryTwo.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view class="categoryTwo">
  3. <view class="head">
  4. {{dataInfo.parentName}}
  5. </view>
  6. <view class="body" v-if="dataInfo.list.length">
  7. <view class="body_item ellipsis" v-for="data in dataInfo.list" :key="data.id" @click="toCategoryThree(data)">
  8. {{data.category}}
  9. </view>
  10. </view>
  11. <view class="zanwu" v-else>
  12. <text class="newicon newicon-zanwu"></text>
  13. </view>
  14. <view class="foot_common_btns">
  15. <button @click="goBack" type="default" class="primaryButton btn">上一级</button>
  16. </view>
  17. </view>
  18. </template>
  19. <script setup>
  20. import { ref, reactive} from 'vue'
  21. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  22. import { api_incidentcategory } from "@/http/api.js"
  23. import { defaultColor } from '@/static/js/theme.js'
  24. import { useSetTitle } from '@/share/useSetTitle.js'
  25. import { useLoginUserStore } from '@/stores/loginUser'
  26. import { useGoBack } from '@/share/useGoBack.js'
  27. useSetTitle();
  28. const loginUserStore = useLoginUserStore();
  29. const { goBack } = useGoBack();
  30. // 主题颜色
  31. const primaryColor = ref(defaultColor)
  32. // 数据
  33. const dataInfo = reactive({
  34. list: [],//工单列表
  35. idx: 0,//页码
  36. hasMore: true,//是否有更多数据
  37. incidentId: undefined,//事件ID
  38. parentId: undefined,//父级故障现象ID
  39. parentName: undefined,//父级故障现象名称
  40. })
  41. // 跳转三级故障现象列表
  42. function toCategoryThree(data){
  43. uni.navigateTo({
  44. url: `/pages/categoryThree/categoryThree?incidentId=${dataInfo.incidentId}&grandParentName=${dataInfo.parentName}&parentId=${data.id}&parentName=${data.category}`
  45. })
  46. }
  47. // 获取列表信息
  48. function getList(idx){
  49. uni.showLoading({
  50. title: "加载中",
  51. mask: true,
  52. });
  53. // dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  54. // if(dataInfo.idx === 0){
  55. // dataInfo.list = [];
  56. // }
  57. let postData = {
  58. // idx: dataInfo.idx,
  59. // sum: 9999,
  60. category: {
  61. dutyIds:loginUserStore.loginUser.user.currentHospital.id,
  62. parent: {
  63. id: dataInfo.parentId,
  64. },
  65. }
  66. }
  67. // 当前所属院区或责任科室
  68. // if(loginUserStore.loginUser.user.duty){
  69. // postData.incidentcategory.duty = loginUserStore.loginUser.user.duty.id;
  70. // }else if(loginUserStore.loginUser.user.branch){
  71. // postData.incidentcategory.branch = loginUserStore.loginUser.user.branch.id;
  72. // }
  73. api_incidentcategory(postData).then(res => {
  74. uni.hideLoading();
  75. uni.stopPullDownRefresh();
  76. if(res.status == 200){
  77. dataInfo.list = res.data || [];
  78. // if(list.length){
  79. // dataInfo.hasMore = true;
  80. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  81. // }else{
  82. // dataInfo.hasMore = false;
  83. // }
  84. }else{
  85. uni.showToast({
  86. icon: 'none',
  87. title: res.msg || '请求数据失败!'
  88. });
  89. }
  90. })
  91. }
  92. onLoad((option) => {
  93. dataInfo.incidentId = option.incidentId;
  94. dataInfo.parentId = option.parentId;
  95. dataInfo.parentName = option.parentName;
  96. getList(0);
  97. })
  98. onPullDownRefresh(() => {
  99. // getList(0)
  100. })
  101. onReachBottom(() => {
  102. // dataInfo.idx += 1;
  103. // if (dataInfo.hasMore) {
  104. // getList(); // 当触底时加载更多数据
  105. // }
  106. })
  107. </script>
  108. <style lang="scss" scoped>
  109. .categoryTwo{
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: space-between;
  113. .head{
  114. height: 88rpx;
  115. display: flex;
  116. align-items: center;
  117. padding: 0 24rpx;
  118. position: fixed;
  119. z-index: 99;
  120. width: 100%;
  121. box-sizing: border-box;
  122. background: #fff;
  123. font-size: 26rpx;
  124. color: $uni-primary;
  125. }
  126. .body{
  127. border-top: 1rpx solid #DEDEDE;
  128. margin-bottom: 140rpx;
  129. margin-top: 88rpx;
  130. font-size: 26rpx;
  131. .body_item{
  132. border-bottom: 1rpx solid #DEDEDE;
  133. padding: 24rpx;
  134. }
  135. }
  136. .zanwu{
  137. margin-bottom: 140rpx;
  138. margin-top: 88rpx;
  139. display: flex;
  140. justify-content: center;
  141. .newicon-zanwu{
  142. font-size: 256rpx;
  143. color: #D6D6D6;
  144. margin-top: 140rpx;
  145. }
  146. }
  147. .foot_common_btns{
  148. position: fixed;
  149. left: 0;
  150. bottom: 0;
  151. background-color: #fff;
  152. }
  153. }
  154. </style>