fjj-condition.vue 18 KB

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