search.vue 16 KB

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