search.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. <template>
  2. <view class="content">
  3. <view class="search-box">
  4. <!-- mSearch组件 如果使用原样式,删除组件元素-->
  5. <mSearch class="mSearch-input-box" :mode="2" button="inside" :placeholder="defaultKeyword"
  6. @search="doSearch(false)" @input="changeInp" @confirm="doSearch(false)" v-model="keyword"></mSearch>
  7. </view>
  8. <view class="search-keyword">
  9. <scroll-view class="keyword-list-box" v-show="isShowKeywordList" scroll-y>
  10. <block v-for="(row, index) in keywordList" :key="index">
  11. <view class="keyword-entry" hover-class="keyword-entry-tap">
  12. <view class="keyword-text" @tap.stop="doSearch(keywordList[index].keyword)">
  13. <rich-text :nodes="row.htmlStr"></rich-text>
  14. </view>
  15. <view class="keyword-img" @tap.stop="doSearch(keywordList[index].keyword)">
  16. <image src="/static/HM-search/back.png"></image>
  17. </view>
  18. </view>
  19. </block>
  20. </scroll-view>
  21. <scroll-view class="keyword-box" v-show="!isShowKeywordList" scroll-y>
  22. <view class="keyword-block" v-if="oldKeywordList.length > 0">
  23. <view class="keyword-list-header">
  24. <view>历史搜索</view>
  25. <view>
  26. <image @tap="oldDelete" src="/static/HM-search/delete.png"></image>
  27. </view>
  28. </view>
  29. <view class="keyword">
  30. <view v-for="(keyword, index) in oldKeywordList" @tap="changeInp(keyword)" :key="index">{{ keyword }}
  31. </view>
  32. </view>
  33. </view>
  34. </scroll-view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. //引用mSearch组件,如不需要删除即可
  40. import mSearch from "@/components/mehaotian-search-revision/mehaotian-search-revision.vue";
  41. import {
  42. post,
  43. webHandle
  44. } from "../../http/http.js";
  45. export default {
  46. data() {
  47. return {
  48. type: "", //进入该页面的类型
  49. configName: "", //快速组合名称
  50. id: "", //快速组合id
  51. changedept: 0, //是否从列表过来的切换负责科室
  52. hosId: "",
  53. defaultKeyword: "",
  54. keyword: "",
  55. oldKeywordList: [],
  56. keywordList: [],
  57. isShowKeywordList: false,
  58. deptList: [],
  59. //送回病房扫码 start
  60. code: '',
  61. infoDATA: '',
  62. patientOrders: '',
  63. workData: '',
  64. //送回病房扫码 end
  65. //送回病房-患者列表 start
  66. cid: '',
  67. cdept: '',
  68. currentItem: '',
  69. scrollYY: '',
  70. //送回病房-患者列表 end
  71. // 设置科室二维码 start
  72. uniName: '',
  73. queryDept: '',
  74. queryDeptId: '',
  75. qrCode: '',
  76. // 设置科室二维码 end
  77. // 选择血制品送达科室 start
  78. bloodDTO: {},
  79. // 选择血制品送达科室 end
  80. timer: null, //定时器
  81. searchText: '', //搜索文本
  82. searchData: [], //搜索结果
  83. //系统设置的科室类型
  84. sysDeptType: 0,
  85. };
  86. },
  87. onUnload() {
  88. if (this.timer) {
  89. clearTimeout(this.timer);
  90. this.timer = null;
  91. }
  92. },
  93. onLoad(options) {
  94. console.log(options, 'options');
  95. this.type = options.type;
  96. if (this.type == "setDept") {
  97. this.configName = options.configName;
  98. this.id = options.id;
  99. this.changedept = options.changedept;
  100. this.getSysDeptType();
  101. } else if (this.type == "sendBack") {
  102. this.code = options.code;
  103. this.infoDATA = options.infoDATA;
  104. this.patientOrders = options.patientOrders;
  105. this.workData = options.workData;
  106. this.sysDeptType = -1;
  107. } else if (this.type == "sendBackPatientList") {
  108. this.cid = options.cid;
  109. this.cdept = options.cdept;
  110. this.currentItem = options.currentItem;
  111. this.scrollYY = options.scrollYY;
  112. this.sysDeptType = -1;
  113. } else if (this.type == "settingCode") { //设置科室二维码
  114. this.uniName = options.uniName;
  115. this.queryDept = options.queryDept;
  116. this.queryDeptId = options.queryDeptId;
  117. this.qrCode = options.qrCode;
  118. this.sysDeptType = -1;
  119. } else if (this.type == "pharmacy") { //药房切换科室
  120. this.sysDeptType = 386;
  121. } else if (this.type == "bloodSelect") { //选择血制品送达科室
  122. this.bloodDTO = JSON.parse(options.bloodDTO);
  123. } else {
  124. this.getSysDeptType();
  125. }
  126. this.init();
  127. // #ifdef APP-PLUS
  128. webHandle("no", "app");
  129. // #endif
  130. // #ifdef H5
  131. webHandle("no", "wx");
  132. // #endif
  133. },
  134. components: {
  135. //引用mSearch组件,如不需要删除即可
  136. mSearch,
  137. },
  138. methods: {
  139. init() {
  140. this.hosId = uni.getStorageSync("userData").user.currentHospital.id;
  141. this.loadDefaultKeyword();
  142. this.loadOldKeyword();
  143. },
  144. blur() {
  145. uni.hideKeyboard();
  146. },
  147. //加载默认搜索关键字
  148. loadDefaultKeyword() {
  149. //定义默认搜索关键字,可以自己实现ajax请求数据再赋值,用户未输入时,以水印方式显示在输入框,直接不输入内容搜索会搜索默认关键字
  150. this.defaultKeyword = "请输入科室名称";
  151. },
  152. //加载历史搜索,自动读取本地Storage
  153. loadOldKeyword() {
  154. uni.getStorage({
  155. key: "OldKeys",
  156. success: (res) => {
  157. var OldKeys = JSON.parse(res.data);
  158. this.oldKeywordList = OldKeys;
  159. },
  160. });
  161. },
  162. //防抖搜索
  163. changeInp(event) {
  164. this.searchText = event;
  165. clearTimeout(this.timer);
  166. this.timer = setTimeout(() => {
  167. this.inputChange(event);
  168. }, 500)
  169. },
  170. //获取系统设置的科室类型baba sysDeptType
  171. getSysDeptType() {
  172. let postData = {
  173. "idx": 0,
  174. "sum": 1,
  175. systemConfiguration: {
  176. keyconfig: "busiViewDeptId"
  177. }
  178. }
  179. post("/simple/data/fetchDataList/systemConfiguration", postData).then((res) => {
  180. if (res.status == 200) {
  181. this.sysDeptType = res.list[0].valueconfig
  182. }
  183. })
  184. },
  185. //监听输入
  186. inputChange(event) {
  187. //兼容引入组件时传入参数情况
  188. var keyword = event.detail ? event.detail.value : event;
  189. if (!keyword) {
  190. this.keywordList = [];
  191. this.isShowKeywordList = false;
  192. return;
  193. }
  194. this.keyword = keyword;
  195. this.isShowKeywordList = true;
  196. let postData = {
  197. idx: 0,
  198. sum: 20,
  199. department: {
  200. hospital: {
  201. id: this.hosId,
  202. },
  203. dept: keyword,
  204. },
  205. };
  206. //不是送回病房
  207. if (this.type != "sendBack" && this.type != "sendBackPatientList" && this.type != "settingCode" && this.type != "bloodSelect") {
  208. if (this.sysDeptType === 0) {
  209. return;
  210. } else {
  211. postData.department.type = {
  212. id: this.sysDeptType
  213. }
  214. }
  215. }
  216. uni.showLoading({
  217. title: "加载中",
  218. });
  219. post("/data/fetchDataList/department", postData).then((res) => {
  220. if (res.status == 200) {
  221. this.searchData.push({
  222. name: keyword,
  223. list: res.list
  224. });
  225. let searchText = this.searchText.detail ? this.searchText.detail.value : this.searchText;
  226. let index = this.searchData.findIndex(item => item.name === searchText);
  227. this.deptList = index >= 0 ? this.searchData[index].list : [];
  228. this.keywordList = this.drawCorrelativeKeyword(this.deptList, keyword);
  229. uni.hideLoading();
  230. } else {
  231. uni.hideLoading();
  232. uni.showToast({
  233. icon: "none",
  234. title: "请求失败!",
  235. });
  236. }
  237. });
  238. },
  239. //高亮关键字
  240. drawCorrelativeKeyword(keywords, keyword) {
  241. var len = keywords.length,
  242. keywordArr = [];
  243. for (var i = 0; i < len; i++) {
  244. var row = keywords[i];
  245. //定义高亮#9f9f9f
  246. var html = row.dept.replace(
  247. keyword,
  248. "<span style='color: #9f9f9f;'>" + keyword + "</span>"
  249. );
  250. html = "<div>" + html + "</div>";
  251. var tmpObj = {
  252. keyword: row.dept,
  253. htmlStr: html,
  254. };
  255. keywordArr.push(tmpObj);
  256. }
  257. return keywordArr;
  258. },
  259. //清除历史搜索
  260. oldDelete() {
  261. uni.showModal({
  262. content: "确定清除历史搜索记录?",
  263. success: (res) => {
  264. if (res.confirm) {
  265. console.log("用户点击确定");
  266. this.oldKeywordList = [];
  267. uni.removeStorage({
  268. key: "OldKeys",
  269. });
  270. } else if (res.cancel) {
  271. console.log("用户点击取消");
  272. }
  273. },
  274. });
  275. },
  276. // 建单并签到-指定科室
  277. buildOrderAndSign(deptDto) {
  278. uni.showModal({
  279. title: "提示",
  280. content: `您当前选择的科室为【${deptDto.dept}】,请确认是否建单并签到?`,
  281. success: (result) => {
  282. if (result.confirm) {
  283. console.log("用户点击确定");
  284. let postData = {
  285. type: 'blood',
  286. id: this.bloodDTO.id,
  287. applyDept: deptDto.id,
  288. };
  289. uni.showLoading({
  290. title: "加载中",
  291. mask: true,
  292. });
  293. post("/transflow/createOrTakeOrder", postData).then((ress) => {
  294. uni.hideLoading();
  295. if (ress.state == 200) {
  296. uni.navigateTo({
  297. url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
  298. });
  299. } else {
  300. uni.showToast({
  301. icon: "none",
  302. title: "请求失败!",
  303. });
  304. }
  305. });
  306. } else if (result.cancel) {
  307. console.log("用户点击取消");
  308. }
  309. },
  310. });
  311. },
  312. //执行搜索
  313. doSearch(keyword) {
  314. keyword = keyword === false ? this.keyword : keyword;
  315. this.keyword = keyword;
  316. this.saveKeyword(keyword); //保存为历史
  317. let arr = this.deptList.filter((item) => item.dept === keyword);
  318. if (arr.length) {
  319. let msg = "";
  320. if (this.type == "patientInformationList" || this.type == "inspectList" || this.type == "pharmacy") {
  321. msg = "切换科室成功";
  322. uni.showToast({
  323. title: msg,
  324. icon: "none",
  325. duration: 2000,
  326. });
  327. } else if (this.type == "setDept") {
  328. msg = "添加科室成功";
  329. uni.showToast({
  330. title: msg,
  331. icon: "none",
  332. duration: 2000,
  333. });
  334. }
  335. if (this.type == "patientInformationList") {
  336. //患者列表进入
  337. uni.setStorageSync("patientCurrentDept", arr[0]); //科室切换存本地
  338. uni.navigateTo({
  339. url: `../patientInformationList/patientInformationList?id=${arr[0].id}&dept=${arr[0].dept}`,
  340. });
  341. } else if (this.type == "inspectList") {
  342. //患者列表进入
  343. uni.setStorageSync("patientCurrentDept", arr[0]); //科室切换存本地
  344. uni.navigateTo({
  345. url: `../inspectList/inspectList?id=${arr[0].id}&dept=${arr[0].dept}`,
  346. });
  347. } else if (this.type == "bloodSelect") {
  348. //血制品建单进入
  349. this.buildOrderAndSign(arr[0]);
  350. } else if (this.type == "pharmacy") {
  351. //药房进入
  352. uni.navigateTo({
  353. url: `../pharmacy/pharmacy?id=${arr[0].id}&dept=${arr[0].dept}`,
  354. });
  355. } else if (this.type == "setDept") {
  356. //上班添加科室进入
  357. let obj = uni.getStorageSync("setDepts");
  358. console.log(arr,obj)
  359. if (obj) {
  360. let i = obj.findIndex((item) => item.id == arr[0].id);
  361. if (i < 0) {
  362. uni.setStorageSync("setDepts", [arr[0], ...obj]);
  363. }
  364. } else {
  365. uni.setStorageSync("setDepts", [arr[0]]);
  366. }
  367. uni.navigateTo({
  368. url: `../setDept/setDept?configName=${this.configName}&id=${this.id}&changedept=${this.changedept}`,
  369. });
  370. } else if (this.type == "sendBack") {
  371. uni.navigateTo({
  372. url: `../scanning_ins/scanning_ins?id=${arr[0].id}&dept=${arr[0].dept}&code=${this.code}&infoDATA=${this.infoDATA}&patientOrders=${this.patientOrders}&workData=${this.workData}`,
  373. });
  374. } else if (this.type == "sendBackPatientList") {
  375. uni.navigateTo({
  376. url: `../patientInformationList/patientInformationList?did=${arr[0].id}&ddept=${arr[0].dept}&currentItem=${this.currentItem}&id=${this.cid}&dept=${this.cdept}&scrollYY=${this.scrollYY}`,
  377. });
  378. } else if (this.type == "settingCode") {
  379. if (this.queryDept) { //替换
  380. uni.navigateTo({
  381. url: `../settingCode/settingCode?targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&queryDept=${this.queryDept}&queryDeptId=${this.queryDeptId}&qrCode=${this.qrCode}`,
  382. });
  383. } else { //设置
  384. uni.navigateTo({
  385. url: `../settingCode/settingCode?targetId=${arr[0].id}&targetDept=${arr[0].dept}&uniName=${this.uniName}&qrCode=${this.qrCode}`,
  386. });
  387. }
  388. }
  389. }
  390. },
  391. //保存关键字到历史记录
  392. saveKeyword(keyword) {
  393. uni.getStorage({
  394. key: "OldKeys",
  395. success: (res) => {
  396. var OldKeys = JSON.parse(res.data);
  397. var findIndex = OldKeys.indexOf(keyword);
  398. if (findIndex == -1) {
  399. OldKeys.unshift(keyword);
  400. } else {
  401. OldKeys.splice(findIndex, 1);
  402. OldKeys.unshift(keyword);
  403. }
  404. //最多10个纪录
  405. OldKeys.length > 10 && OldKeys.pop();
  406. uni.setStorage({
  407. key: "OldKeys",
  408. data: JSON.stringify(OldKeys),
  409. });
  410. this.oldKeywordList = OldKeys; //更新历史搜索
  411. },
  412. fail: (e) => {
  413. var OldKeys = [keyword];
  414. uni.setStorage({
  415. key: "OldKeys",
  416. data: JSON.stringify(OldKeys),
  417. });
  418. this.oldKeywordList = OldKeys; //更新历史搜索
  419. },
  420. });
  421. },
  422. },
  423. };
  424. </script>
  425. <style>
  426. view {
  427. display: block;
  428. }
  429. .search-box {
  430. width: 95%;
  431. background-color: rgb(242, 242, 242);
  432. padding: 15upx 2.5%;
  433. display: flex;
  434. justify-content: space-between;
  435. position: sticky;
  436. top: 0;
  437. }
  438. .search-box .mSearch-input-box {
  439. width: 100%;
  440. }
  441. .search-box .input-box {
  442. width: 85%;
  443. flex-shrink: 1;
  444. display: flex;
  445. justify-content: center;
  446. align-items: center;
  447. }
  448. .search-box .search-btn {
  449. width: 15%;
  450. margin: 0 0 0 2%;
  451. display: flex;
  452. justify-content: center;
  453. align-items: center;
  454. flex-shrink: 0;
  455. font-size: 28upx;
  456. color: #fff;
  457. background: linear-gradient(to right, #ff9801, #ff570a);
  458. border-radius: 60upx;
  459. }
  460. .search-box .input-box>input {
  461. width: 100%;
  462. height: 60upx;
  463. font-size: 32upx;
  464. border: 0;
  465. border-radius: 60upx;
  466. -webkit-appearance: none;
  467. -moz-appearance: none;
  468. appearance: none;
  469. padding: 0 3%;
  470. margin: 0;
  471. background-color: #ffffff;
  472. }
  473. .placeholder-class {
  474. color: #9e9e9e;
  475. }
  476. .search-keyword {
  477. width: 100%;
  478. background-color: rgb(242, 242, 242);
  479. }
  480. .keyword-list-box {
  481. height: calc(100vh - 110upx);
  482. padding-top: 10upx;
  483. border-radius: 20upx 20upx 0 0;
  484. background-color: #fff;
  485. }
  486. .keyword-entry-tap {
  487. background-color: #eee;
  488. }
  489. .keyword-entry {
  490. width: 94%;
  491. height: 80upx;
  492. margin: 0 3%;
  493. font-size: 30upx;
  494. color: #333;
  495. display: flex;
  496. justify-content: space-between;
  497. align-items: center;
  498. border-bottom: solid 1upx #e7e7e7;
  499. }
  500. .keyword-entry image {
  501. width: 60upx;
  502. height: 60upx;
  503. }
  504. .keyword-entry .keyword-text,
  505. .keyword-entry .keyword-img {
  506. height: 80upx;
  507. display: flex;
  508. align-items: center;
  509. }
  510. .keyword-entry .keyword-text {
  511. width: 90%;
  512. }
  513. .keyword-entry .keyword-img {
  514. width: 10%;
  515. justify-content: center;
  516. }
  517. .keyword-box {
  518. height: calc(100vh - 110upx);
  519. border-radius: 20upx 20upx 0 0;
  520. background-color: #fff;
  521. }
  522. .keyword-box .keyword-block {
  523. padding: 10upx 0;
  524. }
  525. .keyword-box .keyword-block .keyword-list-header {
  526. width: 94%;
  527. padding: 10upx 3%;
  528. font-size: 27upx;
  529. color: #333;
  530. display: flex;
  531. justify-content: space-between;
  532. }
  533. .keyword-box .keyword-block .keyword-list-header image {
  534. width: 40upx;
  535. height: 40upx;
  536. }
  537. .keyword-box .keyword-block .keyword {
  538. width: 94%;
  539. padding: 3px 3%;
  540. display: flex;
  541. flex-flow: wrap;
  542. justify-content: flex-start;
  543. }
  544. .keyword-box .keyword-block .hide-hot-tis {
  545. display: flex;
  546. justify-content: center;
  547. font-size: 28upx;
  548. color: #6b6b6b;
  549. }
  550. .keyword-box .keyword-block .keyword>view {
  551. display: flex;
  552. justify-content: center;
  553. align-items: center;
  554. border-radius: 60upx;
  555. padding: 0 20upx;
  556. margin: 10upx 20upx 10upx 0;
  557. height: 60upx;
  558. font-size: 28upx;
  559. background-color: rgb(242, 242, 242);
  560. color: #6b6b6b;
  561. }
  562. </style>