This commit is contained in:
yanran200730
2022-07-25 16:38:02 +08:00
parent 07fac1c94e
commit 5da0f4b651
2 changed files with 201 additions and 88 deletions

View File

@@ -113,6 +113,13 @@
<el-radio-button size="small" label="1">已执行</el-radio-button>
<el-radio-button size="small" label="2">无法执行</el-radio-button>
</el-radio-group>
<div class="userSelcet" placeholder="请选择创建人">
<span v-if="search1.deptartId"><ai-open-data type="departmentName" :openid="search1.deptartId"></ai-open-data></span>
<span v-else>请选择</span>
<ai-user-get :instance="instance" @change="e => onUserChange(e, 'search1')" isChooseUnit :isMultiple="false" v-model="user1">
<div class="select-btn">选择</div>
</ai-user-get>
</div>
</div>
<el-button type="primary" @click="sendMsg(0)">提醒成员发送</el-button>
</div>
@@ -125,7 +132,7 @@
:current.sync="search1.current"
:size.sync="search1.size"
@getList="getMemberInfo">
<el-table-column slot="user" label="成员" align="center">
<el-table-column slot="user" label="成员" align="left">
<template slot-scope="{ row }">
<div class="userinfo">
<span>
@@ -175,6 +182,13 @@
<el-radio-button size="small" label="1">已执行</el-radio-button>
<el-radio-button size="small" label="2">无法执行</el-radio-button>
</el-radio-group>
<div class="userSelcet" placeholder="请选择创建人">
<span v-if="search2.deptartId"><ai-open-data type="departmentName" :openid="search2.deptartId"></ai-open-data></span>
<span v-else>请选择</span>
<ai-user-get :instance="instance" @change="e => onUserChange(e, 'search2')" isChooseUnit :isMultiple="false" v-model="user2">
<div class="select-btn">选择</div>
</ai-user-get>
</div>
</div>
<el-button type="primary" @click="sendMsg(1)">提醒成员发送</el-button>
</div>
@@ -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;
}
}
}