|
@@ -95,7 +95,7 @@ |
|
|
<l-select |
|
|
<l-select |
|
|
v-model="hasInternalParticipants" |
|
|
v-model="hasInternalParticipants" |
|
|
@change="searchChange" |
|
|
@change="searchChange" |
|
|
:range="[{value:0,text:'我申请的会议'},{value:1,text:'我参加的会议'}]" |
|
|
|
|
|
|
|
|
:range="[{value:1,text:'我参加的会议'},{value:0,text:'我申请的会议'}]" |
|
|
title="会议类型" |
|
|
title="会议类型" |
|
|
placeholder="按会议类型查询" |
|
|
placeholder="按会议类型查询" |
|
|
/> |
|
|
/> |
|
@@ -181,7 +181,7 @@ export default { |
|
|
// MeetingPlace: "", |
|
|
// MeetingPlace: "", |
|
|
// CreateUser: "", |
|
|
// CreateUser: "", |
|
|
}, |
|
|
}, |
|
|
hasInternalParticipants:0, |
|
|
|
|
|
|
|
|
hasInternalParticipants:1, |
|
|
|
|
|
|
|
|
// 数据源 |
|
|
// 数据源 |
|
|
dataSource: { |
|
|
dataSource: { |
|
@@ -297,6 +297,7 @@ export default { |
|
|
|
|
|
|
|
|
// 点击「清空查询条件」按钮 |
|
|
// 点击「清空查询条件」按钮 |
|
|
reset() { |
|
|
reset() { |
|
|
|
|
|
this.hasInternalParticipants = 1 |
|
|
this.queryData = this.COPY(this.defaultQueryData); |
|
|
this.queryData = this.COPY(this.defaultQueryData); |
|
|
this.searchChange(); |
|
|
this.searchChange(); |
|
|
}, |
|
|
}, |
|
|