123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605 |
- <template>
- <view>
- <uni-drawer :visible="visibleDrawer" mode="right" @close="closeDrawer()">
- <scroll-view class="drawer-list" scroll-y :style="{'height': drawerHeight}">
- <block v-for="(item, index) in menuList" :key="index">
-
- <view v-if="item.type == 'custom' && item.detailList.length">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- <text v-if="item.detailList.length>showLenght" @tap="showMore(index)">{{item.showMoreList ? '收起' : '更多'}}</text>
- </view>
- <view class="draer-list-con">
- <template v-if="!item.showMoreList">
- <text :style="{background: textItem.isSelected ? color : '', color: textItem.isSelected ? '#ffffff' : ''}"
- v-if="idx<showLenght" v-for="(textItem, idx) in item.detailList" :key="idx" :class="textItem.isSelected ? 'on' : ''"
- @tap="itemTap(idx,item.detailList,item.key, item.isMutiple)">
- {{textItem.title}}
- </text>
- </template>
- <template v-else>
- <text :style="{background: textItem.isSelected ? color : '', color: textItem.isSelected ? '#ffffff' : ''}"
- v-for="(textItem, idx) in item.detailList" :key="idx" :class="textItem.isSelected ? 'on' : ''" @tap="itemTap(idx,item.detailList,item.key, item.isMutiple)">
- {{textItem.title}}
- </text>
- </template>
- </view>
- </view>
-
- <view v-if="item.type == 'rangetime'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent" @click="onShowDatePicker('rangetime', item.key)">
- <view>
- <template v-if="result[item.key] && result[item.key].length > 0">
- {{rangetime[0]}}
- </template>
- </view>
- <view>
- <template v-if="result[item.key] && result[item.key].length > 0">
- {{rangetime[1]}}
- </template>
- </view>
- </view>
- </view>
-
- <view v-if="item.type == 'range'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent" @click="onShowDatePicker('range', item.key)">
- <view>
- <template v-if="result[item.key] && result[item.key].length > 0">
- {{range[0]}}-{{range[1]}}
- </template>
- </view>
- </view>
- </view>
-
- <view v-if="item.type == 'single'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent" @click="onShowDatePicker('single', item.key)">
- <view>
-
- <view style="margin-left:16rpx;color:#666;">{{single[0]}}</view>
-
-
- </view>
- </view>
- </view>
-
- <view v-if="item.type == 'rangenumber'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent rangenumber-content flex">
- <view class="rangenumber-input">
- <input class="m-input" type="number" clearable v-model="minNumber" :placeholder="item.minPlaceholder || '最小值'"
- @blur="numberInputBlur(item.key)"></input>
- </view>
- <text>-</text>
- <view class="rangenumber-input">
- <input class="m-input" type="number" clearable v-model="maxNumber" :placeholder="item.maxPlaceholder || '最大值'"
- @blur="numberInputBlur(item.key)"></input>
- </view>
- </view>
- </view>
-
- <view v-if="item.type == 'keyWord'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- <view style="color:red;font-size:28rpx;">(注:搜索住院号或检查项目名称)</view>
- </view>
- </view>
- <view class="dateContent text-content flex">
- <view class="text-input">
- <input class="m-input" type="text" clearable v-model="keyWord" :placeholder="'请输入'+item.title" @blur="keyWordInputBlur(item.key)"></input>
- </view>
- </view>
- </view>
-
- <view v-if="item.type == 'bedNumSort'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent sort-content flex">
- <checkbox-group @change="bedNumSortInputBlur">
- <checkbox value="bedNumSort" :checked="bedNumSort" color="#49b856" />按床号排序
- </checkbox-group>
- </view>
- </view>
-
- <view v-if="item.type == 'inspectState'">
- <view class="drawer-list-title flex justify-between">
- <view>
- {{item.title}}
- </view>
- </view>
- <view class="dateContent inspectState-content flex">
- <picker @change="inspectStateChange" :value="inspectStateIndex" :range="inspectStateNameList">
- <view class="uni-input">{{inspectStateNameList[inspectStateIndex]}}</view>
- </picker>
- </view>
- </view>
- </block>
- </scroll-view>
- <view class="filter-content-footer flex justify-center">
- <view class="filter-content-footer-item" @tap="resetClick">
- <text>重置</text>
- </view>
- <view class="filter-content-footer-item" :style="{color}" @tap="sureClick">
- <text>确认</text>
- </view>
- </view>
- </uni-drawer>
- <mx-date-picker :show="showPicker" :color="color" :type="dateType" :value="dateValue" :show-tips="true"
- :show-seconds="true" @confirm="onSelected" @cancel="onSelected" />
- </view>
- </template>
- <script>
-
- import uniDrawer from "@/components/uni-drawer/uni-drawer.vue";
- import MxDatePicker from "@/components/mx-datepicker/mx-datepicker.vue";
- export default {
- props: {
- inspectStateList: {
- type: Array,
- default () {
- return [];
- },
- },
- keyWordGvie: {
- type: String,
- },
- bedNumSortGvie: {
- type: Boolean,
- },
- list: {
- required: true,
- type: Array,
- default () {
- return [];
- },
- },
- visibleDrawer: {
- required: true,
- type: Boolean,
- default: false,
- },
- color: {
- type: String,
- default: "#49b856",
- },
- },
- components: {
- uniDrawer,
- MxDatePicker,
- },
- created() {
- this.keyWord = this.keyWordGvie;
- this.bedNumSort = this.bedNumSortGvie;
- this.resetResult();
- uni.getSystemInfo({
- success: (res) => {
- this.drawerHeight = res.windowHeight - uni.upx2px(240) + "px";
- },
- });
- },
- watch: {
- inspectStateList(val) {
- this.inspectStateNameList = this.inspectStateList.map(item => item.name);
- this.inspectStateValueList = this.inspectStateList.map(item => item.value);
- }
- },
- computed: {
- defaultSelectedObj() {
-
- return this.getSelectedObj();
- },
- selectedObj: {
- get() {
- return this.getSelectedObj();
- },
- set(newObj) {
- return newObj;
- },
- },
- menuList() {
- return this.list;
- },
- },
- data() {
- return {
- menuKey: 1,
- showLenght: 6,
- drawerHeight: "500px",
- selectDetailList: [],
- result: {},
- showPicker: false,
- date: "",
- time: "",
- datetime: "",
- single: [new Date().Format("yyyy/MM/dd")],
- range: [
- new Date(new Date().getTime() - 24 * 60 * 60 * 1000).Format(
- "yyyy/MM/dd"
- ),
- new Date().Format("yyyy/MM/dd"),
- ],
- rangetime: [
- new Date(new Date().getTime() - 24 * 60 * 60 * 1000).Format(
- "yyyy/MM/dd hh:mm"
- ),
- new Date().Format("yyyy/MM/dd hh:mm"),
- ],
- dateType: "rangetime",
- dateValue: "",
- minNumber: "",
- maxNumber: "",
- keyWord: "",
- bedNumSort: false,
- inspectStateIndex: 0,
- inspectStateNameList: [],
- inspectStateValueList: [],
- };
- },
- methods: {
- getSelectedObj() {
- return this.commonResultObj();
- },
- resetResult() {
- this.result = this.commonResultObj();
- },
- commonResultObj() {
- let obj = {};
- this.menuList.map((item) => {
- item.isMutiple ?
- (obj[item.key] = []) :
- item.type === "range" || item.type === "rangetime" ?
- (obj[item.key] = []) :
- item.type === "bedNumSort" ?
- (obj[item.key] = false) :
- item.type === "inspectState" ?
- (obj[item.key] = 0) :
- item.type === "single" ?
- (obj[item.key] = [new Date().Format("yyyy/MM/dd")]) :
- (obj[item.key] = "");
- });
- return obj;
- },
-
- itemTap(index, list, key, isMutiple) {
- if (isMutiple == true) {
- list[index].isSelected = !list[index].isSelected;
- if (list[index].isSelected) {
- this.selectedObj[key].push(list[index].value);
- } else {
- list[index].isSelected = false;
- var idx = this.selectedObj[key].indexOf(list[index].value);
- this.selectedObj[key].splice(idx, 1);
- }
- this.result[key] = this.selectedObj[key];
- } else {
- this.result[key] = list[index].isSelected ? "" : list[index].value;
- for (let i = 0; i < list.length; i++) {
- if (index == i && !list[i].isSelected) {
- list[i].isSelected = true;
- } else {
- list[i].isSelected = false;
- }
- }
- }
-
- this.$forceUpdate();
-
- },
- sureClick() {
- let str_result = {};
- let hasChoose = false;
- for (let key in this.result) {
- if (typeof this.result[key] == "object") {
- str_result[key] = this.result[key].join(",");
- if (!hasChoose) {
- hasChoose = this.result[key].join(",") !== "" ? true : false;
- }
- } else {
- str_result[key] = this.result[key];
- if (!hasChoose) {
- hasChoose = this.result[key] !== "" ? true : false;
- }
- }
- }
- this.$emit("result", {
- str_result: str_result,
- result: this.result,
- hasChoose: hasChoose,
- visibleDrawer: false,
- });
- },
- resetClick() {
- this.minNumber = "";
- this.maxNumber = "";
- this.keyWord = "";
- this.bedNumSort = false;
- this.inspectStateIndex = 0;
- this.single = [new Date().Format("yyyy/MM/dd")];
- for (let key in this.result) {
- if (typeof this.result[key] == "object") {
- if (key == "yyTime") {
- this.result[key] = [new Date().Format("yyyy/MM/dd")];
- } else {
- this.result[key] = [];
- }
- } else {
- if (key == "bedNumSort") {
- this.result[key] = false;
- } else if (key == "inspectState") {
- this.result[key] = 0;
- this.inspectStateIndex = 0;
- } else {
- this.result[key] = "";
- }
- }
- }
- for (let i = 0; i < this.menuList.length; i++) {
- if (this.menuList[i].type == "custom") {
- for (let j = 0; j < this.menuList[i].detailList.length; j++) {
- this.menuList[i].detailList[j].isSelected = false;
- }
- }
- }
-
- this.$forceUpdate();
-
- },
- closeDrawer() {
- this.$emit("result", {
- changeStatus: true,
- visibleDrawer: false,
- });
- },
- showMore(index) {
- this.menuList[index].showMoreList = !this.menuList[index].showMoreList;
- ++this.menuKey;
-
- this.$forceUpdate();
-
- },
- onShowDatePicker(type, key) {
-
- this.dateType = type;
- this.dateValue = this[type];
- this.showPicker = true;
- this.tempKey = key;
- },
- onSelected(e, key) {
-
- this.showPicker = false;
- if (e) {
- this[this.dateType] = e.value;
- this.result[this.tempKey] = e.value;
-
- console.log("value => " + e.value);
-
- console.log("date => " + e.date);
- }
- },
- numberInputBlur(key) {
- if (
- this.minNumber != "" &&
- this.maxNumber != "" &&
- parseFloat(this.minNumber) > parseFloat(this.maxNumber)
- ) {
- let temp = this.minNumber;
- this.minNumber = this.maxNumber;
- this.maxNumber = temp;
- }
- this.result[key] = [];
- this.result[key].push(this.minNumber && parseFloat(this.minNumber));
- this.result[key].push(this.maxNumber && parseFloat(this.maxNumber));
- },
- keyWordInputBlur(key) {
- this.result[key] = [];
- this.result[key].push(this.keyWord);
- },
- bedNumSortInputBlur(e) {
- this.result.bedNumSort = e.detail.value.length > 0;
- this.bedNumSort = e.detail.value.length > 0;
- },
- inspectStateChange(e) {
- this.result.inspectState = this.inspectStateValueList[e.detail.value];
- this.inspectStateIndex = e.detail.value;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .flex {
- display: flex;
- }
- .justify-between {
- justify-content: space-between;
- }
- view,
- scroll-view,
- swiper,
- button,
- input,
- textarea,
- label,
- navigator,
- image {
- box-sizing: border-box;
- }
- /* 筛选样式 */
- .drawer-list {
- padding: 0 20rpx;
- font-size: 26rpx;
- }
- input {
- font-size: 26rpx;
- }
- .drawer-list .drawer-list-title {
- font-size: 34rpx;
- font-weight: 400;
- line-height: 48rpx;
- margin: 38rpx 0 18rpx;
- color: rgba(34, 34, 34, 1);
- }
- .drawer-list .drawer-list-title>text {
- font-size: 26rpx;
- color: #666666;
- }
- .drawer-list .draer-list-con>text {
- background: rgba(93, 92, 254, 0.1);
- border-radius: 28px;
- color: #666666;
- font-size: 28rpx;
- padding: 10rpx 28rpx;
- margin: 10rpx 10rpx 10rpx 0;
- display: inline-block;
- }
- .filter-content-footer-item {
- width: 160rpx;
- height: 72rpx;
- line-height: 72rpx;
- text-align: center;
- box-shadow: 0rpx 4rpx 16rpx rgba(0, 0, 0, 0.18);
- border-radius: 12rpx;
- margin: 24rpx;
- }
- .filter-content-footer-item:first-child {
- color: #49b856;
- }
- .picker {
- z-index: 99999 !important;
- }
- .dateContent {
- &>view {
- background: rgba(244, 244, 244, 1);
- border-radius: 8rpx;
- width: 90%;
- height: 64rpx;
- line-height: 64rpx;
- margin-bottom: 12rpx;
- }
- }
- .rangenumber-content {
- &>text {
- display: inline-block;
- width: 10%;
- text-align: center;
- height: 64rpx;
- line-height: 64rpx;
- }
- .rangenumber-input {
- width: 45%;
- display: inline-block;
- padding: 0 12rpx;
- .m-input {
- height: 64rpx;
- line-height: 64rpx;
- }
- }
- }
- .text-content {
- &>text {
- display: inline-block;
- width: 10%;
- text-align: center;
- height: 64rpx;
- line-height: 64rpx;
- }
- .text-input {
- width: 90%;
- display: inline-block;
- padding: 0 12rpx;
- .m-input {
- height: 64rpx;
- line-height: 64rpx;
- }
- }
- }
- .sort-content {
- font-size: 15px !important;
- display: flex;
- align-items: center;
- /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
- border-color: #49b856 !important;
- }
- }
- .inspectState-content {
- background: #f4f4f4;
- border-radius: 4px;
- width: 90%;
- height: 32px;
- line-height: 32px;
- margin-bottom: 6px;
- uni-picker{
- width: 100%;
- }
- .uni-input{
- padding-left: 16rpx;
- }
- }
- /deep/.picker {
- z-index: 999;
- }
- </style>
|