修改会议查询条件

This commit is contained in:
fengachen
2021-09-29 20:21:24 +08:00
parent 0fb07019ce
commit d21f861b81
8 changed files with 5 additions and 2 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 791 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 755 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -23,7 +23,7 @@
<a-col :xl="7" :lg="8" :md="8" :sm="24">
<a-form-item label="会议类型">
<j-dict-select-tag dict-code="meeting_type" placeholder="请选择会议类型"
v-model="queryParam.meetingType"></j-dict-select-tag>
v-model="queryParam.meetingStatus"></j-dict-select-tag>
</a-form-item>
</a-col>
<a-col :xxl="7" :xl="10" :md="10" :sm="24">
@@ -263,8 +263,11 @@ export default {
* 查询
* */
searchQuery() {
this.queryParam.meetingStartTime = this.queryParam.meetingStartTime ? this.queryParam.meetingStartTime + ' ' + '00:00:00' : undefined
this.queryParam.meetingEndTime = this.queryParam.meetingEndTime ? this.queryParam.meetingEndTime + ' ' + '23:59:59' : undefined
this.queryParam.createTime_begin = this.queryParam.createTime_begin ? this.queryParam.createTime_begin + ' ' + '00:00:00' : undefined
this.queryParam.createTime_end = this.queryParam.createTime_end ? this.queryParam.createTime_end + ' ' + '23:59:59' : undefined
this.lastQueryParam = {...this.queryParam}
console.log(this.lastQueryParam)
this.initData(1)
},
/*