新增安全承诺日期范围查询功能

pull/2/head^2
water_xu 2024-04-24 13:43:57 +08:00
parent 9e7e521220
commit d2b5dddac1
1 changed files with 156 additions and 1 deletions

View File

@ -6,6 +6,54 @@
itemStyle="height:80upx;padding-bottom:10upx;background-color: #fff;" itemStyle="height:80upx;padding-bottom:10upx;background-color: #fff;"
@click="tabsClick" @click="tabsClick"
></u-tabs> ></u-tabs>
<view class="container">
<u-sticky offset-top="200">
<u-button type="primary" text="高级搜索" @click="popupOpen" style="height: 30px;"></u-button>
</u-sticky>
</view>
<u-popup :show="popupShow" mode="right" :overlay="true" customStyle='width: 300px;' :safeAreaInsetTop="true" @close="popupClose" @open="popupOpen">
<view>
<u-datetime-picker
:show="addStartPickBarShow"
v-model="addTimeStart"
mode="date"
@close="addPickBarOnClose('start')"
@cancel="addPickBarOnCancel('start')"
@confirm="addPickBarOnConfirm"
></u-datetime-picker>
<u-button @click="addStartPickBarShow = true">起始时间{{ addTimeStartStr == '' ? '请选择起始时间...' : addTimeStartStr }}</u-button>
<u-datetime-picker
:show="addEndPickBarShow"
v-model="addTimeEnd"
mode="date"
@close="addPickBarOnClose('end')"
@cancel="addPickBarOnCancel('end')"
@confirm="addPickBarOnConfirm"
></u-datetime-picker>
<u-button @click="addEndPickBarShow = true">结束时间{{ addTimeEndStr == '' ? '请选择结束时间...' : addTimeEndStr }}</u-button>
<u-toast ref="uToast"></u-toast>
<view class="u-page">
<view class="u-demo-block">
<view class="u-demo-block__content">
<u-row customStyle="margin-bottom: 10px">
<u-col span="6">
<view class="demo-layout bg-purple-light">
<u-button @click="resetAdvancedParam"></u-button>
</view>
</u-col>
<u-col span="6">
<view class="demo-layout bg-purple">
<u-button @click="advancedSearch"></u-button>
</view>
</u-col>
</u-row>
</view>
</view>
</view>
</view>
</u-popup>
<view class="message_list"> <view class="message_list">
<u-list @scrolltolower="scrolltolower" v-if="list.length > 0"> <u-list @scrolltolower="scrolltolower" v-if="list.length > 0">
<u-list-item v-for="(item, index) in list" :key="index"> <u-list-item v-for="(item, index) in list" :key="index">
@ -51,6 +99,13 @@ export default {
currentPage: 1, currentPage: 1,
totalPage: 0, totalPage: 0,
list: [], list: [],
popupShow: false, //
addStartPickBarShow: false, //
addEndPickBarShow: false, //
addTimeStart: Number(new Date()), // -
addTimeEnd: Number(new Date()), // -
addTimeStartStr: '', // --
addTimeEndStr: '', // --
} }
}, },
computed: { computed: {
@ -67,6 +122,8 @@ export default {
USER_ID: this.userInfo.USER_ID, USER_ID: this.userInfo.USER_ID,
showCount: this.pageSize, showCount: this.pageSize,
currentPage: this.currentPage, currentPage: this.currentPage,
ADDSTART: this.addTimeStartStr,
ADDEND: this.addTimeEndStr
}) })
this.list = [...this.list, ...resData.varList] this.list = [...this.list, ...resData.varList]
this.totalPage = resData.page.totalPage this.totalPage = resData.page.totalPage
@ -76,6 +133,8 @@ export default {
USER_ID: this.userInfo.USER_ID, USER_ID: this.userInfo.USER_ID,
showCount: this.pageSize, showCount: this.pageSize,
currentPage: this.currentPage, currentPage: this.currentPage,
ADDSTART: this.addTimeStartStr,
ADDEND: this.addTimeEndStr
}) })
this.list = [...this.list, ...resData.varList] this.list = [...this.list, ...resData.varList]
}, },
@ -95,6 +154,7 @@ export default {
}, },
tabsClick(e) { tabsClick(e) {
this.TYPE = e.id this.TYPE = e.id
this.resetAllAddTime()
this.resetList() this.resetList()
}, },
fnNavigator(item) { fnNavigator(item) {
@ -106,7 +166,82 @@ export default {
TYPE: this.TYPE TYPE: this.TYPE
} }
}) })
},
//
popupOpen() {
this.popupShow = true
},
//
popupClose() {
this.popupShow = false
},
//
addPickBarOnClose(type) {
switch (type) {
case 'start':
this.addStartPickBarShow = false;
break;
case 'end':
this.addEndPickBarShow = false;
break;
default:
this.$refs.uToast.show({message:'日期选择参数错误',duration:1000})
} }
},
//
addPickBarOnCancel(type) {
this.addPickBarOnClose(type)
},
//
addPickBarOnConfirm(value) {
// alert(value.value)
switch (this.addStartPickBarShow) {
case true:
// start type
this.addTimeStartStr = uni.$u.timeFormat(value.value, 'yyyy-mm-dd')
this.addPickBarOnClose('start')
break;
case false:
// end type
this.addTimeEndStr = uni.$u.timeFormat(value.value, 'yyyy-mm-dd')
this.addPickBarOnClose('end')
break;
default:
this.$refs.uToast.show({message:'日期选择参数错误',duration:1000})
}
},
//
resetAllAddTime() {
this.addTimeStart = Number(new Date())
this.addTimeEnd = Number(new Date())
this.addTimeStartStr = ''
this.addTimeEndStr = ''
},
//
resetAdvancedParam() {
this.resetAllAddTime()
this.resetList()
},
//
advancedSearch(){
const toast = uni.$u.toast
//
if (this.addTimeStartStr > this.addTimeEndStr){
// casecase1 > case2
this.$refs.uToast.show({message:'日期不合法',duration:1000})
return
}
if (this.addTimeEndStr != '' && this.addTimeStartStr == ''){
//
this.$refs.uToast.show({message:'日期不合法',duration:1000})
return
}
this.resetList()
this.popupClose()
}
} }
} }
</script> </script>
@ -116,4 +251,24 @@ export default {
background-color: #f7f9ff; background-color: #f7f9ff;
height: 100vh; height: 100vh;
} }
.wrap {
padding: 12px;
}
.demo-layout {
height: 25px;
border-radius: 4px;
}
.bg-purple {
background: #CED7E1;
}
.bg-purple-light {
background: #e5e9f2;
}
.bg-purple-dark {
background: #99a9bf;
}
</style> </style>