workHourManagementTwo.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <template>
  2. <view class="workHourManagementTwo">
  3. <view class="head">
  4. <text class="one">{{dataInfo.parentName}}<uni-icons class="right" type="right" :size="16" :color="primaryColor"></uni-icons></text>
  5. <text class="two ellipsis">{{dataInfo.workHourManagementSelectedList.filter(v => v.parent.id == dataInfo.parentId).map(v => v.workName).join(';')}}</text>
  6. </view>
  7. <view class="body" v-if="dataInfo.list.length">
  8. <uni-data-checkbox v-model="dataInfo.workHourManagementList" multiple :localdata="dataInfo.list" mode="list" wrap icon="right" :map="{text:'workName',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_workHourManagement, getFetchDataList, api_querySummaryDoc, api_addSummaryDoc } 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. parentId: undefined,//一级工时管理id
  40. parentName: '',//一级工时管理名称
  41. workHourManagementList: [],//二级工时管理列表-回显
  42. workHourManagementSelectedList: [],//二级工时管理列表-已选择
  43. hosId:null
  44. })
  45. // 获取汇总单信息
  46. function getQuerySummaryDoc(){
  47. uni.showLoading({
  48. title: "加载中",
  49. mask: true,
  50. });
  51. let postData = {
  52. incidentId: dataInfo.incidentId,
  53. };
  54. api_querySummaryDoc(postData).then(res => {
  55. uni.hideLoading();
  56. if(res.status == 200){
  57. dataInfo.workHourManagementSelectedList = res.workHourManagementList || [];
  58. dataInfo.workHourManagementList = dataInfo.workHourManagementSelectedList.map(v => v.id);
  59. getList(0);
  60. }else{
  61. uni.showToast({
  62. icon: 'none',
  63. title: res.msg || '请求数据失败!'
  64. });
  65. }
  66. })
  67. }
  68. // 选择
  69. function selectItem(e){
  70. let workHourManagementSelectedList = dataInfo.workHourManagementSelectedList.filter(v => v.parent.id != dataInfo.parentId);
  71. dataInfo.workHourManagementSelectedList = workHourManagementSelectedList.concat(e.detail.data);
  72. }
  73. // 确认
  74. function confirm(){
  75. if(dataInfo.workHourManagementSelectedList.length === 0){
  76. uni.showToast({
  77. icon: 'none',
  78. title: '请选择二级工时管理'
  79. });
  80. return;
  81. }
  82. uni.showLoading({
  83. title: "加载中",
  84. mask: true,
  85. });
  86. let postData = {
  87. "workHourManagementList": dataInfo.workHourManagementSelectedList.map(v => ({workHourId: v.id, workHourNum: v.workHourNum2 || 1})),
  88. "summaryId": dataInfo.summaryId
  89. };
  90. api_addSummaryDoc(postData).then(res => {
  91. uni.hideLoading();
  92. if(res.status == 200){
  93. uni.showToast({
  94. icon: 'none',
  95. title: '添加工时成功',
  96. mask: true,
  97. });
  98. setTimeout(() => {
  99. uni.navigateTo({
  100. url: `/pages/handler/handler?incidentId=${dataInfo.incidentId}`,
  101. })
  102. }, 1500)
  103. }else{
  104. uni.showToast({
  105. icon: 'none',
  106. title: res.msg || '请求数据失败!'
  107. });
  108. }
  109. })
  110. }
  111. // 获取列表信息
  112. function getList(idx){
  113. uni.showLoading({
  114. title: "加载中",
  115. mask: true,
  116. });
  117. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  118. if(dataInfo.idx === 0){
  119. dataInfo.list = [];
  120. }
  121. let postData = {
  122. idx: dataInfo.idx,
  123. sum: 9999,
  124. workHourManagement: {
  125. treeLevel:2,
  126. hosId:dataInfo.hosId,
  127. parent: {
  128. id: dataInfo.parentId,
  129. }
  130. }
  131. }
  132. getFetchDataList("simple/data", "workHourManagement", postData).then(res => {
  133. uni.hideLoading();
  134. uni.stopPullDownRefresh();
  135. if(res.status == 200){
  136. let list = res.list || [];
  137. dataInfo.list = list
  138. // if(list.length){
  139. // dataInfo.hasMore = true;
  140. // dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  141. // }else{
  142. // dataInfo.hasMore = false;
  143. // }
  144. }else{
  145. uni.showToast({
  146. icon: 'none',
  147. title: res.msg || '请求数据失败!'
  148. });
  149. }
  150. })
  151. }
  152. onLoad((option) => {
  153. dataInfo.incidentId = option.incidentId;
  154. dataInfo.summaryId = option.summaryId;
  155. dataInfo.parentId = option.parentId;
  156. dataInfo.parentName = option.parentName;
  157. dataInfo.hosId = option.hosId;
  158. getQuerySummaryDoc();
  159. })
  160. onPullDownRefresh(() => {
  161. getList(0)
  162. })
  163. onReachBottom(() => {
  164. // dataInfo.idx += 1;
  165. // if (dataInfo.hasMore) {
  166. // getList(); // 当触底时加载更多数据
  167. // }
  168. })
  169. </script>
  170. <style lang="scss" scoped>
  171. .workHourManagementTwo{
  172. display: flex;
  173. flex-direction: column;
  174. justify-content: space-between;
  175. .head{
  176. height: 88rpx;
  177. display: flex;
  178. align-items: center;
  179. padding: 0 24rpx;
  180. position: fixed;
  181. z-index: 99;
  182. width: 100%;
  183. box-sizing: border-box;
  184. background: #fff;
  185. font-size: 26rpx;
  186. color: $uni-primary;
  187. .right{
  188. margin-top: 2rpx;
  189. }
  190. .two{
  191. flex: 1;
  192. }
  193. }
  194. .body{
  195. border-top: 1rpx solid #DEDEDE;
  196. margin-bottom: 140rpx;
  197. margin-top: 88rpx;
  198. font-size: 26rpx;
  199. .body_item{
  200. border-bottom: 1rpx solid #DEDEDE;
  201. padding: 24rpx;
  202. }
  203. }
  204. .zanwu{
  205. margin-bottom: 140rpx;
  206. margin-top: 88rpx;
  207. display: flex;
  208. justify-content: center;
  209. .newicon-zanwu{
  210. font-size: 256rpx;
  211. color: #D6D6D6;
  212. margin-top: 140rpx;
  213. }
  214. }
  215. .foot_common_btns{
  216. position: fixed;
  217. left: 0;
  218. bottom: 0;
  219. background-color: #fff;
  220. }
  221. }
  222. </style>