categoryThree.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view class="categoryThree">
  3. <view class="head">
  4. <view class="one">{{dataInfo.grandParentName}}<uni-icons class="right" type="right" :size="16" :color="primaryColor"></uni-icons>{{dataInfo.parentName}}<uni-icons class="right" type="right" :size="16" :color="primaryColor"></uni-icons></view>
  5. <text class="two ellipsis">{{dataInfo.categoryThreeObj.category}}</text>
  6. </view>
  7. <view class="body" v-if="dataInfo.list.length">
  8. <uni-data-checkbox v-model="dataInfo.categoryThree" :localdata="dataInfo.list" mode="list" wrap icon="right" :map="{text:'category',value:'id'}" @change="selectItem"></uni-data-checkbox>
  9. </view>
  10. <view class="zanwu" v-else>
  11. <text class="newicon newicon-zanwu"></text>
  12. </view>
  13. <view class="foot_common_btns">
  14. <button @click="goBack" type="default" class="primaryButton btn">上一级</button>
  15. <button @click="confirm" 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 { useHandlerStore } from '@/stores/handler'
  27. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  28. import { useGoBack } from '@/share/useGoBack.js'
  29. useSetTitle();
  30. const loginUserStore = useLoginUserStore();
  31. const handlerStore = useHandlerStore();
  32. const incidentBuildStore = useIncidentBuildStore();
  33. const { goBack } = useGoBack();
  34. // 主题颜色
  35. const primaryColor = ref(defaultColor)
  36. // 数据
  37. const dataInfo = reactive({
  38. list: [],//工单列表
  39. idx: 0,//页码
  40. hasMore: true,//是否有更多数据
  41. incidentId: undefined,//事件ID
  42. paramData: {},//传参
  43. grandParentName: undefined,//二级故障现象名称
  44. parentId: undefined,//三级故障现象id
  45. parentName: '',//三级故障现象名称
  46. categoryThree: undefined,//三级故障现象-回显
  47. categoryThreeObj: {},//三级故障现象列表-已选择
  48. })
  49. // 选择
  50. function selectItem(e){
  51. dataInfo.categoryThreeObj = e.detail.data;
  52. }
  53. // 确认
  54. function confirm(){
  55. if(!dataInfo.categoryThree){
  56. uni.showToast({
  57. icon: 'none',
  58. title: '请选择三级故障现象'
  59. });
  60. return;
  61. }
  62. dataInfo.paramData.category = dataInfo.categoryThreeObj;
  63. if(handlerStore.handler.type){
  64. handlerStore.setHandlerData(dataInfo.paramData, handlerStore.handler.type, handlerStore.handler.sign);
  65. uni.navigateTo({
  66. url: `/pages/${handlerStore.handler.type}/${handlerStore.handler.type}?incidentId=${dataInfo.incidentId}`,
  67. })
  68. } else if(incidentBuildStore.incidentBuild.type){
  69. incidentBuildStore.setIncidentBuildData(dataInfo.paramData, incidentBuildStore.incidentBuild.type);
  70. uni.navigateTo({
  71. url: `/pages/${incidentBuildStore.incidentBuild.type}/${incidentBuildStore.incidentBuild.type}?incidentId=${dataInfo.incidentId}`,
  72. })
  73. }
  74. }
  75. // 获取传递的数据
  76. function getParamData(){
  77. if(handlerStore.handler.type){
  78. dataInfo.paramData = handlerStore.handler.data || {};
  79. } else if(incidentBuildStore.incidentBuild.type){
  80. dataInfo.paramData = incidentBuildStore.incidentBuild.data || {};
  81. }
  82. dataInfo.categoryThree = dataInfo.paramData.category ? dataInfo.paramData.category.id : undefined;
  83. dataInfo.categoryThreeObj = dataInfo.paramData.category || {};
  84. getList(0);
  85. }
  86. // 获取列表信息
  87. function getList(idx){
  88. uni.showLoading({
  89. title: "加载中",
  90. mask: true,
  91. });
  92. // dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  93. // if(dataInfo.idx === 0){
  94. // dataInfo.list = [];
  95. // }
  96. let postData = {
  97. // idx: dataInfo.idx,
  98. // sum: 9999,
  99. category: {
  100. dutyIds:loginUserStore.loginUser.user.currentHospital.id,
  101. parent: {
  102. id: dataInfo.parentId,
  103. },
  104. }
  105. }
  106. // 当前所属院区或责任科室
  107. // if(loginUserStore.loginUser.user.duty){
  108. // postData.incidentcategory.duty = loginUserStore.loginUser.user.duty.id;
  109. // }else if(loginUserStore.loginUser.user.branch){
  110. // postData.incidentcategory.branch = loginUserStore.loginUser.user.branch.id;
  111. // }
  112. api_incidentcategory(postData).then(res => {
  113. uni.hideLoading();
  114. uni.stopPullDownRefresh();
  115. if(res.status == 200){
  116. dataInfo.list = res.data || [];
  117. // if(list.length){
  118. // dataInfo.hasMore = true;
  119. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  120. // }else{
  121. // dataInfo.hasMore = false;
  122. // }
  123. }else{
  124. uni.showToast({
  125. icon: 'none',
  126. title: res.msg || '请求数据失败!'
  127. });
  128. }
  129. })
  130. }
  131. onLoad((option) => {
  132. dataInfo.incidentId = option.incidentId;
  133. dataInfo.grandParentName = option.grandParentName;
  134. dataInfo.parentId = option.parentId;
  135. dataInfo.parentName = option.parentName;
  136. getParamData();
  137. })
  138. onPullDownRefresh(() => {
  139. // getList(0)
  140. })
  141. onReachBottom(() => {
  142. // dataInfo.idx += 1;
  143. // if (dataInfo.hasMore) {
  144. // getList(); // 当触底时加载更多数据
  145. // }
  146. })
  147. </script>
  148. <style lang="scss" scoped>
  149. .categoryThree{
  150. display: flex;
  151. flex-direction: column;
  152. justify-content: space-between;
  153. .head{
  154. height: 88rpx;
  155. display: flex;
  156. align-items: center;
  157. padding: 0 24rpx;
  158. position: fixed;
  159. z-index: 99;
  160. width: 100%;
  161. box-sizing: border-box;
  162. background: #fff;
  163. font-size: 26rpx;
  164. color: $uni-primary;
  165. .right{
  166. margin-top: 2rpx;
  167. }
  168. .two{
  169. flex: 1;
  170. }
  171. }
  172. .body{
  173. border-top: 1rpx solid #DEDEDE;
  174. margin-bottom: 140rpx;
  175. margin-top: 88rpx;
  176. font-size: 26rpx;
  177. .body_item{
  178. border-bottom: 1rpx solid #DEDEDE;
  179. padding: 24rpx;
  180. }
  181. }
  182. .zanwu{
  183. margin-bottom: 140rpx;
  184. margin-top: 88rpx;
  185. display: flex;
  186. justify-content: center;
  187. .newicon-zanwu{
  188. font-size: 256rpx;
  189. color: #D6D6D6;
  190. margin-top: 140rpx;
  191. }
  192. }
  193. .foot_common_btns{
  194. position: fixed;
  195. left: 0;
  196. bottom: 0;
  197. background-color: #fff;
  198. }
  199. }
  200. </style>