consumableList.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. <template>
  2. <view class="consumableList">
  3. <view class="head">
  4. <uni-search-bar v-model="dataInfo.keyWord" placeholder="请搜索耗材" bgColor="#F8F8F8" @input="search" cancelButton="none" focus :radius="18" />
  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="numberClick(data, 'addConsumable')">
  8. {{data.name}}
  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. <NumberModal v-if="dataInfo.isNumber" @cancelEmit="cancelNumber" @confirmEmit="conformNumber" :selectData="dataInfo.selectData" :selectType="dataInfo.selectType"></NumberModal>
  18. </view>
  19. </template>
  20. <script setup>
  21. import { debounce } from 'lodash-es'
  22. import { ref, reactive} from 'vue'
  23. import NumberModal from '@/components/NumberModal.vue';
  24. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  25. import { api_consumable, api_incidentDetail, api_addSummaryDoc } from "@/http/api.js"
  26. import { defaultColor } from '@/static/js/theme.js'
  27. import { useSetTitle } from '@/share/useSetTitle.js'
  28. import { useLoginUserStore } from '@/stores/loginUser'
  29. import { useGoBack } from '@/share/useGoBack.js'
  30. useSetTitle();
  31. const loginUserStore = useLoginUserStore();
  32. const { goBack } = useGoBack();
  33. // 主题颜色
  34. const primaryColor = ref(defaultColor)
  35. // 数据
  36. const dataInfo = reactive({
  37. list: [],//工单列表
  38. idx: 0,//页码
  39. hasMore: true,//是否有更多数据
  40. incidentId: undefined,//事件ID
  41. summaryId: undefined,//汇总单ID
  42. incidentData: {},//事件对象
  43. keyWord: '',//搜索的关键词
  44. isNumber: false,//修改数量弹窗
  45. evtNumber: 1,//弹窗返回的数量
  46. selectData: {},//选择的对象
  47. selectType: {},//选择的对象类型
  48. })
  49. // 点击修改数量
  50. function numberClick(data, type){
  51. console.log(data)
  52. dataInfo.isNumber = true;
  53. dataInfo.selectData = {
  54. consumableBrandModel: data.brandModel,
  55. consumableEndPrice: data.endPrice,
  56. consumableId: data.id,
  57. consumableName: data.name,
  58. };
  59. dataInfo.selectType = type;
  60. }
  61. // 确认修改数量
  62. function conformNumber(evtNumber){
  63. dataInfo.evtNumber = evtNumber;
  64. dataInfo.isNumber = false;
  65. addSummaryDoc();
  66. }
  67. // 关闭修改数量
  68. function cancelNumber(){
  69. dataInfo.isNumber = false;
  70. }
  71. // 添加耗材
  72. function addSummaryDoc(){
  73. uni.showLoading({
  74. title: "加载中",
  75. mask: true,
  76. });
  77. let postData = {
  78. "consumableList": [
  79. {
  80. "consumablesId": dataInfo.selectData.id,
  81. "consumablesNum": dataInfo.evtNumber
  82. }
  83. ],
  84. "summaryId": dataInfo.summaryId
  85. };
  86. api_addSummaryDoc(postData).then(res => {
  87. uni.hideLoading();
  88. if(res.status == 200){
  89. uni.showToast({
  90. icon: 'none',
  91. title: '添加耗材成功',
  92. mask: true,
  93. });
  94. setTimeout(() => {
  95. uni.navigateTo({
  96. url: `/pages/handler/handler?incidentId=${dataInfo.incidentId}`,
  97. })
  98. }, 1500)
  99. }else{
  100. uni.showToast({
  101. icon: 'none',
  102. title: res.msg || '请求数据失败!'
  103. });
  104. }
  105. })
  106. }
  107. // 获取事件详情
  108. function getIncidentDetail(){
  109. uni.showLoading({
  110. title: "加载中",
  111. mask: true,
  112. });
  113. api_incidentDetail(dataInfo.incidentId).then(res => {
  114. uni.hideLoading();
  115. if(res.status == 200){
  116. dataInfo.incidentData = res.data || {};
  117. getList(0);
  118. }else{
  119. uni.showToast({
  120. icon: 'none',
  121. title: res.msg || '请求数据失败!'
  122. });
  123. }
  124. })
  125. }
  126. // 搜索
  127. const search = debounce(getList.bind(null, 0), 500);
  128. // 获取列表信息
  129. function getList(idx){
  130. if(dataInfo.keyWord.trim() === ''){
  131. dataInfo.list = [];
  132. uni.stopPullDownRefresh();
  133. return;
  134. }
  135. uni.showLoading({
  136. title: "加载中",
  137. mask: true,
  138. });
  139. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  140. if(dataInfo.idx === 0){
  141. dataInfo.list = [];
  142. }
  143. let postData = {
  144. idx: dataInfo.idx,
  145. sum: 20,
  146. consumable: {
  147. keyWord: dataInfo.keyWord,
  148. dutyDTO: dataInfo.incidentData.duty,
  149. showZero: true,
  150. }
  151. }
  152. api_consumable(postData).then(res => {
  153. uni.hideLoading();
  154. uni.stopPullDownRefresh();
  155. if(res.status == 200){
  156. let list = res.list || [];
  157. if(list.length){
  158. dataInfo.hasMore = true;
  159. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  160. }else{
  161. dataInfo.hasMore = false;
  162. }
  163. }else{
  164. uni.showToast({
  165. icon: 'none',
  166. title: res.msg || '请求数据失败!'
  167. });
  168. }
  169. })
  170. }
  171. onLoad((option) => {
  172. dataInfo.incidentId = option.incidentId;
  173. dataInfo.summaryId = option.summaryId;
  174. getIncidentDetail();
  175. })
  176. onPullDownRefresh(() => {
  177. getList(0)
  178. })
  179. onReachBottom(() => {
  180. dataInfo.idx += 1;
  181. if (dataInfo.hasMore) {
  182. getList(); // 当触底时加载更多数据
  183. }
  184. })
  185. </script>
  186. <style lang="scss" scoped>
  187. .consumableList{
  188. display: flex;
  189. flex-direction: column;
  190. justify-content: space-between;
  191. .head{
  192. height: 88rpx;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. padding: 0 24rpx;
  197. position: fixed;
  198. z-index: 99;
  199. width: 100%;
  200. box-sizing: border-box;
  201. background: linear-gradient( 90deg, #58CF66 0%, #DDE9FC 100%);
  202. }
  203. .body{
  204. margin-bottom: 140rpx;
  205. margin-top: 88rpx;
  206. font-size: 26rpx;
  207. .body_item{
  208. border-bottom: 1rpx solid #DEDEDE;
  209. padding: 24rpx;
  210. }
  211. }
  212. .zanwu{
  213. margin-bottom: 140rpx;
  214. margin-top: 88rpx;
  215. display: flex;
  216. justify-content: center;
  217. .newicon-zanwu{
  218. font-size: 256rpx;
  219. color: #D6D6D6;
  220. margin-top: 140rpx;
  221. }
  222. }
  223. .foot_common_btns{
  224. position: fixed;
  225. left: 0;
  226. bottom: 0;
  227. background-color: #fff;
  228. }
  229. }
  230. </style>