orderList.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <template>
  2. <view class="orderList">
  3. <!-- 头部筛选 -->
  4. <view class="orderList_header">
  5. <view class="orderList_header_item" @click="openPicker('gdState')">
  6. <text class="orderList_header_itemText">全部</text>
  7. <text class="pda pda-xiala"></text>
  8. </view>
  9. <view class="orderList_header_item">
  10. <text class="orderList_header_itemText" @click="openPicker('associationType')">全部</text>
  11. <text class="pda pda-xiala"></text>
  12. </view>
  13. </view>
  14. <!-- 列表 -->
  15. <view class="orderList_list">
  16. <view class="orderList_listItem" v-for="newOrder in newOrderList" :key="newOrder.id">
  17. <view class="orderList_listItem_header">
  18. <view class="orderList_listItem_header_title">
  19. <view class="associationType_icon" v-if="newOrder.isHalfInspect === 1"> 半 </view>
  20. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'specimen'">标
  21. </view>
  22. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'drugsBag'"> 药
  23. </view>
  24. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'specimenPlan'"> 巡
  25. </view>
  26. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'jPBag'"> 静 </view>
  27. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'inspect'"> 病
  28. </view>
  29. <view class="associationType_icon"
  30. v-else-if="newOrder.taskType.associationType.value == 'patientTransport'"> 病
  31. </view>
  32. <view class="associationType_icon" v-else-if="newOrder.taskType.associationType.value == 'other'"> 其
  33. </view>
  34. <view class="taskNameAndWorkerName">
  35. <text class="taskName">{{newOrder.isHalfInspect === 1? "半程陪检": newOrder.taskType.taskName}}</text>
  36. <text class="workerName"
  37. v-if="newOrder.patient &&(newOrder.taskType.associationType.value =='patientTransport' ||newOrder.taskType.associationType.value =='inspect')">-{{newOrder.patient.patientName}}</text>
  38. </view>
  39. </view>
  40. <text class="orderList_listItem_header_more"
  41. :class="newOrder.stateTextClass">{{newOrder.gdState.name }}</text>
  42. </view>
  43. <view class="orderList_listItem_item">
  44. <view class="orderList_listItem_item_content">
  45. <text class="orderList_listItem_item_name"
  46. v-if="newOrder.worker">{{newOrder.worker.name}}{{newOrder.worker.phone? "-" + newOrder.worker.phone: ""}}</text>
  47. <text class="orderList_listItem_item_name" v-else>暂未接单</text>
  48. <text class="orderList_listItem_item_time" v-if="newOrder.showCreateTime">{{newOrder.showCreateTime}}</text>
  49. <text class="orderList_listItem_item_time"
  50. v-else-if="newOrder.yyjdTime && newOrder.gdState.value == 11">{{newOrder.yyjdTime | formatDate('MM-dd HH:mm')}}</text>
  51. </view>
  52. <view class="orderList_listItem_item_btns">
  53. <button type="primary" class="btn">撤销</button>
  54. <button type="primary" class="btn">加急</button>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <seiminFooterNav></seiminFooterNav>
  60. <seiminModel ref="seiminModel"></seiminModel>
  61. <seiminPicker ref="sPicker" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333" confirmFontSize="38rpx"
  62. confirmFontWeight="500" itemFontSize="28rpx" @onClose="closePicker" @onConfirm="confirmPicker"
  63. :pickerList="pickerList">
  64. </seiminPicker>
  65. </view>
  66. </template>
  67. <script>
  68. import {
  69. mapState,
  70. mapActions
  71. } from "vuex";
  72. import {
  73. reqFetchDataList
  74. } from "../../request/api.js";
  75. import {
  76. GDSTATE
  77. } from "../../utils/enum.gdstate.js";
  78. export default {
  79. name: 'orderList',
  80. data() {
  81. return {
  82. gdStates: [{
  83. value: -1,
  84. label: '全部'
  85. },
  86. {
  87. value: 1,
  88. label: '执行中'
  89. },
  90. {
  91. value: 2,
  92. label: '待评价'
  93. },
  94. ], //工单状态筛选列表
  95. associationTypes: [], //关联类型筛选列表
  96. newOrderList: [], //工单列表
  97. totalNum: 0, //工单总数量
  98. idx: 0, //页码
  99. pageNum: 20, //每页的工单数量
  100. pickerList: [], //picker列表
  101. };
  102. },
  103. computed: {
  104. ...mapState("user", ["loginInfo"]),
  105. },
  106. methods: {
  107. ...mapActions("dictionary", ["vxDictionary"]),
  108. // 获取数据字典
  109. getDictionary(key) {
  110. let postData = {
  111. "type": "list",
  112. key
  113. };
  114. this.vxDictionary(postData).then(res => {
  115. console.log(res);
  116. })
  117. },
  118. //关闭
  119. closePicker() {
  120. this.$refs.sPicker._close();
  121. },
  122. //打开
  123. openPicker() {
  124. this.$refs.sPicker._open();
  125. },
  126. //确定:接收子组件传来的参数
  127. confirmPicker(checkedObj) {
  128. // this.changeSearchDeptParams({
  129. // backUrl: "/pages/index/index", //返回的url
  130. // type: "changeDept_index", //首页切换科室
  131. // hospital: checkedObj, //先选择院区
  132. // });
  133. // uni.navigateTo({
  134. // url: "/pages/searchDept/searchDept",
  135. // });
  136. },
  137. // 获取页面数据
  138. init() {
  139. uni.showLoading({
  140. title: "加载中",
  141. mask: true,
  142. });
  143. Promise.all([
  144. this.queryWorkOrdersRequest(), //查询最新工单列表
  145. ]).then((values) => {
  146. uni.hideLoading();
  147. uni.stopPullDownRefresh();
  148. this.queryWorkOrdersResponse(values[0]);
  149. });
  150. },
  151. // 查询最新工单列表(上拉)
  152. reachBottom() {
  153. //没有更多
  154. if (this.newOrderList.length == this.totalNum) {
  155. uni.showToast({
  156. icon: 'none',
  157. title: '没有更多工单了'
  158. })
  159. return;
  160. }
  161. uni.showLoading({
  162. title: "加载中",
  163. mask: true,
  164. });
  165. Promise.all([
  166. this.queryWorkOrdersRequest(true), //查询最新工单列表
  167. ]).then((values) => {
  168. uni.hideLoading();
  169. this.queryWorkOrdersResponse(values[0], true);
  170. });
  171. },
  172. // 查询最新工单列表
  173. queryWorkOrdersRequest(idxPlus = false) {
  174. if (idxPlus) {
  175. //累加
  176. ++this.idx;
  177. } else {
  178. this.idx = 0;
  179. }
  180. return reqFetchDataList("nurse", "workOrder", {
  181. workOrder: {
  182. createDept: this.loginInfo.user.dept.id,
  183. platform: 2,
  184. searchDays: 2,
  185. },
  186. idx: this.idx,
  187. sum: this.pageNum,
  188. });
  189. },
  190. // 查询最新工单列表
  191. queryWorkOrdersResponse(res, idxPlus = false) {
  192. if (res.status == 200) {
  193. res.list = res.list || [];
  194. this.totalNum = res.totalNum || 0;
  195. let newOrderList = res.list.map((v) => {
  196. if (v.gdState) {
  197. if (
  198. v.gdState.value == GDSTATE["待接单"] ||
  199. v.gdState.value == GDSTATE["待抢单"]
  200. ) {
  201. v.stateTextClass = "red";
  202. } else if (
  203. v.gdState.value == GDSTATE["待评价"] ||
  204. v.gdState.value == GDSTATE["已完成"]
  205. ) {
  206. v.stateTextClass = "green";
  207. } else {
  208. v.stateTextClass = "yellow";
  209. }
  210. }
  211. return v;
  212. });
  213. if (idxPlus) {
  214. //累加
  215. this.newOrderList = this.newOrderList.concat(newOrderList);
  216. } else {
  217. this.newOrderList = newOrderList;
  218. }
  219. } else {
  220. this.$refs.seiminModel.showChangeDept({
  221. skin: "toast",
  222. icon: "error",
  223. content: res.msg || "获取数据失败",
  224. });
  225. throw new Error(res.msg || '获取数据失败');
  226. }
  227. },
  228. },
  229. mounted() {
  230. this.getDictionary('association_types');
  231. this.init();
  232. },
  233. onPullDownRefresh() {
  234. this.init();
  235. },
  236. onReachBottom() {
  237. this.reachBottom();
  238. }
  239. }
  240. </script>
  241. <style lang="scss" scoped>
  242. .orderList {
  243. padding-top: 88rpx;
  244. padding-bottom: 108rpx;
  245. // 头部筛选
  246. .orderList_header {
  247. height: 88rpx;
  248. background-color: #fff;
  249. border-bottom: 1px solid #E5E9ED;
  250. position: fixed;
  251. top: 88rpx;
  252. left: 0;
  253. z-index: 99;
  254. width: 100%;
  255. @include flex(center, center);
  256. .orderList_header_item {
  257. flex: 1;
  258. height: 100%;
  259. padding: 0 50rpx;
  260. border-right: 1px solid #E5E9ED;
  261. @include flex(space-between, center);
  262. &:last-of-type {
  263. border-right: none;
  264. }
  265. .orderList_header_itemText {
  266. color: #333;
  267. font-size: 38rpx;
  268. }
  269. .pda-xiala {
  270. color: #DDE1E5;
  271. }
  272. }
  273. }
  274. // 列表
  275. .orderList_list {
  276. padding: 0 24rpx;
  277. .orderList_listItem {
  278. width: 702rpx;
  279. min-height: 320rpx;
  280. background-color: #fff;
  281. margin-top: 8rpx;
  282. border-radius: 8rpx;
  283. border: 2rpx solid #e5e9ed;
  284. position: relative;
  285. padding: 0 15rpx;
  286. font-size: 32rpx;
  287. @include semicircle(#f9fafb, 82rpx);
  288. @include flex(flex-start, stretch, column);
  289. .orderList_listItem_header {
  290. height: 86rpx;
  291. border-bottom: 1px dashed #e5e9ed;
  292. @include flex(space-between, center);
  293. .orderList_listItem_header_title {
  294. color: #333;
  295. flex: 1;
  296. @include flex(flex-start, center);
  297. .associationType_icon {
  298. width: 48rpx;
  299. height: 48rpx;
  300. border-radius: 50%;
  301. background-color: #F0F6ED;
  302. border: 1px solid #39b199;
  303. font-size: 24rpx;
  304. color: #39b199;
  305. margin-right: 8rpx;
  306. @include flex(center, center);
  307. }
  308. .taskNameAndWorkerName {
  309. flex: 1;
  310. @include flex;
  311. .taskName {
  312. max-width: 10em;
  313. @include clamp;
  314. }
  315. .workerName {
  316. flex: 1;
  317. @include clamp;
  318. }
  319. }
  320. }
  321. .orderList_listItem_header_more {
  322. color: #666;
  323. }
  324. }
  325. .orderList_listItem_item {
  326. height: 88rpx;
  327. border-bottom: 1px solid #e5e9ed;
  328. color: #333;
  329. font-size: 30rpx;
  330. flex: 1;
  331. @include flex(flex-start, stretch, column);
  332. &:last-of-type {
  333. border-bottom: none;
  334. }
  335. .orderList_listItem_item_content {
  336. min-height: 143rpx;
  337. flex: 1;
  338. @include flex(space-between, center);
  339. .orderList_listItem_item_name {
  340. font-size: 38rpx;
  341. font-weight: bold;
  342. }
  343. .orderList_listItem_item_time {
  344. color: #666;
  345. font-size: 28rpx;
  346. }
  347. }
  348. .orderList_listItem_item_btns {
  349. position: relative;
  350. left: -14rpx;
  351. width: 698rpx;
  352. height: 88rpx;
  353. @include btn_background;
  354. @include flex;
  355. .btn {
  356. flex: 1;
  357. background-color: transparent;
  358. border-right: 2rpx solid #fff;
  359. &:last-of-type {
  360. border-right: none;
  361. }
  362. &::after {
  363. border: none;
  364. }
  365. }
  366. }
  367. }
  368. }
  369. }
  370. }
  371. </style>