|
@@ -6,6 +6,7 @@
|
|
|
:inline="true"
|
|
|
v-show="showSearch"
|
|
|
label-width="68px"
|
|
|
+ onSubmit="return false"
|
|
|
>
|
|
|
<!-- <el-form-item label="家族" prop="familyId" v-if="!familyName">
|
|
|
<el-select v-model="queryParams.familyId" placeholder="请选择家族" clearable size="small">
|
|
@@ -247,6 +248,8 @@ export default {
|
|
|
/** 查询家族大事件列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
+ const fid = this.$route.query.fid;
|
|
|
+ this.queryParams.familyId = fid;
|
|
|
listEvents(this.queryParams).then(response => {
|
|
|
this.eventsList = response.rows;
|
|
|
this.total = response.total;
|
|
@@ -262,7 +265,6 @@ export default {
|
|
|
reset() {
|
|
|
this.form = {
|
|
|
id: null,
|
|
|
- familyId: null,
|
|
|
title: null,
|
|
|
contents: null,
|
|
|
createBy: null,
|