workHourManagementOne.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <view class="workHourManagementOne">
  3. <view class="head">
  4. 请选择工时分类
  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="toWorkHourManagementTwo(data)">
  8. {{data.workName}}
  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_workHourManagement } 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. summaryId: undefined,//汇总单ID
  39. })
  40. // 跳转二级工时管理列表
  41. function toWorkHourManagementTwo(data){
  42. uni.navigateTo({
  43. url: `/pages/workHourManagementTwo/workHourManagementTwo?incidentId=${dataInfo.incidentId}&summaryId=${dataInfo.summaryId}&parentId=${data.id}&parentName=${data.workName}`
  44. })
  45. }
  46. // 获取列表信息
  47. function getList(idx){
  48. uni.showLoading({
  49. title: "加载中",
  50. mask: true,
  51. });
  52. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  53. if(dataInfo.idx === 0){
  54. dataInfo.list = [];
  55. }
  56. let postData = {
  57. idx: dataInfo.idx,
  58. sum: 9999,
  59. workHourManagement: {
  60. treeLevel: 1,
  61. }
  62. }
  63. api_workHourManagement(postData).then(res => {
  64. uni.hideLoading();
  65. uni.stopPullDownRefresh();
  66. if(res.status == 200){
  67. let list = res.list || [];
  68. dataInfo.list = list
  69. // if(list.length){
  70. // dataInfo.hasMore = true;
  71. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  72. // }else{
  73. // dataInfo.hasMore = false;
  74. // }
  75. }else{
  76. uni.showToast({
  77. icon: 'none',
  78. title: res.msg || '请求数据失败!'
  79. });
  80. }
  81. })
  82. }
  83. onLoad((option) => {
  84. dataInfo.incidentId = option.incidentId;
  85. dataInfo.summaryId = option.summaryId;
  86. getList(0);
  87. })
  88. onPullDownRefresh(() => {
  89. getList(0)
  90. })
  91. onReachBottom(() => {
  92. // dataInfo.idx += 1;
  93. // if (dataInfo.hasMore) {
  94. // getList(); // 当触底时加载更多数据
  95. // }
  96. })
  97. </script>
  98. <style lang="scss" scoped>
  99. .workHourManagementOne{
  100. display: flex;
  101. flex-direction: column;
  102. justify-content: space-between;
  103. .head{
  104. height: 88rpx;
  105. display: flex;
  106. align-items: center;
  107. padding: 0 24rpx;
  108. position: fixed;
  109. z-index: 99;
  110. width: 100%;
  111. box-sizing: border-box;
  112. background: #fff;
  113. font-size: 26rpx;
  114. color: $uni-primary;
  115. }
  116. .body{
  117. border-top: 1rpx solid #DEDEDE;
  118. margin-bottom: 140rpx;
  119. margin-top: 88rpx;
  120. font-size: 26rpx;
  121. .body_item{
  122. border-bottom: 1rpx solid #DEDEDE;
  123. padding: 24rpx;
  124. }
  125. }
  126. .zanwu{
  127. margin-bottom: 140rpx;
  128. margin-top: 88rpx;
  129. display: flex;
  130. justify-content: center;
  131. .newicon-zanwu{
  132. font-size: 256rpx;
  133. color: #D6D6D6;
  134. margin-top: 140rpx;
  135. }
  136. }
  137. .foot_common_btns{
  138. position: fixed;
  139. left: 0;
  140. bottom: 0;
  141. background-color: #fff;
  142. }
  143. }
  144. </style>