search.vue 19 KB

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