synergeticAdd.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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, handlerStore.handler.sign);
  57. uni.navigateTo({
  58. url: `/pages/${handlerStore.handler.type}/${handlerStore.handler.type}?incidentId=${dataInfo.incidentId}&isSummaryNext=1`,
  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. hospital:{
  76. id:dataInfo.paramData.incidentData.duty.id?dataInfo.paramData.incidentData.duty.id:dataInfo.paramData.incidentData.duty
  77. },
  78. roledata: {
  79. "rolecode": "first-line support"
  80. },
  81. "engineer": 1,
  82. "simple": true,
  83. }
  84. }
  85. api_user(postData).then(res => {
  86. uni.hideLoading();
  87. uni.stopPullDownRefresh();
  88. if(res.status == 200){
  89. let list = res.list || [];
  90. if(list.length){
  91. dataInfo.hasMore = true;
  92. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  93. }else{
  94. dataInfo.hasMore = false;
  95. }
  96. }else{
  97. uni.showToast({
  98. icon: 'none',
  99. title: res.msg || '请求数据失败!'
  100. });
  101. }
  102. })
  103. }
  104. // 获取传递的数据
  105. function getParamData(){
  106. dataInfo.paramData = handlerStore.handler.data || {};
  107. dataInfo.userSelectedList = dataInfo.paramData.synergetic || [];
  108. dataInfo.userList = dataInfo.userSelectedList.map(v => v.id);
  109. if(dataInfo.incidentId !== 'undefined'){
  110. getIncidentDetail();
  111. }else{
  112. dataInfo.incidentData = handlerStore.handler.data.incidentData || {};
  113. getList(0);
  114. }
  115. }
  116. // 获取事件详情
  117. function getIncidentDetail(){
  118. uni.showLoading({
  119. title: "加载中",
  120. mask: true,
  121. });
  122. api_incidentDetail(dataInfo.incidentId).then(res => {
  123. uni.hideLoading();
  124. if(res.status == 200){
  125. dataInfo.incidentData = res.data || {};
  126. getList(0);
  127. }else{
  128. uni.showToast({
  129. icon: 'none',
  130. title: res.msg || '请求数据失败!'
  131. });
  132. }
  133. })
  134. }
  135. onLoad((option) => {
  136. dataInfo.incidentId = option.incidentId;
  137. getParamData();
  138. })
  139. onPullDownRefresh(() => {
  140. getList(0)
  141. })
  142. onReachBottom(() => {
  143. dataInfo.idx += 1;
  144. if (dataInfo.hasMore) {
  145. getList(); // 当触底时加载更多数据
  146. }
  147. })
  148. </script>
  149. <style lang="scss" scoped>
  150. .synergeticAdd{
  151. display: flex;
  152. flex-direction: column;
  153. justify-content: space-between;
  154. .head{
  155. height: 88rpx;
  156. display: flex;
  157. align-items: center;
  158. padding: 0 24rpx;
  159. position: fixed;
  160. z-index: 99;
  161. width: 100%;
  162. box-sizing: border-box;
  163. background: #fff;
  164. font-size: 26rpx;
  165. color: $uni-primary;
  166. .right{
  167. margin-top: 2rpx;
  168. }
  169. .two{
  170. flex: 1;
  171. }
  172. }
  173. .body{
  174. margin-bottom: 140rpx;
  175. font-size: 26rpx;
  176. .body_item{
  177. border-bottom: 1rpx solid #DEDEDE;
  178. padding: 24rpx;
  179. }
  180. }
  181. .zanwu{
  182. margin-bottom: 140rpx;
  183. display: flex;
  184. justify-content: center;
  185. .newicon-zanwu{
  186. font-size: 256rpx;
  187. color: #D6D6D6;
  188. margin-top: 140rpx;
  189. }
  190. }
  191. .foot_common_btns{
  192. position: fixed;
  193. left: 0;
  194. bottom: 0;
  195. background-color: #fff;
  196. }
  197. }
  198. </style>