searchDept.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  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. uni.hideLoading();
  164. if (res.status == 200) {
  165. this.searchData.push({
  166. name: keyword,
  167. list: res.list,
  168. });
  169. let searchText = this.searchText.detail ?
  170. this.searchText.detail.value :
  171. this.searchText;
  172. let index = this.searchData.findIndex(
  173. (item) => item.name === searchText
  174. );
  175. this.deptList = index >= 0 ? this.searchData[index].list : [];
  176. this.keywordList = this.drawCorrelativeKeyword(
  177. this.deptList,
  178. keyword
  179. );
  180. } else {
  181. this.$refs.seiminModel.showChangeDept({
  182. skin: "toast",
  183. icon: "error",
  184. content: res.msg || "获取数据失败",
  185. });
  186. throw new Error(res.msg || '获取数据失败');
  187. }
  188. });
  189. },
  190. //高亮关键字
  191. drawCorrelativeKeyword(keywords, keyword) {
  192. var len = keywords.length,
  193. keywordArr = [];
  194. for (var i = 0; i < len; i++) {
  195. var row = keywords[i];
  196. //定义高亮#9f9f9f
  197. var html = "";
  198. if (this.deptDisplay == 1) {
  199. // 科室名称
  200. html = row.dept.replace(
  201. keyword,
  202. "<span style='color: #9f9f9f;'>" + keyword + "</span>"
  203. );
  204. } else if (this.deptDisplay == 2) {
  205. // 科室别称
  206. html = row.deptalias.replace(
  207. keyword,
  208. "<span style='color: #9f9f9f;'>" + keyword + "</span>"
  209. );
  210. }
  211. html = "<div>" + html + "</div>";
  212. var tmpObj = {
  213. keyword: this.deptDisplay == 1 ? row.dept : row.deptalias,
  214. htmlStr: html,
  215. };
  216. keywordArr.push(tmpObj);
  217. }
  218. return keywordArr;
  219. },
  220. //清除历史搜索
  221. oldDelete() {
  222. uni.showModal({
  223. content: "确定清除历史搜索记录?",
  224. success: (res) => {
  225. if (res.confirm) {
  226. console.log("用户点击确定");
  227. this.oldKeywordList = [];
  228. uni.removeStorage({
  229. key: "OldKeys",
  230. });
  231. } else if (res.cancel) {
  232. console.log("用户点击取消");
  233. }
  234. },
  235. });
  236. },
  237. //执行搜索
  238. doSearch(keyword) {
  239. keyword = keyword === false ? this.keyword : keyword;
  240. this.keyword = keyword;
  241. this.saveKeyword(keyword); //保存为历史
  242. let arr = this.deptList.filter((item) => {
  243. return this.deptDisplay == 1 ?
  244. item.dept === keyword :
  245. item.deptalias === keyword;
  246. });
  247. if (arr.length) {
  248. this.changeSearchDeptResult(arr[0]);
  249. if (this.searchDeptParams.type === "changeDept_index") {
  250. //首页切换科室
  251. this.changeDept_index_handler();
  252. } else if (
  253. this.searchDeptParams.type === "selectDept_start_qucikCreateOrder") {
  254. //快捷建单选择起点科室
  255. this.searchDeptResultList.start = arr[0];
  256. this.changeSearchDeptResultList(this.searchDeptResultList);
  257. this.selectDept_startOrEnd_qucikCreateOrder();
  258. } else if (
  259. this.searchDeptParams.type === "selectDept_end_qucikCreateOrder") {
  260. //快捷建单选择终点科室
  261. this.searchDeptResultList.end = arr[0];
  262. this.changeSearchDeptResultList(this.searchDeptResultList);
  263. this.selectDept_startOrEnd_qucikCreateOrder();
  264. }
  265. }
  266. },
  267. //保存关键字到历史记录
  268. saveKeyword(keyword) {
  269. uni.getStorage({
  270. key: "OldKeys",
  271. success: (res) => {
  272. var OldKeys = JSON.parse(res.data);
  273. var findIndex = OldKeys.indexOf(keyword);
  274. if (findIndex == -1) {
  275. OldKeys.unshift(keyword);
  276. } else {
  277. OldKeys.splice(findIndex, 1);
  278. OldKeys.unshift(keyword);
  279. }
  280. //最多10个纪录
  281. OldKeys.length > 10 && OldKeys.pop();
  282. uni.setStorage({
  283. key: "OldKeys",
  284. data: JSON.stringify(OldKeys),
  285. });
  286. this.oldKeywordList = OldKeys; //更新历史搜索
  287. },
  288. fail: (e) => {
  289. var OldKeys = [keyword];
  290. uni.setStorage({
  291. key: "OldKeys",
  292. data: JSON.stringify(OldKeys),
  293. });
  294. this.oldKeywordList = OldKeys; //更新历史搜索
  295. },
  296. });
  297. },
  298. //首页切换科室
  299. changeDept_index_handler() {
  300. if (this.searchDeptParams.type === "changeDept_index") {
  301. // 首页切换科室
  302. uni.showLoading({
  303. title: '加载中',
  304. mask: true,
  305. })
  306. if (
  307. this.loginInfo.user.currentHospital.id ==
  308. this.searchDeptParams.hospital.value
  309. ) {
  310. //没有切换院区
  311. this.changeDept_index_handler_common();
  312. } else {
  313. //切换院区
  314. reqChangeHospital({
  315. currentHosId: this.searchDeptParams.hospital.value,
  316. loginType: "PC",
  317. }).then((res) => {
  318. if (res.status == 200) {
  319. this.changeDept_index_handler_common();
  320. } else {
  321. uni.hideLoading();
  322. this.$refs.seiminModel.showChangeDept({
  323. skin: "toast",
  324. icon: "error",
  325. content: res.msg || "操作失败",
  326. });
  327. throw new Error(res.msg || '操作失败');
  328. }
  329. });
  330. }
  331. }
  332. },
  333. // 首页切换科室,公共方法
  334. changeDept_index_handler_common() {
  335. // 更新用户
  336. reqUpdData("data", "user", {
  337. user: {
  338. dept: {
  339. id: this.searchDeptResult.id,
  340. },
  341. id: this.loginInfo.user.id,
  342. },
  343. }).then((res) => {
  344. if (res.status == 200) {
  345. // 获取当前登录用户信息
  346. reqGetCurrentUser().then((res) => {
  347. uni.hideLoading();
  348. if (res.status == 200) {
  349. this.$refs.seiminModel.showChangeDept({
  350. skin: "toast",
  351. icon: "success",
  352. content: "切换科室成功",
  353. btns: [{
  354. click: (e) => {
  355. this.changeLoginInfo(res.data);
  356. this.changeSeiminModel(true);
  357. uni.navigateTo({
  358. url: this.searchDeptParams.backUrl,
  359. });
  360. }
  361. }]
  362. });
  363. } else {
  364. this.$refs.seiminModel.showChangeDept({
  365. skin: "toast",
  366. icon: "error",
  367. content: res.msg || "操作失败",
  368. });
  369. throw new Error(res.msg || '操作失败');
  370. }
  371. });
  372. } else {
  373. uni.hideLoading();
  374. this.$refs.seiminModel.showChangeDept({
  375. skin: "toast",
  376. icon: "error",
  377. content: res.msg || "操作失败",
  378. });
  379. throw new Error(res.msg || '操作失败');
  380. }
  381. });
  382. },
  383. // 快捷建单选择起点科室或选择终点科室
  384. selectDept_startOrEnd_qucikCreateOrder() {
  385. uni.navigateTo({
  386. url: this.searchDeptParams.backUrl,
  387. });
  388. }
  389. },
  390. };
  391. </script>
  392. <style lang="scss" scoped>
  393. view {
  394. display: block;
  395. }
  396. .search-box {
  397. background-color: rgb(242, 242, 242);
  398. padding: 15upx 2.5%;
  399. display: flex;
  400. justify-content: space-between;
  401. position: sticky;
  402. top: 0;
  403. }
  404. .search-box .mSearch-input-box {
  405. width: 100%;
  406. }
  407. .search-box .input-box {
  408. width: 85%;
  409. flex-shrink: 1;
  410. display: flex;
  411. justify-content: center;
  412. align-items: center;
  413. }
  414. .search-box .search-btn {
  415. width: 15%;
  416. margin: 0 0 0 2%;
  417. display: flex;
  418. justify-content: center;
  419. align-items: center;
  420. flex-shrink: 0;
  421. font-size: 28upx;
  422. color: #fff;
  423. background: linear-gradient(to right, #ff9801, #ff570a);
  424. border-radius: 60upx;
  425. }
  426. .search-box .input-box>input {
  427. width: 100%;
  428. height: 60upx;
  429. font-size: 32upx;
  430. border: 0;
  431. border-radius: 60upx;
  432. -webkit-appearance: none;
  433. -moz-appearance: none;
  434. appearance: none;
  435. padding: 0 3%;
  436. margin: 0;
  437. background-color: #ffffff;
  438. }
  439. .placeholder-class {
  440. color: #9e9e9e;
  441. }
  442. .search-keyword {
  443. width: 100%;
  444. background-color: rgb(242, 242, 242);
  445. }
  446. .keyword-list-box {
  447. height: calc(100vh - 110upx);
  448. padding-top: 10upx;
  449. border-radius: 20upx 20upx 0 0;
  450. background-color: #fff;
  451. }
  452. .keyword-entry-tap {
  453. background-color: #eee;
  454. }
  455. .keyword-entry {
  456. width: 94%;
  457. height: 80upx;
  458. margin: 0 3%;
  459. font-size: 30upx;
  460. color: #333;
  461. display: flex;
  462. justify-content: space-between;
  463. align-items: center;
  464. border-bottom: solid 1upx #e7e7e7;
  465. }
  466. .keyword-entry image {
  467. width: 60upx;
  468. height: 60upx;
  469. }
  470. .keyword-entry .keyword-text,
  471. .keyword-entry .keyword-img {
  472. height: 80upx;
  473. display: flex;
  474. align-items: center;
  475. }
  476. .keyword-entry .keyword-text {
  477. width: 90%;
  478. }
  479. .keyword-entry .keyword-img {
  480. width: 10%;
  481. justify-content: center;
  482. }
  483. .keyword-box {
  484. height: calc(100vh - 110upx);
  485. border-radius: 20upx 20upx 0 0;
  486. background-color: #fff;
  487. }
  488. .keyword-box .keyword-block {
  489. padding: 10upx 0;
  490. }
  491. .keyword-box .keyword-block .keyword-list-header {
  492. width: 94%;
  493. padding: 10upx 3%;
  494. font-size: 27upx;
  495. color: #333;
  496. display: flex;
  497. justify-content: space-between;
  498. }
  499. .keyword-box .keyword-block .keyword-list-header image {
  500. width: 40upx;
  501. height: 40upx;
  502. }
  503. .keyword-box .keyword-block .keyword {
  504. width: 94%;
  505. padding: 3px 3%;
  506. display: flex;
  507. flex-flow: wrap;
  508. justify-content: flex-start;
  509. }
  510. .keyword-box .keyword-block .hide-hot-tis {
  511. display: flex;
  512. justify-content: center;
  513. font-size: 28upx;
  514. color: #6b6b6b;
  515. }
  516. .keyword-box .keyword-block .keyword>view {
  517. display: flex;
  518. justify-content: center;
  519. align-items: center;
  520. border-radius: 60upx;
  521. padding: 0 20upx;
  522. margin: 10upx 20upx 10upx 0;
  523. height: 60upx;
  524. font-size: 28upx;
  525. background-color: rgb(242, 242, 242);
  526. color: #6b6b6b;
  527. }
  528. </style>