search.vue 22 KB

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