diff --git a/project/sass/apps/Announce/AppAnnounce/components/Detail.vue b/project/sass/apps/Announce/AppAnnounce/components/Detail.vue
index cc835bb8..80f11761 100644
--- a/project/sass/apps/Announce/AppAnnounce/components/Detail.vue
+++ b/project/sass/apps/Announce/AppAnnounce/components/Detail.vue
@@ -113,6 +113,13 @@
已执行
无法执行
+
+
+
请选择
+
onUserChange(e, 'search1')" isChooseUnit :isMultiple="false" v-model="user1">
+ 选择
+
+
提醒成员发送
@@ -125,7 +132,7 @@
:current.sync="search1.current"
:size.sync="search1.size"
@getList="getMemberInfo">
-
+
@@ -175,6 +182,13 @@
已执行
无法执行
+
+
+
请选择
+
onUserChange(e, 'search2')" isChooseUnit :isMultiple="false" v-model="user2">
+ 选择
+
+
提醒成员发送
@@ -222,6 +236,8 @@
return {
total1: 0,
total2: 0,
+ user1: [],
+ user2: [],
radio1: '未执行',
search1: {
current: 1,
@@ -279,7 +295,22 @@
})
},
- sendMsg (type) {
+ onUserChange (e, search) {
+ if (e.length) {
+ this[search].deptartId = e[0].id
+ } else {
+ this[search].deptartId = ''
+ }
+
+ this[search].current = 1
+ if (search === 'search1') {
+ this.getMemberInfo()
+ } else {
+ this.getGroupInfo()
+ }
+ },
+
+ sendMsg () {
this.instance.post(`/app/appmasssendingtask/remindSend?id=${this.params.id}`).then(res => {
if (res.code === 0) {
this.$message.success('提醒成功')
@@ -364,6 +395,38 @@
flex-wrap: wrap;
}
+ .userSelcet {
+ display: flex;
+ align-items: center;
+ height: 32px;
+ line-height: 32px;
+ margin-left: 12px;
+ border-radius: 4px;
+ border: 1px solid #d0d4dc;
+ overflow: hidden;
+
+ .select-btn {
+ width: 40px;
+ cursor: pointer;
+ text-align: center;
+ border-left: 1px solid #d0d4dc;
+ color: #666;
+ font-size: 12px;
+
+ &:hover {
+ color: #2266FF;
+ }
+ }
+
+ span {
+ width: 200px;
+ padding: 0 15px;
+ font-size: 12px;
+ background: #F5F5F5;
+ color: #999;
+ }
+ }
+
.userinfo {
display: flex;
align-items: center;
@@ -553,6 +616,11 @@
align-items: center;
justify-content: space-between;
margin-bottom: 16px;
+
+ .left {
+ display: flex;
+ align-items: center;
+ }
}
}
diff --git a/project/sass/apps/Announce/AppAnnounce/components/List.vue b/project/sass/apps/Announce/AppAnnounce/components/List.vue
index 64e66d57..eeb31ba0 100644
--- a/project/sass/apps/Announce/AppAnnounce/components/List.vue
+++ b/project/sass/apps/Announce/AppAnnounce/components/List.vue
@@ -33,6 +33,13 @@
@change="search.current = 1, getList()"
placeholder="选择群发结束日期">
+