searchDept.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. <template>
  2. <view class="content">
  3. <view class="search-box">
  4. <seiminSearch class="mSearch-input-box" :mode="2" button="inside" placeholder="请输入科室名称" @search="doSearch(false)"
  5. @input="changeInp" @confirm="doSearch(false)" v-model="keyword"></seiminSearch>
  6. </view>
  7. <view class="search-keyword">
  8. <scroll-view class="keyword-list-box" v-show="isShowKeywordList" scroll-y>
  9. <block v-for="(row, index) in keywordList" :key="index">
  10. <view class="keyword-entry" hover-class="keyword-entry-tap">
  11. <view class="keyword-text" @tap.stop="doSearch(keywordList[index].keyword)">
  12. <rich-text :nodes="row.htmlStr"></rich-text>
  13. </view>
  14. <view class="keyword-img" @tap.stop="doSearch(keywordList[index].keyword)">
  15. <image src="/static/HM-search/back.png"></image>
  16. </view>
  17. </view>
  18. </block>
  19. </scroll-view>
  20. <scroll-view class="keyword-box" v-show="!isShowKeywordList" scroll-y>
  21. <view class="keyword-block" v-if="oldKeywordList.length > 0">
  22. <view class="keyword-list-header">
  23. <view>历史搜索</view>
  24. <view>
  25. <image @tap="oldDelete" src="/static/HM-search/delete.png"></image>
  26. </view>
  27. </view>
  28. <view class="keyword">
  29. <view v-for="(keyword, index) in oldKeywordList" @tap="changeInp(keyword)" :key="index">{{ keyword }}
  30. </view>
  31. </view>
  32. </view>
  33. </scroll-view>
  34. </view>
  35. <seiminModel ref="seiminModel"></seiminModel>
  36. </view>
  37. </template>
  38. <script>
  39. import {
  40. reqFetchDataList,
  41. reqChangeHospital,
  42. reqUpdData,
  43. reqGetCurrentUser,
  44. } from "../../request/api.js";
  45. import {
  46. mapState,
  47. mapMutations
  48. } from "vuex";
  49. export default {
  50. data() {
  51. return {
  52. keyword: "",
  53. oldKeywordList: [],
  54. keywordList: [],
  55. isShowKeywordList: false,
  56. deptList: [],
  57. timer: null, //定时器
  58. searchText: "", //搜索文本
  59. searchData: [], //搜索结果
  60. };
  61. },
  62. computed: {
  63. ...mapState("user", ["loginInfo"]),
  64. ...mapState(["deptDisplay", "searchDeptParams", "searchDeptResult", 'searchDeptResultList']),
  65. },
  66. onUnload() {
  67. if (this.timer) {
  68. clearTimeout(this.timer);
  69. this.timer = null;
  70. }
  71. },
  72. onLoad(options) {
  73. this.init();
  74. },
  75. methods: {
  76. ...mapMutations(["changeSearchDeptResult", 'changeSeiminModel', 'changeSearchDeptResultList']),
  77. ...mapMutations("user", ["changeLoginInfo"]),
  78. init() {
  79. this.loadOldKeyword();
  80. },
  81. blur() {
  82. uni.hideKeyboard();
  83. },
  84. //加载历史搜索,自动读取本地Storage
  85. loadOldKeyword() {
  86. uni.getStorage({
  87. key: "OldKeys",
  88. success: (res) => {
  89. var OldKeys = JSON.parse(res.data);
  90. this.oldKeywordList = OldKeys;
  91. },
  92. });
  93. },
  94. //防抖搜索
  95. changeInp(event) {
  96. this.searchText = event;
  97. clearTimeout(this.timer);
  98. this.timer = setTimeout(() => {
  99. this.inputChange(event);
  100. }, 500);
  101. },
  102. //监听输入
  103. inputChange(event) {
  104. //兼容引入组件时传入参数情况
  105. var keyword = event.detail ? event.detail.value : event;
  106. if (!keyword) {
  107. this.keywordList = [];
  108. this.isShowKeywordList = false;
  109. return;
  110. }
  111. this.keyword = keyword;
  112. this.isShowKeywordList = true;
  113. let postData = {
  114. idx: 0,
  115. sum: 20,
  116. department: {},
  117. };
  118. // 院区参数----start
  119. if (this.searchDeptParams.type === "changeDept_index") {
  120. //首页切换科室
  121. postData.department.hospital = {
  122. id: this.searchDeptParams.hospital.value,
  123. };
  124. postData.department.keyWord = keyword;
  125. postData.department.nurseSign = 1;
  126. } else if (
  127. this.searchDeptParams.type === "selectDept_start_qucikCreateOrder" ||
  128. this.searchDeptParams.type === "selectDept_end_qucikCreateOrder") {
  129. //快捷建单选择起点科室或选择终点科室
  130. postData.department.hospital = {
  131. id: this.loginInfo.user.currentHospital.id,
  132. };
  133. postData.department.searchType = 1;
  134. postData.department.ids = this.searchDeptParams.ids;
  135. postData.department.keyWord = keyword;
  136. postData.department.nurseSign = 1;
  137. if (this.searchDeptParams.departmentStrategy == 205) {
  138. // 固定科室类型
  139. postData.department.type = {
  140. id: this.searchDeptParams.deptType
  141. };
  142. }
  143. } else {
  144. postData.department.hospital = {
  145. id: this.loginInfo.user.currentHospital.id,
  146. };
  147. // 科室名称或科室别称开关----start
  148. if (this.deptDisplay == 1) {
  149. //科室名称
  150. postData.department.dept = keyword;
  151. } else if (this.deptDisplay == 2) {
  152. //科室别称
  153. postData.department.deptalias = keyword;
  154. }
  155. // 科室名称或科室别称开关----end
  156. }
  157. // 院区参数----end
  158. uni.showLoading({
  159. title: "加载中",
  160. mask: true,
  161. });
  162. reqFetchDataList("data", "department", postData).then((res) => {
  163. if (res.status == 200) {
  164. this.searchData.push({
  165. name: keyword,
  166. list: res.list,
  167. });
  168. let searchText = this.searchText.detail ?
  169. this.searchText.detail.value :
  170. this.searchText;
  171. let index = this.searchData.findIndex(
  172. (item) => item.name === searchText
  173. );
  174. this.deptList = index >= 0 ? this.searchData[index].list : [];
  175. this.keywordList = this.drawCorrelativeKeyword(
  176. this.deptList,
  177. keyword
  178. );
  179. uni.hideLoading();
  180. }
  181. });
  182. },
  183. //高亮关键字
  184. drawCorrelativeKeyword(keywords, keyword) {
  185. var len = keywords.length,
  186. keywordArr = [];
  187. for (var i = 0; i < len; i++) {
  188. var row = keywords[i];
  189. //定义高亮#9f9f9f
  190. var html = "";
  191. if (this.deptDisplay == 1) {
  192. // 科室名称
  193. html = row.dept.replace(
  194. keyword,
  195. "<span style='color: #9f9f9f;'>" + keyword + "</span>"
  196. );
  197. } else if (this.deptDisplay == 2) {
  198. // 科室别称
  199. html = row.deptalias.replace(
  200. keyword,
  201. "<span style='color: #9f9f9f;'>" + keyword + "</span>"
  202. );
  203. }
  204. html = "<div>" + html + "</div>";
  205. var tmpObj = {
  206. keyword: this.deptDisplay == 1 ? row.dept : row.deptalias,
  207. htmlStr: html,
  208. };
  209. keywordArr.push(tmpObj);
  210. }
  211. return keywordArr;
  212. },
  213. //清除历史搜索
  214. oldDelete() {
  215. uni.showModal({
  216. content: "确定清除历史搜索记录?",
  217. success: (res) => {
  218. if (res.confirm) {
  219. console.log("用户点击确定");
  220. this.oldKeywordList = [];
  221. uni.removeStorage({
  222. key: "OldKeys",
  223. });
  224. } else if (res.cancel) {
  225. console.log("用户点击取消");
  226. }
  227. },
  228. });
  229. },
  230. //执行搜索
  231. doSearch(keyword) {
  232. keyword = keyword === false ? this.keyword : keyword;
  233. this.keyword = keyword;
  234. this.saveKeyword(keyword); //保存为历史
  235. let arr = this.deptList.filter((item) => {
  236. return this.deptDisplay == 1 ?
  237. item.dept === keyword :
  238. item.deptalias === keyword;
  239. });
  240. if (arr.length) {
  241. this.changeSearchDeptResult(arr[0]);
  242. if (this.searchDeptParams.type === "changeDept_index") {
  243. //首页切换科室
  244. this.changeDept_index_handler();
  245. } else if (
  246. this.searchDeptParams.type === "selectDept_start_qucikCreateOrder") {
  247. //快捷建单选择起点科室
  248. this.searchDeptResultList.start = arr[0];
  249. this.changeSearchDeptResultList(this.searchDeptResultList);
  250. this.selectDept_startOrEnd_qucikCreateOrder();
  251. } else if (
  252. this.searchDeptParams.type === "selectDept_end_qucikCreateOrder") {
  253. //快捷建单选择终点科室
  254. this.searchDeptResultList.end = arr[0];
  255. this.changeSearchDeptResultList(this.searchDeptResultList);
  256. this.selectDept_startOrEnd_qucikCreateOrder();
  257. }
  258. }
  259. },
  260. //保存关键字到历史记录
  261. saveKeyword(keyword) {
  262. uni.getStorage({
  263. key: "OldKeys",
  264. success: (res) => {
  265. var OldKeys = JSON.parse(res.data);
  266. var findIndex = OldKeys.indexOf(keyword);
  267. if (findIndex == -1) {
  268. OldKeys.unshift(keyword);
  269. } else {
  270. OldKeys.splice(findIndex, 1);
  271. OldKeys.unshift(keyword);
  272. }
  273. //最多10个纪录
  274. OldKeys.length > 10 && OldKeys.pop();
  275. uni.setStorage({
  276. key: "OldKeys",
  277. data: JSON.stringify(OldKeys),
  278. });
  279. this.oldKeywordList = OldKeys; //更新历史搜索
  280. },
  281. fail: (e) => {
  282. var OldKeys = [keyword];
  283. uni.setStorage({
  284. key: "OldKeys",
  285. data: JSON.stringify(OldKeys),
  286. });
  287. this.oldKeywordList = OldKeys; //更新历史搜索
  288. },
  289. });
  290. },
  291. //首页切换科室
  292. changeDept_index_handler() {
  293. if (this.searchDeptParams.type === "changeDept_index") {
  294. // 首页切换科室
  295. uni.showLoading({
  296. title: '加载中',
  297. mask: true,
  298. })
  299. if (
  300. this.loginInfo.user.currentHospital.id ==
  301. this.searchDeptParams.hospital.value
  302. ) {
  303. //没有切换院区
  304. this.changeDept_index_handler_common();
  305. } else {
  306. //切换院区
  307. reqChangeHospital({
  308. currentHosId: this.searchDeptParams.hospital.value,
  309. loginType: "PC",
  310. }).then((res) => {
  311. if (res.status == 200) {
  312. this.changeDept_index_handler_common();
  313. } else {
  314. uni.hideLoading();
  315. this.$refs.seiminModel.showChangeDept({
  316. skin: "toast",
  317. icon: "error",
  318. content: res.msg || "操作失败",
  319. });
  320. }
  321. });
  322. }
  323. }
  324. },
  325. // 首页切换科室,公共方法
  326. changeDept_index_handler_common() {
  327. // 更新用户
  328. reqUpdData("data", "user", {
  329. user: {
  330. dept: {
  331. id: this.searchDeptResult.id,
  332. },
  333. id: this.loginInfo.user.id,
  334. },
  335. }).then((res) => {
  336. if (res.status == 200) {
  337. // 获取当前登录用户信息
  338. reqGetCurrentUser().then((res) => {
  339. uni.hideLoading();
  340. if (res.status == 200) {
  341. this.$refs.seiminModel.showChangeDept({
  342. skin: "toast",
  343. icon: "success",
  344. content: "切换科室成功",
  345. btns: [{
  346. click: (e) => {
  347. this.changeLoginInfo(res.data);
  348. this.changeSeiminModel(true);
  349. uni.navigateTo({
  350. url: this.searchDeptParams.backUrl,
  351. });
  352. }
  353. }]
  354. });
  355. } else {
  356. this.$refs.seiminModel.showChangeDept({
  357. skin: "toast",
  358. icon: "error",
  359. content: res.msg || "操作失败",
  360. });
  361. }
  362. });
  363. } else {
  364. uni.hideLoading();
  365. this.$refs.seiminModel.showChangeDept({
  366. skin: "toast",
  367. icon: "error",
  368. content: res.msg || "操作失败",
  369. });
  370. }
  371. });
  372. },
  373. // 快捷建单选择起点科室或选择终点科室
  374. selectDept_startOrEnd_qucikCreateOrder() {
  375. uni.navigateTo({
  376. url: this.searchDeptParams.backUrl,
  377. });
  378. }
  379. },
  380. };
  381. </script>
  382. <style lang="scss" scoped>
  383. view {
  384. display: block;
  385. }
  386. .search-box {
  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>