consumableList.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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. <template v-if="data.model">({{data.model}})</template>
  10. <template v-if="data.unit">({{data.unit}})</template>
  11. </view>
  12. </view>
  13. <view class="zanwu" v-else>
  14. <text class="newicon newicon-zanwu"></text>
  15. </view>
  16. <view class="foot_common_btns">
  17. <button @click="goBack" type="default" class="primaryButton btn">返回</button>
  18. </view>
  19. <NumberModal v-if="dataInfo.isNumber" @cancelEmit="cancelNumber" @confirmEmit="conformNumber" :selectData="dataInfo.selectData" :selectType="dataInfo.selectType"></NumberModal>
  20. </view>
  21. </template>
  22. <script setup>
  23. import { debounce, uniqBy } from 'lodash-es'
  24. import { ref, reactive} from 'vue'
  25. import NumberModal from '@/components/NumberModal.vue';
  26. import { onLoad, onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
  27. import { api_consumable, getFetchDataList, api_incidentDetail, api_addSummaryDoc, api_incidentCategoryConsumable } from "@/http/api.js"
  28. import { defaultColor } from '@/static/js/theme.js'
  29. import { useSetTitle } from '@/share/useSetTitle.js'
  30. import { useLoginUserStore } from '@/stores/loginUser'
  31. import { useGoBack } from '@/share/useGoBack.js'
  32. useSetTitle();
  33. const loginUserStore = useLoginUserStore();
  34. const { goBack } = useGoBack();
  35. // 主题颜色
  36. const primaryColor = ref(defaultColor)
  37. // 数据
  38. const dataInfo = reactive({
  39. list: [],//工单列表
  40. idx: 0,//页码
  41. hasMore: true,//是否有更多数据
  42. incidentId: undefined,//事件ID
  43. summaryId: undefined,//汇总单ID
  44. incidentData: {},//事件对象
  45. keyWord: '',//搜索的关键词
  46. isNumber: false,//修改数量弹窗
  47. evtNumber: 1,//弹窗返回的数量
  48. selectData: {},//选择的对象
  49. selectType: {},//选择的对象类型
  50. itsmZeroStock:null, //是否支持零库存
  51. itsmParentConsumable:null //是否支持父级科室耗材
  52. })
  53. // 点击修改数量
  54. function numberClick(data, type){
  55. console.log(data)
  56. dataInfo.isNumber = true;
  57. dataInfo.selectData = {
  58. consumableBrandModel: data.brandModel,
  59. consumableUnit: data.unit,
  60. consumableEndPrice: data.endPrice,
  61. consumableId: data.id,
  62. consumableName: data.name,
  63. };
  64. dataInfo.selectType = type;
  65. }
  66. // 确认修改数量
  67. function conformNumber(evtNumber){
  68. dataInfo.evtNumber = evtNumber;
  69. dataInfo.isNumber = false;
  70. addSummaryDoc();
  71. }
  72. // 关闭修改数量
  73. function cancelNumber(){
  74. dataInfo.isNumber = false;
  75. }
  76. // 添加耗材
  77. function addSummaryDoc(){
  78. uni.showLoading({
  79. title: "加载中",
  80. mask: true,
  81. });
  82. let postData = {
  83. "consumableList": [
  84. {
  85. "consumablesId": dataInfo.selectData.consumableId,
  86. "consumablesNum": dataInfo.evtNumber
  87. }
  88. ],
  89. "summaryId": dataInfo.summaryId
  90. };
  91. api_addSummaryDoc(postData).then(res => {
  92. uni.hideLoading();
  93. if(res.status == 200){
  94. uni.showToast({
  95. icon: 'none',
  96. title: '添加耗材成功',
  97. mask: true,
  98. });
  99. setTimeout(() => {
  100. uni.navigateTo({
  101. url: `/pages/handler/handler?incidentId=${dataInfo.incidentId}`,
  102. })
  103. }, 1500)
  104. }else{
  105. uni.showToast({
  106. icon: 'none',
  107. title: res.msg || '请求数据失败!'
  108. });
  109. }
  110. })
  111. }
  112. // 获取事件详情
  113. function getIncidentDetail(){
  114. uni.showLoading({
  115. title: "加载中",
  116. mask: true,
  117. });
  118. api_incidentDetail(dataInfo.incidentId).then(res => {
  119. uni.hideLoading();
  120. if(res.status == 200){
  121. dataInfo.incidentData = res.data || {};
  122. getHosConfig()
  123. }else{
  124. uni.showToast({
  125. icon: 'none',
  126. title: res.msg || '请求数据失败!'
  127. });
  128. }
  129. })
  130. }
  131. // 搜索
  132. const search = debounce(getList.bind(null, 0), 500);
  133. // 是否没有故障耗材配置
  134. const isFlag = ref(false);
  135. // 获取故障耗材配置
  136. async function getIncidentCategoryConsumable(){
  137. uni.showLoading({
  138. title: "加载中",
  139. mask: true,
  140. });
  141. let postData = {
  142. idx: 0,
  143. sum: 20,
  144. incidentCategoryConsumable: {
  145. duty: dataInfo.incidentData.duty.id,
  146. category: dataInfo.incidentData.category,
  147. }
  148. }
  149. let res = await api_incidentCategoryConsumable(postData);
  150. uni.hideLoading();
  151. uni.stopPullDownRefresh();
  152. if(res.status == 200){
  153. let list = res.list || [];
  154. if(list.length){
  155. isFlag.value = false;
  156. let arr = list.map(v => v.consumableDTOS).flat();
  157. dataInfo.list = uniqBy(arr, 'id');
  158. }else{
  159. isFlag.value = true;
  160. }
  161. }else{
  162. isFlag.value = false;
  163. uni.showToast({
  164. icon: 'none',
  165. title: res.msg || '请求数据失败!'
  166. });
  167. }
  168. }
  169. // 获取列表信息
  170. function getList(idx){
  171. // 判断是否满足故障耗材配置
  172. // await getIncidentCategoryConsumable();
  173. // if(!isFlag.value){
  174. // return;
  175. // }
  176. if(dataInfo.keyWord.trim() === ''){
  177. dataInfo.list = [];
  178. uni.stopPullDownRefresh();
  179. return;
  180. }
  181. uni.showLoading({
  182. title: "加载中",
  183. mask: true,
  184. });
  185. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  186. if(dataInfo.idx === 0){
  187. dataInfo.list = [];
  188. }
  189. let postData = {
  190. idx: dataInfo.idx,
  191. sum: 20,
  192. consumable: {
  193. name: dataInfo.keyWord,
  194. upHosId:loginUserStore.loginUser.user.currentHospital.id,
  195. hosId: loginUserStore.loginUser.user.currentHospital.id
  196. }
  197. }
  198. if(dataInfo.itsmParentConsumable.value==1){
  199. delete postData.consumable.hosId
  200. }else{
  201. delete postData.consumable.upHosId
  202. }
  203. getFetchDataList("simple/data", "consumable", postData)
  204. .then((res) => {
  205. uni.hideLoading();
  206. uni.stopPullDownRefresh();
  207. if(res.status == 200){
  208. let list = res.list || [];
  209. if(list.length){
  210. dataInfo.hasMore = true;
  211. if(dataInfo.itsmZeroStock.value==0){
  212. let arr = dataInfo.idx === 0 ? list : dataInfo.list.concat(list)
  213. dataInfo.list = arr.filter(i=>i.stock!=0)
  214. }else{
  215. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  216. }
  217. }else{
  218. dataInfo.hasMore = false;
  219. }
  220. }else{
  221. uni.showToast({
  222. icon: 'none',
  223. title: res.msg || '请求数据失败!'
  224. });
  225. }
  226. });
  227. }
  228. // 获取院区配置是否支持零库存/是否支持父级科室耗材
  229. function getHosConfig(){
  230. let postData = {
  231. idx: 0,
  232. sum: 9999,
  233. hospitalConfig:{
  234. hosId: loginUserStore.loginUser.user.currentHospital.id,
  235. model: "itsm"
  236. }
  237. };
  238. getFetchDataList("simple/data", "hospitalConfig", postData)
  239. .then((res) => {
  240. dataInfo.itsmZeroStock = res.list.find(i=>i.key=='itsmZeroStock')
  241. dataInfo.itsmParentConsumable = res.list.find(i=>i.key=='itsmParentConsumable')
  242. getList(0);
  243. });
  244. }
  245. onLoad((option) => {
  246. dataInfo.incidentId = option.incidentId;
  247. dataInfo.summaryId = option.summaryId;
  248. getIncidentDetail();
  249. })
  250. onPullDownRefresh(() => {
  251. getList(0)
  252. })
  253. onReachBottom(() => {
  254. dataInfo.idx += 1;
  255. if (dataInfo.hasMore) {
  256. getList(); // 当触底时加载更多数据
  257. }
  258. })
  259. </script>
  260. <style lang="scss" scoped>
  261. .consumableList{
  262. display: flex;
  263. flex-direction: column;
  264. justify-content: space-between;
  265. .head{
  266. height: 88rpx;
  267. display: flex;
  268. align-items: center;
  269. justify-content: center;
  270. padding: 0 24rpx;
  271. position: fixed;
  272. z-index: 99;
  273. width: 100%;
  274. box-sizing: border-box;
  275. background: linear-gradient( 90deg, #58CF66 0%, #DDE9FC 100%);
  276. }
  277. .body{
  278. margin-bottom: 140rpx;
  279. margin-top: 88rpx;
  280. font-size: 26rpx;
  281. .body_item{
  282. border-bottom: 1rpx solid #DEDEDE;
  283. padding: 24rpx;
  284. }
  285. }
  286. .zanwu{
  287. margin-bottom: 140rpx;
  288. margin-top: 88rpx;
  289. display: flex;
  290. justify-content: center;
  291. .newicon-zanwu{
  292. font-size: 256rpx;
  293. color: #D6D6D6;
  294. margin-top: 140rpx;
  295. }
  296. }
  297. .foot_common_btns{
  298. position: fixed;
  299. left: 0;
  300. bottom: 0;
  301. background-color: #fff;
  302. }
  303. }
  304. </style>