diff --git a/src/views/modules/communityParty/calendar/index.vue b/src/views/modules/communityParty/calendar/index.vue index 8e22ffe20..223c44bda 100644 --- a/src/views/modules/communityParty/calendar/index.vue +++ b/src/views/modules/communityParty/calendar/index.vue @@ -63,6 +63,7 @@
发布
-
diff --git a/src/views/modules/communityParty/orgActivity/activivityList/activivityList.vue b/src/views/modules/communityParty/orgActivity/activivityList/activivityList.vue index 3d1239377..6caf632d8 100644 --- a/src/views/modules/communityParty/orgActivity/activivityList/activivityList.vue +++ b/src/views/modules/communityParty/orgActivity/activivityList/activivityList.vue @@ -108,12 +108,12 @@ 新增活动计划 - 生成年度活动计划 添加日程提醒 + @click="handleAddSchedule">添加日程提醒
--> @@ -471,7 +472,7 @@ export default { async handleDelete (row, tableIndex) { - this.$confirm("活动删除后不可恢复,您确定要删除吗?", "提示", { + this.$confirm("您确定要删除该条活动计划吗?", "提示", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning" @@ -528,28 +529,28 @@ export default { } let obj = { - icPartyActId: '',//编辑活动时必传 - actType: this.actType,// 活动类型,来源于活动类型接口value - holdYearId: '',//活动开始时间所属年份:yyyy - holdMonthId: '',//活动开始时间所属月份:yyyyMM - holdTime: '',//活动开始时间:yyyy-MM-dd HH:mm:ss - topic: '',// 活动主题 - address: '',// 活动地址 - latitude: '',//活动地点纬度 - longitude: '',// 活动地点经度 - autoPublicType: '',//自动发布时间key; 来源于字典表接口 - publishPartyOrgId: this.defaultPublishParty.defaultPartyOrgId,// 发布活动党组织id - publishPartyOrgName: this.defaultPublishParty.defaultPartyOrgName,// 发布活动党组织名称 - publishOrgPid: this.defaultPublishParty.defaultPartyOrgPid,// 参加活动党组织ID的上级节点 - publishOrgType: this.defaultPublishParty.orgType,//党组织类型 0省委,1市委,2区委,3党工委,4党委,5支部;6党小组 - publishOrgPathShow: this.defaultPublishParty.defaultPartyOrgPath,//PUBLISH_PARTY_ORG_ID的全路径,包含自身。方便前端回显 - joinUserType: '',//参加人员类型,0:全体党员;1:支部委员 - isAutoInform: '',// 是否自动通知参加人员,0否;1是 + icPartyActId: '',//编辑活动时必传 + actType: this.actType,// 活动类型,来源于活动类型接口value + holdYearId: '',//活动开始时间所属年份:yyyy + holdMonthId: '',//活动开始时间所属月份:yyyyMM + holdTime: '',//活动开始时间:yyyy-MM-dd HH:mm:ss + topic: '',// 活动主题 + address: '',// 活动地址 + latitude: '',//活动地点纬度 + longitude: '',// 活动地点经度 + autoPublicType: this.autoTimeArray[1].value ||'',//自动发布时间key; 来源于字典表接口 默认 3天 + publishPartyOrgId: this.defaultPublishParty.defaultPartyOrgId,// 发布活动党组织id + publishPartyOrgName: this.defaultPublishParty.defaultPartyOrgName,// 发布活动党组织名称 + publishOrgPid: this.defaultPublishParty.defaultPartyOrgPid,// 参加活动党组织ID的上级节点 + publishOrgType: this.defaultPublishParty.orgType,//党组织类型 0省委,1市委,2区委,3党工委,4党委,5支部;6党小组 + publishOrgPathShow: this.defaultPublishParty.defaultPartyOrgPath,//PUBLISH_PARTY_ORG_ID的全路径,包含自身。方便前端回显 + joinUserType: this.joinArray[0].value ||'',//参加人员类型,0:全体党员;1:支部委员 默认 全体 + isAutoInform: '',// 是否自动通知参加人员,0否;1是 introduce: '',// 活动介绍 attachmentList: [], joinOrgList: [], - publichIdArray: this.defaultPublishParty.defaultPartyOrgPath.split(':'), + publichIdArray: this.defaultPublishParty.defaultPartyOrgId.split(':') || [],//默认 顶级党组织 // publichIdArray: ['1536584227130798081'], joinIdArray: [], isAutoInformShow: true diff --git a/src/views/modules/communityParty/orgActivity/activivityList/scheduleList.vue b/src/views/modules/communityParty/orgActivity/activivityList/scheduleList.vue new file mode 100644 index 000000000..092687a8c --- /dev/null +++ b/src/views/modules/communityParty/orgActivity/activivityList/scheduleList.vue @@ -0,0 +1,593 @@ + + + + + diff --git a/src/views/modules/communityParty/orgActivity/activivityList/yearplanList.vue b/src/views/modules/communityParty/orgActivity/activivityList/yearplanList.vue index e526b8d25..681757bd9 100644 --- a/src/views/modules/communityParty/orgActivity/activivityList/yearplanList.vue +++ b/src/views/modules/communityParty/orgActivity/activivityList/yearplanList.vue @@ -5,28 +5,35 @@ + :label-width="'150px'">
- - + + + - 查询 + class="diy-button--search" + @click="handleSearch">查询-->
@@ -257,7 +264,13 @@ export default { this.yearArray = [] let now = new Date() let year = now.getFullYear() - this.formData.yearId = year + '' + + if (this.currentYearStr) { + + this.formData.yearId = this.currentYearStr + } else { + this.formData.yearId = year + '' + } for (let i = 0; i < 5; i++) { let obj = { value: (year - i) + '', @@ -485,6 +498,16 @@ export default { }, + + props: { + + currentYearStr: { //年份 + type: String, + required: '' + }, + + + } };