fjj-condition.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. <template>
  2. <view>
  3. <uni-drawer :visible="visibleDrawer" mode="right" @close="closeDrawer()">
  4. <scroll-view class="drawer-list" scroll-y :style="{'height': '100%'}">
  5. <block v-for="(item, index) in menuList" :key="index">
  6. <!-- 单选、多选 isMutiple是否支持多选-->
  7. <view v-if="item.type == 'custom' && item.detailList.length">
  8. <view class="drawer-list-title flex justify-between">
  9. <view>
  10. {{item.title}}
  11. </view>
  12. <text v-if="item.detailList.length>showLenght"
  13. @tap="showMore(index)">{{item.showMoreList ? '收起' : '更多'}}</text>
  14. </view>
  15. <view class="draer-list-con">
  16. <template v-if="!item.showMoreList">
  17. <text
  18. :style="{background: textItem.isSelected ? color : '', color: textItem.isSelected ? '#ffffff' : ''}"
  19. v-if="idx<showLenght" v-for="(textItem, idx) in item.detailList" :key="idx"
  20. :class="textItem.isSelected ? 'on' : ''" @tap="itemTap(idx,item.detailList,item.key, item.isMutiple)">
  21. {{textItem.title}}
  22. </text>
  23. </template>
  24. <template v-else>
  25. <text
  26. :style="{background: textItem.isSelected ? color : '', color: textItem.isSelected ? '#ffffff' : ''}"
  27. v-for="(textItem, idx) in item.detailList" :key="idx" :class="textItem.isSelected ? 'on' : ''"
  28. @tap="itemTap(idx,item.detailList,item.key, item.isMutiple)">
  29. {{textItem.title}}
  30. </text>
  31. </template>
  32. </view>
  33. </view>
  34. <!-- 时间带时分秒范围选择 -->
  35. <view v-if="item.type == 'rangetime'">
  36. <view class="drawer-list-title flex justify-between">
  37. <view>
  38. {{item.title}}
  39. </view>
  40. </view>
  41. <view class="dateContent" @click="onShowDatePicker('rangetime', item.key)">
  42. <view>
  43. <template v-if="result[item.key] && result[item.key].length > 0">
  44. {{rangetime[0]}}
  45. </template>
  46. </view>
  47. <view>
  48. <template v-if="result[item.key] && result[item.key].length > 0">
  49. {{rangetime[1]}}
  50. </template>
  51. </view>
  52. </view>
  53. </view>
  54. <!-- 时间不带时分秒范围选择 -->
  55. <view v-if="item.type == 'range'">
  56. <view class="drawer-list-title flex justify-between">
  57. <view>
  58. {{item.title}}
  59. </view>
  60. </view>
  61. <view class="dateContent" @click="onShowDatePicker('range', item.key)">
  62. <view>
  63. <template v-if="result[item.key] && result[item.key].length > 0">
  64. {{range[0]}}-{{range[1]}}
  65. </template>
  66. </view>
  67. </view>
  68. </view>
  69. <!-- 时间不带时分秒单个选择 -->
  70. <view v-if="item.type == 'single'">
  71. <view class="drawer-list-title flex justify-between">
  72. <view>
  73. {{item.title}}
  74. </view>
  75. </view>
  76. <view class="dateContent" @click="onShowDatePicker('single', item.key)">
  77. <view>
  78. <!-- <template v-if="result[item.key] && result[item.key].length > 0"> -->
  79. <view style="margin-left:16rpx;color:#666;">{{single[0]}}</view>
  80. <!-- </template> -->
  81. <!-- <template v-else>
  82. <view style="margin-left:16rpx;color:#666;">请选择时间</view>
  83. </template> -->
  84. </view>
  85. </view>
  86. </view>
  87. <!-- 数值范围选择 -->
  88. <view v-if="item.type == 'rangenumber'">
  89. <view class="drawer-list-title flex justify-between">
  90. <view>
  91. {{item.title}}
  92. </view>
  93. </view>
  94. <view class="dateContent rangenumber-content flex">
  95. <view class="rangenumber-input">
  96. <input class="m-input" type="number" clearable v-model="minNumber"
  97. :placeholder="item.minPlaceholder || '最小值'" @blur="numberInputBlur(item.key)"></input>
  98. </view>
  99. <text>-</text>
  100. <view class="rangenumber-input">
  101. <input class="m-input" type="number" clearable v-model="maxNumber"
  102. :placeholder="item.maxPlaceholder || '最大值'" @blur="numberInputBlur(item.key)"></input>
  103. </view>
  104. </view>
  105. </view>
  106. <!-- 关键词 -->
  107. <view v-if="item.type == 'keyWord'">
  108. <view class="drawer-list-title flex justify-between">
  109. <view>
  110. {{item.title}}
  111. <view style="color:red;font-size:28rpx;">(注:搜索住院号或检查项目名称)</view>
  112. </view>
  113. </view>
  114. <view class="dateContent text-content flex">
  115. <view class="text-input">
  116. <input class="m-input" type="text" clearable v-model="keyWord" :placeholder="'请输入'+item.title"
  117. @blur="keyWordInputBlur(item.key)"></input>
  118. </view>
  119. </view>
  120. </view>
  121. <!-- 按床号排序 -->
  122. <view v-if="item.type == 'bedNumSort'">
  123. <view class="drawer-list-title flex justify-between">
  124. <view>
  125. {{item.title}}
  126. </view>
  127. </view>
  128. <view class="dateContent sort-content flex">
  129. <checkbox-group @change="bedNumSortInputBlur">
  130. <checkbox value="bedNumSort" :checked="bedNumSort" color="#49b856" />按床号排序
  131. </checkbox-group>
  132. </view>
  133. </view>
  134. <!-- 检查信息状态 -->
  135. <view v-if="item.type == 'inspectState'">
  136. <view class="drawer-list-title flex justify-between">
  137. <view>
  138. {{item.title}}
  139. </view>
  140. </view>
  141. <view class="dateContent inspectState-content flex">
  142. <!-- https://ext.dcloud.net.cn/plugin?id=1873#detail -->
  143. <ld-select :multiple="true" :list="inspectStateList" label-key="label" value-key="value" placeholder="请选择"
  144. v-model="result.inspectState" @change="inspectStateChange" @parentCancel="parentCancel"></ld-select>
  145. </view>
  146. </view>
  147. </block>
  148. <view class="filter-content-footer flex justify-center">
  149. <view class="filter-content-footer-item" @tap="resetClick">
  150. <text>重置</text>
  151. </view>
  152. <view class="filter-content-footer-item" :style="{color}" @tap="sureClick">
  153. <text>确认</text>
  154. </view>
  155. </view>
  156. </scroll-view>
  157. </uni-drawer>
  158. <mx-date-picker :show="showPicker" :color="color" :type="dateType" :value="dateValue" :show-tips="true"
  159. :show-seconds="true" @confirm="onSelected" @cancel="onSelected" />
  160. </view>
  161. </template>
  162. <script>
  163. /***
  164. * 筛选组件,当前支持多选、单选
  165. * list、visibleDrawer(是否显示)参数必填
  166. * item.type (custom 单选、多选、rangetime 时间范围带时分秒、range 时间范围不带时分秒、rangenumber 数字范围)
  167. * item.isMutiple 是否支持多选
  168. * 筛选后返回格式{"listName1":[value,value](多选),"listName2":"value"(单选),...}
  169. * rangenumber形式-可能为["",1]或[1,""]表示只有一个最大值或最小值
  170. ***/
  171. import uniDrawer from "@/components/uni-drawer/uni-drawer.vue";
  172. import ldSelect from "@/components/ld-select/ld-select.vue";
  173. import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
  174. export default {
  175. props: {
  176. inspectStateList: {
  177. type: Array,
  178. default () {
  179. return [];
  180. },
  181. },
  182. keyWordGvie: {
  183. type: String,
  184. },
  185. keyWordOld: {
  186. type: String,
  187. },
  188. bedNumSortGvie: {
  189. type: Boolean,
  190. },
  191. list: {
  192. required: true,
  193. type: Array,
  194. default () {
  195. return [];
  196. },
  197. },
  198. visibleDrawer: {
  199. required: true,
  200. type: Boolean,
  201. default: false,
  202. },
  203. color: {
  204. type: String,
  205. default: "#49b856",
  206. },
  207. },
  208. components: {
  209. uniDrawer,
  210. MxDatePicker,
  211. ldSelect,
  212. },
  213. created() {
  214. this.keyWord = this.keyWordGvie || '';
  215. this.bedNumSort = this.bedNumSortGvie;
  216. this.resetResult();
  217. uni.getSystemInfo({
  218. success: (res) => {
  219. this.drawerHeight = res.windowHeight - uni.upx2px(240) + "px";
  220. },
  221. });
  222. },
  223. computed: {
  224. defaultSelectedObj() {
  225. // 保存初始状态
  226. return this.getSelectedObj();
  227. },
  228. selectedObj: {
  229. get() {
  230. return this.getSelectedObj();
  231. },
  232. set(newObj) {
  233. return newObj;
  234. },
  235. },
  236. menuList() {
  237. return this.list;
  238. },
  239. },
  240. data() {
  241. return {
  242. menuKey: 1,
  243. showLenght: 6,
  244. drawerHeight: "500px",
  245. selectDetailList: [],
  246. result: {},
  247. showPicker: false,
  248. date: "",
  249. time: "",
  250. datetime: "",
  251. single: [new Date().Format("yyyy/MM/dd")],
  252. range: [
  253. new Date(new Date().getTime() - 24 * 60 * 60 * 1000).Format(
  254. "yyyy/MM/dd"
  255. ),
  256. new Date().Format("yyyy/MM/dd"),
  257. ],
  258. rangetime: [
  259. new Date(new Date().getTime() - 24 * 60 * 60 * 1000).Format(
  260. "yyyy/MM/dd hh:mm"
  261. ),
  262. new Date().Format("yyyy/MM/dd hh:mm"),
  263. ],
  264. dateType: "rangetime",
  265. dateValue: "",
  266. minNumber: "",
  267. maxNumber: "",
  268. keyWord: "",
  269. bedNumSort: false,
  270. };
  271. },
  272. methods: {
  273. parentCancel(flag) {
  274. if (flag == 1) {
  275. document.querySelector('.uni-drawer__content').style.width = '100vw';
  276. document.querySelector('.drawer-list').style.padding = '0';
  277. } else {
  278. document.querySelector('.uni-drawer__content').style.width = '200px';
  279. document.querySelector('.drawer-list').style.padding = '0 ' + uni.upx2px(20) + "px";
  280. }
  281. },
  282. getSelectedObj() {
  283. return this.commonResultObj();
  284. },
  285. resetResult() {
  286. this.result = this.commonResultObj();
  287. },
  288. commonResultObj() {
  289. let obj = {};
  290. console.log(this.menuList)
  291. this.menuList.map((item) => {
  292. item.isMutiple ?
  293. (obj[item.key] = []) :
  294. item.type === "range" || item.type === "rangetime" ?
  295. (obj[item.key] = []) :
  296. item.type === "bedNumSort" ?
  297. (obj[item.key] = false) :
  298. item.type === "inspectState" ?
  299. (obj[item.key] = ['1', '30']) :
  300. item.type === "single" ?
  301. (obj[item.key] = [new Date().Format("yyyy/MM/dd")]) :
  302. item.type === "keyWord" ?
  303. (obj[item.key] = this.keyWord ? [this.keyWord] : []) :
  304. (obj[item.key] = "");
  305. });
  306. return obj;
  307. },
  308. //筛选项选中或取消
  309. itemTap(index, list, key, isMutiple) {
  310. if (isMutiple == true) {
  311. list[index].isSelected = !list[index].isSelected;
  312. if (list[index].isSelected) {
  313. this.selectedObj[key].push(list[index].value);
  314. } else {
  315. list[index].isSelected = false;
  316. var idx = this.selectedObj[key].indexOf(list[index].value);
  317. this.selectedObj[key].splice(idx, 1);
  318. }
  319. this.result[key] = this.selectedObj[key];
  320. } else {
  321. this.result[key] = list[index].isSelected ? "" : list[index].value;
  322. for (let i = 0; i < list.length; i++) {
  323. if (index == i && !list[i].isSelected) {
  324. list[i].isSelected = true;
  325. } else {
  326. list[i].isSelected = false;
  327. }
  328. }
  329. }
  330. // #ifdef H5
  331. this.$forceUpdate();
  332. // #endif
  333. },
  334. sureClick() {
  335. let str_result = {};
  336. let hasChoose = false;
  337. for (let key in this.result) {
  338. if (typeof this.result[key] == "object") {
  339. str_result[key] = this.result[key].join(",");
  340. if (!hasChoose) {
  341. hasChoose = this.result[key].join(",") !== "" ? true : false;
  342. }
  343. } else {
  344. str_result[key] = this.result[key];
  345. if (!hasChoose) {
  346. hasChoose = this.result[key] !== "" ? true : false;
  347. }
  348. }
  349. }
  350. this.$emit("result", {
  351. str_result: str_result,
  352. result: this.result,
  353. hasChoose: hasChoose,
  354. visibleDrawer: false,
  355. });
  356. },
  357. resetClick() {
  358. console.log(this.result, this.keyWordOld);
  359. this.minNumber = "";
  360. this.maxNumber = "";
  361. this.keyWord = this.keyWordOld || '';
  362. this.bedNumSort = false;
  363. this.single = [new Date().Format("yyyy/MM/dd")];
  364. for (let key in this.result) {
  365. if ((typeof this.result[key] == "object") && key != "inspectState") {
  366. if (key == "yyTime") {
  367. this.result[key] = [new Date().Format("yyyy/MM/dd")];
  368. } else if (key == "keyWord") {
  369. this.result[key] = this.keyWordOld ? [this.keyWordOld] : [];
  370. } else {
  371. this.result[key] = [];
  372. }
  373. } else {
  374. if (key == "bedNumSort") {
  375. this.result[key] = false;
  376. } else if (key == "inspectState") {
  377. this.result[key] = ['1', '30'];
  378. } else {
  379. this.result[key] = "";
  380. }
  381. }
  382. }
  383. for (let i = 0; i < this.menuList.length; i++) {
  384. if (this.menuList[i].type == "custom") {
  385. for (let j = 0; j < this.menuList[i].detailList.length; j++) {
  386. this.menuList[i].detailList[j].isSelected = false;
  387. }
  388. }
  389. }
  390. // #ifdef H5
  391. this.$forceUpdate();
  392. // #endif
  393. },
  394. closeDrawer() {
  395. this.$emit("result", {
  396. changeStatus: true,
  397. visibleDrawer: false,
  398. });
  399. },
  400. showMore(index) {
  401. this.menuList[index].showMoreList = !this.menuList[index].showMoreList;
  402. ++this.menuKey;
  403. // #ifdef H5
  404. this.$forceUpdate();
  405. // #endif
  406. },
  407. onShowDatePicker(type, key) {
  408. //显示
  409. this.dateType = type;
  410. this.dateValue = this[type];
  411. this.showPicker = true;
  412. this.tempKey = key;
  413. },
  414. onSelected(e, key) {
  415. //选择
  416. this.showPicker = false;
  417. if (e) {
  418. this[this.dateType] = e.value;
  419. this.result[this.tempKey] = e.value;
  420. //选择的值
  421. console.log("value => " + e.value);
  422. //原始的Date对象
  423. console.log("date => " + e.date);
  424. }
  425. },
  426. numberInputBlur(key) {
  427. if (
  428. this.minNumber != "" &&
  429. this.maxNumber != "" &&
  430. parseFloat(this.minNumber) > parseFloat(this.maxNumber)
  431. ) {
  432. let temp = this.minNumber;
  433. this.minNumber = this.maxNumber;
  434. this.maxNumber = temp;
  435. }
  436. this.result[key] = [];
  437. this.result[key].push(this.minNumber && parseFloat(this.minNumber));
  438. this.result[key].push(this.maxNumber && parseFloat(this.maxNumber));
  439. },
  440. keyWordInputBlur(key) {
  441. this.result[key] = [];
  442. this.result[key].push(this.keyWord);
  443. },
  444. bedNumSortInputBlur(e) {
  445. this.result.bedNumSort = e.detail.value.length > 0;
  446. this.bedNumSort = e.detail.value.length > 0;
  447. },
  448. inspectStateChange(val) {
  449. this.result.inspectState = val;
  450. },
  451. },
  452. };
  453. </script>
  454. <style lang="scss" scoped>
  455. .flex {
  456. display: flex;
  457. }
  458. .justify-between {
  459. justify-content: space-between;
  460. }
  461. view,
  462. scroll-view,
  463. swiper,
  464. button,
  465. input,
  466. textarea,
  467. label,
  468. navigator,
  469. image {
  470. box-sizing: border-box;
  471. }
  472. /* 筛选样式 */
  473. .drawer-list {
  474. padding: 0 20rpx;
  475. font-size: 26rpx;
  476. }
  477. input {
  478. font-size: 26rpx;
  479. }
  480. .drawer-list .drawer-list-title {
  481. font-size: 34rpx;
  482. font-weight: 400;
  483. line-height: 48rpx;
  484. margin: 38rpx 0 18rpx;
  485. color: rgba(34, 34, 34, 1);
  486. }
  487. .drawer-list .drawer-list-title>text {
  488. font-size: 26rpx;
  489. color: #666666;
  490. }
  491. .drawer-list .draer-list-con>text {
  492. background: rgba(93, 92, 254, 0.1);
  493. border-radius: 28px;
  494. color: #666666;
  495. font-size: 28rpx;
  496. padding: 10rpx 28rpx;
  497. margin: 10rpx 10rpx 10rpx 0;
  498. display: inline-block;
  499. }
  500. .filter-content-footer-item {
  501. width: 160rpx;
  502. height: 72rpx;
  503. line-height: 72rpx;
  504. text-align: center;
  505. box-shadow: 0rpx 4rpx 16rpx rgba(0, 0, 0, 0.18);
  506. border-radius: 12rpx;
  507. margin: 24rpx;
  508. }
  509. .filter-content-footer-item:first-child {
  510. color: #49b856;
  511. }
  512. .picker {
  513. z-index: 99999 !important;
  514. }
  515. .dateContent {
  516. &>view {
  517. background: rgba(244, 244, 244, 1);
  518. border-radius: 8rpx;
  519. width: 100%;
  520. height: 64rpx;
  521. line-height: 64rpx;
  522. margin-bottom: 12rpx;
  523. }
  524. }
  525. .rangenumber-content {
  526. &>text {
  527. display: inline-block;
  528. width: 10%;
  529. text-align: center;
  530. height: 64rpx;
  531. line-height: 64rpx;
  532. }
  533. .rangenumber-input {
  534. width: 45%;
  535. display: inline-block;
  536. padding: 0 12rpx;
  537. .m-input {
  538. height: 64rpx;
  539. line-height: 64rpx;
  540. }
  541. }
  542. }
  543. .text-content {
  544. &>text {
  545. display: inline-block;
  546. width: 10%;
  547. text-align: center;
  548. height: 64rpx;
  549. line-height: 64rpx;
  550. }
  551. .text-input {
  552. width: 100%;
  553. display: inline-block;
  554. padding: 0 12rpx;
  555. .m-input {
  556. height: 64rpx;
  557. line-height: 64rpx;
  558. }
  559. }
  560. }
  561. .sort-content {
  562. font-size: 15px !important;
  563. display: flex;
  564. align-items: center;
  565. /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
  566. border-color: #49b856 !important;
  567. }
  568. }
  569. .inspectState-content {
  570. border-radius: 4px;
  571. width: 100%;
  572. height: 32px;
  573. line-height: 32px;
  574. margin-bottom: 6px;
  575. uni-picker {
  576. width: 100%;
  577. }
  578. .uni-input {
  579. padding-left: 16rpx;
  580. }
  581. }
  582. /deep/.picker {
  583. z-index: 999;
  584. }
  585. </style>