search.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. <template>
  2. <view class="search">
  3. <view class="search-box">
  4. <seiminSearch class="mSearch-input-box" :mode="2" button="inside" placeholder="请输入标本编码/检查单号/患者编码"
  5. @input="debounceInp" v-model="keyword" ref="search"></seiminSearch>
  6. </view>
  7. <view class="search-keyword">
  8. <!-- 患者 -->
  9. <view class="head" v-if="searchList.patientList.length">患者</view>
  10. <view class="orderList_listItem" v-for="search in searchList.patientList" :key="search.id"
  11. @click="toDetail(search,'patient')">
  12. <view class="orderList_listItem_header">
  13. <view class="orderList_listItem_header_title">
  14. <block v-if="search.illnessState">
  15. <view class="associationType_icon red" v-if="search.illnessState.value === '2'">危</view>
  16. <view class="associationType_icon red" v-else-if="search.illnessState.value === '3'">重</view>
  17. </block>
  18. <block v-if="search.careLevel">
  19. <view class="associationType_icon red" v-if="search.careLevel.value === '0'">特</view>
  20. <view class="associationType_icon red" v-else-if="search.careLevel.value === '1'">1</view>
  21. <view class="associationType_icon green" v-else-if="search.careLevel.value === '2'">2</view>
  22. <view class="associationType_icon green" v-else-if="search.careLevel.value === '3'">3</view>
  23. </block>
  24. <view class="taskNameAndWorkerName">
  25. <text class="workerName">{{search.patientName || '暂无'}}</text>
  26. </view>
  27. </view>
  28. <text class="orderList_listItem_header_more">{{search.bedNum }}床</text>
  29. </view>
  30. <view class="orderList_listItem_item">
  31. <view class="orderList_listItem_item_content">
  32. <text class="orderList_listItem_item_name">{{search.residenceNo || '暂无'}}</text>
  33. <text class="orderList_listItem_item_time">待检{{search.watingCount}}</text>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- 标本 -->
  38. <view class="head" v-if="searchList.specimenList.length">标本</view>
  39. <view class="orderList_listItem" v-for="search in searchList.specimenList" :key="search.id"
  40. @click="toDetail(search,'specimen')">
  41. <view class="orderList_listItem_header">
  42. <view class="orderList_listItem_header_title">
  43. <view class="taskNameAndWorkerName">
  44. <text class="workerName">{{search.specimenDesc || '暂无'}}</text>
  45. </view>
  46. </view>
  47. <text class="orderList_listItem_header_more">{{search.scode || '暂无' }}</text>
  48. </view>
  49. <view class="orderList_listItem_item">
  50. <view class="orderList_listItem_item_content">
  51. <text class="orderList_listItem_item_name">{{search.patientName || '暂无'}}
  52. <block v-if="search.bedNum">({{search.bedNum}}床)</block>
  53. </text>
  54. <text class="orderList_listItem_item_time">{{search.speState?search.speState.name:'暂无'}}</text>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 检查 -->
  59. <view class="head" v-if="searchList.inspectList.length">检查</view>
  60. <view class="orderList_listItem" v-for="search in searchList.inspectList" :key="search.id"
  61. @click="toDetail(search,'inspect')">
  62. <view class="orderList_listItem_header">
  63. <view class="orderList_listItem_header_title">
  64. <view class="taskNameAndWorkerName">
  65. <text class="workerName">{{search.inspectName || '暂无'}}</text>
  66. </view>
  67. </view>
  68. <text class="orderList_listItem_header_more">{{search.bedNum }}床</text>
  69. </view>
  70. <view class="orderList_listItem_item">
  71. <view class="orderList_listItem_item_content no">
  72. <view class="no_item">
  73. <text class="orderList_listItem_item_name">{{search.inspectCode || '暂无'}}</text>
  74. <text class="orderList_listItem_item_time"></text>
  75. </view>
  76. <view class="no_item">
  77. <text class="orderList_listItem_item_name">{{search.patientName || '暂无'}}
  78. <block v-if="search.bedNum">({{search.bedNum}}床)</block>
  79. </text>
  80. <text class="orderList_listItem_item_time">{{search.yyTime||'暂无'}}</text>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  87. <seiminModel ref="seiminModel"></seiminModel>
  88. </view>
  89. </template>
  90. <script>
  91. import {
  92. backPress,
  93. getCurrentPagesSeiminAll
  94. } from '../../utils/index.js';
  95. import {
  96. debounce
  97. } from 'lodash/function';
  98. import {
  99. reqSmartScan,
  100. } from "../../request/api.js";
  101. import {
  102. mapState,
  103. mapMutations,
  104. } from "vuex";
  105. import {
  106. ASSOCIATION_TYPES
  107. } from '../../utils/enum.association_types.js';
  108. export default {
  109. onBackPress() {
  110. backPress();
  111. },
  112. watch: {
  113. reFresh() {
  114. uni.redirectTo({
  115. url: `${getCurrentPagesSeiminAll()}`,
  116. })
  117. }
  118. },
  119. data() {
  120. return {
  121. reFresh: '',
  122. queryParams: {}, //路由参数
  123. ASSOCIATION_TYPES,
  124. checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
  125. selectedPatient: {}, //当前选中的患者
  126. taskTypeListResource: [], //任务类型列表(请求的原始数据)
  127. taskTypeList: [], //任务类型列表
  128. pickerTitle: "", //一键建单picker的title
  129. debounceInp: null,
  130. keyword: "",
  131. searchList: {
  132. patientList: [],
  133. specimenList: [],
  134. inspectList: [],
  135. },
  136. //底部按钮
  137. btns: [{
  138. name: "返回首页",
  139. type: "default",
  140. click: () => {
  141. uni.navigateTo({
  142. url: '/pages/index/index'
  143. })
  144. },
  145. }],
  146. };
  147. },
  148. computed: {
  149. ...mapState("login", ["loginInfo"]),
  150. ...mapState('other', ["deptDisplay"]),
  151. },
  152. methods: {
  153. ...mapMutations('other', ['changeQucikCreateOrderType', 'clearPatientBuildData', 'changePatientBuildData']),
  154. // 跳转患者详情
  155. toDetail(search, type) {
  156. switch (type) {
  157. case 'patient':
  158. uni.navigateTo({
  159. url: `/pages/patientDetail/patientDetail?patientCode=${search.patientCode}&patientName=${search.patientName}`
  160. })
  161. break;
  162. case 'specimen':
  163. uni.navigateTo({
  164. url: `/pages/detail/detail?id=${search.id}&associationType=specimen&scode=${search.scode}`
  165. })
  166. break;
  167. case 'inspect':
  168. uni.navigateTo({
  169. url: `/pages/detail/detail?id=${search.id}&associationType=inspect`
  170. })
  171. break;
  172. }
  173. },
  174. //监听输入
  175. inputChange(event = '') {
  176. let keyWord = event.detail ? event.detail.value : event;
  177. // 长度小于等于0,返回空数组
  178. // 长度小于等于4,只搜索床号
  179. // 长度大于4,搜索患者住院号,患者二维码,标本码,检查单号
  180. if (!keyWord.length) {
  181. this.searchList = {
  182. patientList: [],
  183. specimenList: [],
  184. inspectList: [],
  185. }
  186. return;
  187. }
  188. let postData = {
  189. deptId: this.loginInfo.user.dept.id,
  190. code: keyWord
  191. };
  192. uni.showLoading({
  193. title: "加载中",
  194. });
  195. reqSmartScan(postData).then((res) => {
  196. uni.hideLoading();
  197. uni.stopPullDownRefresh();
  198. if (res.state == 200) {
  199. Object.assign(this.searchList, res.data);
  200. console.log(this.searchList)
  201. } else {
  202. this.$refs.seiminModel.show({
  203. skin: "toast",
  204. icon: "error",
  205. content: res.msg || "获取数据失败",
  206. });
  207. throw new Error(res.msg || "获取数据失败");
  208. }
  209. });
  210. },
  211. },
  212. onReachBottom() {
  213. this.reachBottom();
  214. },
  215. onPullDownRefresh() {
  216. this.inputChange(this.keyword)
  217. },
  218. created() {
  219. this.debounceInp = debounce(this.inputChange, 500);
  220. },
  221. beforeDestroy() {
  222. this.debounceInp.cancel()
  223. },
  224. onLoad(queryParams) {
  225. this.queryParams = queryParams;
  226. this.keyword = queryParams.txt;
  227. this.inputChange(queryParams.txt);
  228. },
  229. mounted() {
  230. this.$refs.search.inputVal = this.queryParams.txt;
  231. }
  232. };
  233. </script>
  234. <style lang="scss" scoped>
  235. .search {
  236. padding-bottom: 108rpx;
  237. .search-box {
  238. background-color: rgb(242, 242, 242);
  239. padding: 15rpx 2.5%;
  240. position: fixed;
  241. z-index: 99;
  242. width: 100%;
  243. @include flex(space-between);
  244. .mSearch-input-box {
  245. width: 100%;
  246. }
  247. .input-box {
  248. width: 85%;
  249. flex-shrink: 1;
  250. @include flex(center, center);
  251. &>input {
  252. width: 100%;
  253. height: 60rpx;
  254. font-size: 32rpx;
  255. border: 0;
  256. border-radius: 60rpx;
  257. appearance: none;
  258. padding: 0 3%;
  259. margin: 0;
  260. background-color: #ffffff;
  261. }
  262. }
  263. .search-btn {
  264. width: 15%;
  265. margin: 0 0 0 2%;
  266. flex-shrink: 0;
  267. font-size: 28rpx;
  268. color: #fff;
  269. background: linear-gradient(to right, #ff9801, #ff570a);
  270. border-radius: 60rpx;
  271. @include flex(center, center);
  272. }
  273. }
  274. .search-keyword {
  275. padding: 88rpx 24rpx 0;
  276. .head {
  277. font-weight: bold;
  278. }
  279. // 列表项
  280. .orderList_listItem {
  281. width: 702rpx;
  282. min-height: 232rpx;
  283. background-color: #fff;
  284. position: relative;
  285. margin-top: 8rpx;
  286. border-radius: 8rpx;
  287. padding: 0 24rpx;
  288. font-size: 32rpx;
  289. @include border;
  290. @include semicircle(#F9FAFB, 82rpx);
  291. @include flex(flex-start, stretch, column);
  292. .orderList_listItem_header {
  293. height: 86rpx;
  294. @include border($directive:bottom, $style:dashed);
  295. @include flex(space-between, center);
  296. .orderList_listItem_header_title {
  297. color: #333;
  298. flex: 1;
  299. @include flex(flex-start, center);
  300. .associationType_icon {
  301. width: 48rpx;
  302. height: 48rpx;
  303. border-radius: 50%;
  304. font-size: 24rpx;
  305. margin-right: 8rpx;
  306. @include border($color:#39b199);
  307. @include flex(center, center);
  308. &.green {
  309. color: $defaultColor;
  310. border: 1px solid $defaultColor;
  311. background-color: rgba(73, 184, 86, 0.1);
  312. }
  313. &.red {
  314. color: #FF3B53;
  315. border: 1px solid #FF3B53;
  316. background-color: #FFE8EB;
  317. }
  318. }
  319. .taskNameAndWorkerName {
  320. flex: 1;
  321. @include flex;
  322. .taskName {
  323. max-width: 10em;
  324. @include clamp;
  325. }
  326. .workerName {
  327. flex: 1;
  328. @include clamp;
  329. }
  330. }
  331. }
  332. .orderList_listItem_header_more {
  333. color: #333;
  334. font-weight: bold;
  335. @include clamp;
  336. }
  337. }
  338. .orderList_listItem_item {
  339. height: 88rpx;
  340. color: #333;
  341. font-size: 30rpx;
  342. flex: 1;
  343. @include border(bottom);
  344. @include flex(flex-start, stretch, column);
  345. &:last-of-type {
  346. border-bottom: none;
  347. }
  348. .orderList_listItem_item_content {
  349. min-height: 143rpx;
  350. flex: 1;
  351. @include flex(space-between, center);
  352. &.no {
  353. @include flex($flexDirection: column);
  354. .no_item {
  355. flex: 1;
  356. @include flex(space-between, center);
  357. }
  358. }
  359. .orderList_listItem_item_name {
  360. font-size: 34rpx;
  361. }
  362. .orderList_listItem_item_time {
  363. color: #333;
  364. font-size: 34rpx;
  365. font-weight: bold;
  366. }
  367. }
  368. }
  369. }
  370. }
  371. }
  372. </style>