synergeticAdd.vue 5.1 KB

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