searchDept.vue 14 KB

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