specimenList.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <template>
  2. <view class="specimenList">
  3. <!-- 头部筛选 -->
  4. <view class="orderList_header">
  5. <view class="orderList_header_item" @click="openPicker('speStatus')">
  6. <text class="orderList_header_itemText">{{selectedSpeState}}</text>
  7. <text class="pda pda-xiala"></text>
  8. </view>
  9. </view>
  10. <!-- 标本列表 -->
  11. <view class="orderDetail_infoItem_item business business_specimen">
  12. <view class="inspect_specimen">
  13. <uni-table stripe emptyText="暂无更多数据">
  14. <!-- 表头行 -->
  15. <uni-tr class="th">
  16. <uni-th align="center" width="68">标本类型</uni-th>
  17. <uni-th align="center" width="71">标本编码</uni-th>
  18. <uni-th align="center" width="66">状态</uni-th>
  19. <uni-th align="center" width="71">科室</uni-th>
  20. </uni-tr>
  21. <!-- 表格数据行 -->
  22. <block v-for="data in speList" :key="data.id">
  23. <uni-tr @click.native="toDetail(data.id,'specimen',data.scode)">
  24. <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
  25. <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
  26. <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
  27. <uni-td align="center" class="td" v-if="data.checkDept">
  28. {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
  29. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  30. </image>
  31. </uni-td>
  32. <uni-td align="center" class="td" v-else>
  33. 暂无
  34. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  35. </image>
  36. </uni-td>
  37. </uni-tr>
  38. </block>
  39. </uni-table>
  40. </view>
  41. </view>
  42. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  43. <seiminPicker ref="sPicker" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333" confirmFontSize="38rpx"
  44. confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker" @onConfirm="confirmPicker"
  45. :pickerList="pickerList">
  46. </seiminPicker>
  47. </view>
  48. </template>
  49. <script>
  50. import {
  51. mapState,
  52. } from "vuex";
  53. import {
  54. reqGetSpecimenWorkOrderDetails,
  55. } from "../../request/api.js";
  56. export default {
  57. data() {
  58. return {
  59. speList: [], //标本列表
  60. pickerList: [], //picker列表
  61. type: '', //打开picker的类型,急或普查
  62. // 当前筛选的急查或普查
  63. selectedSpeState: '',
  64. //急查或普查筛选列表
  65. speStates: [{
  66. value: 1,
  67. label: '急查'
  68. },
  69. {
  70. value: 0,
  71. label: '普查'
  72. },
  73. ],
  74. //底部按钮
  75. btns: [{
  76. name: "返回首页",
  77. type: "primary",
  78. click: () => {
  79. uni.navigateTo({
  80. url: "/pages/index/index",
  81. });
  82. },
  83. }],
  84. };
  85. },
  86. computed: {
  87. ...mapState("login", ["loginInfo"]),
  88. ...mapState("other", ["deptDisplay"]),
  89. },
  90. methods: {
  91. // 跳转详情
  92. toDetail(id, associationType, scode) {
  93. uni.navigateTo({
  94. url: `/pages/detail/detail?id=${id}&associationType=${associationType}&scode=${scode}`
  95. })
  96. },
  97. // 查询最新工单列表
  98. queryWorkOrdersRequest(idxPlus = false) {
  99. if (idxPlus) {
  100. //累加
  101. ++this.idx;
  102. } else {
  103. this.idx = 0;
  104. }
  105. console.log(this.speStates, this.selectedSpeState)
  106. let postData = {
  107. "deptId": this.loginInfo.user.dept.id,
  108. "urgent": Number(this.speStates.find(v => v.label == this.selectedSpeState).value)
  109. };
  110. return reqGetSpecimenWorkOrderDetails(postData);
  111. },
  112. // 查询最新工单列表
  113. queryWorkOrdersResponse(res, idxPlus = false) {
  114. if (res.status == 200) {
  115. let speList = res.data || [];
  116. console.log(speList, idxPlus)
  117. if (idxPlus) {
  118. //累加
  119. this.speList = this.speList.concat(speList);
  120. } else {
  121. this.speList = speList;
  122. }
  123. } else {
  124. this.$refs.seiminModel.show({
  125. skin: "toast",
  126. icon: "error",
  127. content: res.msg || "获取数据失败",
  128. });
  129. throw new Error(res.msg || '获取数据失败');
  130. }
  131. },
  132. // 查询最新列表(上拉)
  133. reachBottom() {
  134. //没有更多
  135. uni.showToast({
  136. icon: 'none',
  137. title: '没有更多标本了'
  138. })
  139. },
  140. // 获取页面数据
  141. init() {
  142. uni.showLoading({
  143. title: "加载中",
  144. mask: true,
  145. });
  146. Promise.all([
  147. this.queryWorkOrdersRequest(), //查询最新工单列表
  148. ]).then((values) => {
  149. uni.hideLoading();
  150. uni.stopPullDownRefresh();
  151. this.queryWorkOrdersResponse(values[0]);
  152. });
  153. },
  154. //关闭
  155. closePicker() {
  156. this.$refs.sPicker._close();
  157. },
  158. //打开
  159. openPicker(type) {
  160. this.type = type;
  161. this.$refs.sPicker._open();
  162. if (type === 'speStatus') {
  163. //标本是急查或普查
  164. this.pickerList = this.speStates;
  165. let index = this.pickerList.findIndex(v => v.label === this.selectedSpeState);
  166. let obj = this.pickerList.find(v => v.label === this.selectedSpeState);
  167. this.$refs.sPicker._changeValue(index);
  168. this.selectedSpeState = obj && obj.label;
  169. }
  170. },
  171. //确定:接收子组件传来的参数
  172. confirmPicker(checkedObj) {
  173. if (this.type === 'speStatus') {
  174. this.selectedSpeState = checkedObj.label;
  175. }
  176. let index = this.pickerList.findIndex(v => v.label === checkedObj.label);
  177. this.$refs.sPicker._changeValue(index);
  178. this.init();
  179. },
  180. },
  181. mounted() {
  182. this.init();
  183. },
  184. onLoad(querParams) {
  185. this.selectedSpeState = querParams.urgent == 1 ? '急查' : '普查';
  186. },
  187. onPullDownRefresh() {
  188. this.init();
  189. },
  190. onReachBottom() {
  191. this.reachBottom();
  192. },
  193. }
  194. </script>
  195. <style lang="scss" scoped>
  196. .specimenList {
  197. padding-bottom: 108rpx;
  198. // 头部筛选
  199. .orderList_header {
  200. height: 88rpx;
  201. background-color: #fff;
  202. position: fixed;
  203. left: 0;
  204. z-index: 99;
  205. width: 100%;
  206. @include border(bottom);
  207. @include flex(center, center);
  208. .orderList_header_item {
  209. flex: 1;
  210. height: 100%;
  211. padding: 0 50rpx;
  212. @include border(right);
  213. @include flex(space-between, center);
  214. &:last-of-type {
  215. border-right: none;
  216. }
  217. .orderList_header_itemText {
  218. color: #333;
  219. font-size: 38rpx;
  220. }
  221. }
  222. .pda-xiala {
  223. color: #DDE1E5;
  224. }
  225. }
  226. // 标本列表
  227. .orderDetail_infoItem_item {
  228. padding-top: 12rpx;
  229. padding-bottom: 12rpx;
  230. color: #333;
  231. font-size: 30rpx;
  232. flex: 1;
  233. @include border(bottom);
  234. @include flex(flex-start, stretch, column);
  235. // 业务信息-标本
  236. &.business_specimen {
  237. padding-top: 116rpx;
  238. font-size: 34rpx;
  239. .th {
  240. background-color: red;
  241. @include btn_background;
  242. th {
  243. color: #fff;
  244. }
  245. }
  246. .td {
  247. position: relative;
  248. .urgent {
  249. width: 60rpx;
  250. position: absolute !important;
  251. right: 0;
  252. top: 0;
  253. }
  254. }
  255. .table--border {
  256. border: none;
  257. }
  258. ::v-deep .uni-table {
  259. min-width: 0;
  260. }
  261. ::v-deep .uni-table-td {
  262. word-break: break-all;
  263. }
  264. }
  265. }
  266. }
  267. </style>