Files
dvcp_v2_wxcp_app/src/apps/AppMessageNotification/AppMessageNotification.vue

477 lines
12 KiB
Vue
Raw Normal View History

2022-06-13 17:34:58 +08:00
<template>
<section class="AppMessageNotification">
<div class="header">
<p>注意</p>
<p>每个用户每天可以接受10条群发消息不限企业发布的群发还是个人发布的群发</p>
<p>个人群发每天可以给用户发送10条群发消息</p>
</div>
<div class="select-user">
2022-06-24 20:18:31 +08:00
<div class="label color-666"><span class="tips">*</span>发送方式</div>
<div class="right">
<u-radio-group v-model="form.sendType" @change="radioGroupChange">
2022-06-24 23:21:01 +08:00
<u-radio v-for="(item, index) in typeList" :key="index" :label="item.name" :name="item.type">{{ item.name }}</u-radio>
2022-06-24 20:18:31 +08:00
</u-radio-group>
2022-06-13 17:34:58 +08:00
</div>
</div>
2022-06-24 20:18:31 +08:00
<div class="select-user">
<div class="label color-666"><span class="tips">*</span>部门选择</div>
<div class="right">
<AiPagePicker type="custom" :selected.sync="deptUserList" nodeKey="id" :ops="{url:`./selectDeptUser`,label:'name'}" valueObj>
<span class="label" v-if="deptUserList.length">已选择</span>
<span v-else style="color:#999;">请选择</span>
<u-icon name="arrow-right" color="#999" size="24" style="margin-left:8px;"/>
</AiPagePicker>
2022-06-13 17:34:58 +08:00
</div>
2022-06-24 20:18:31 +08:00
</div>
<div class="select-user">
<div class="label color-666">发送地区</div>
<div class="right">
<AiAreaPicker v-model="areaIdList" multiple>
<span class="label" v-if="areaIdList.length">已选择</span>
<span v-else style="color:#999;">请选择</span>
<u-icon name="arrow-down" color="#666" size="24"/>
</AiAreaPicker>
2022-06-13 17:34:58 +08:00
</div>
2022-06-24 20:18:31 +08:00
</div>
<div class="content">
<p class="title fw500 mar-b32">群发消息设置</p>
2022-06-13 17:34:58 +08:00
<div class="mini-title color-666"><span class="tips">*</span>文本内容</div>
<div class="textarea">
2022-06-24 23:21:01 +08:00
<u-input v-model="form.content" type="textarea" :height="400" auto-height maxlength="1000" placeholder="请输入文本内容"/>
2022-06-13 17:34:58 +08:00
<div class="hint">{{ form.content.length }}/1000</div>
</div>
<div class="type-content">
2022-06-13 18:54:17 +08:00
<div class="flex">
2022-06-13 17:34:58 +08:00
<p class="label" style="width:40px;">图片</p>
2022-06-13 18:54:17 +08:00
<AiUploader type="image" :def.sync="formData.fileListImg" :limit="1" @data="(v) => fileDataImg = v"></AiUploader>
2022-06-13 17:34:58 +08:00
</div>
2022-06-24 23:21:01 +08:00
<div class="flex">
2022-06-13 17:34:58 +08:00
<p class="label" style="width:40px;">视频</p>
2022-06-13 18:54:17 +08:00
<AiUploader type="video" :limit="1" placeholder="上传视频" :def.sync="formData.fileListVideo" @data="(v) => fileDataVideo = v"></AiUploader>
2022-06-13 17:34:58 +08:00
</div>
2022-06-13 18:54:17 +08:00
<div class="flex">
2022-06-13 17:34:58 +08:00
<p class="label" style="width:40px;">附件</p>
2022-06-13 18:54:17 +08:00
<AiUploader type="file" :limit="1" placeholder="上传附件" :def.sync="formData.fileListFile" @data="(v) => fileDataFile = v"></AiUploader>
2022-06-13 17:34:58 +08:00
</div>
</div>
</div>
<div class="bg-144"></div>
<div class="footer">
<div @click="back">取消</div>
<div class="confirm" @click="confirm">确认发送</div>
</div>
<!-- <u-popup v-model="show" mode="bottom">
<div class="popup">
<div class="item" v-for="(item, index) in popupList" :key="index">
<div class="icon-bg">
<u-icon :name="item.icon" size="56" color="#333"></u-icon>
</div>
<p>{{item.text}}</p>
</div>
</div>
</u-popup> -->
</section>
</template>
<script>
import {mapState} from 'vuex'
export default {
name: "AppMessageNotification",
appName: "消息通知",
data() {
return {
typeList: [
2022-06-24 23:21:01 +08:00
{name: '居民群', type: '0'},
2022-06-24 20:18:31 +08:00
{name: '居民', type: '1'}
2022-06-13 17:34:58 +08:00
],
form: {
content: '',
contentType: 'text',
2022-06-24 23:10:12 +08:00
sendType: '0',
2022-06-13 17:34:58 +08:00
},
formData: {
2022-06-13 18:54:17 +08:00
fileListImg: [],
fileListVideo: [],
fileListFile: [],
2022-06-13 17:34:58 +08:00
fileList: [],
},
areaIdList: [],
tagIdList: [],
2022-06-13 18:54:17 +08:00
fileDataImg: null,
fileDataVideo: null,
2022-06-24 20:18:31 +08:00
fileDataFile: null,
userList: [],
deptList: [],
deptUserTagList: []
}
},
computed: {
...mapState(['user']),
deptUserList: {
set(v) {
this.userList = v.filter(e => e.kind == 'user')
this.deptList = v.filter(e => e.kind == 'dept')
},
get() {
let {userList, deptList} = this
return [userList, deptList].flat()
}
2022-06-13 17:34:58 +08:00
}
},
methods: {
2022-06-24 20:18:31 +08:00
radioGroupChange(e) {
this.form.sendType = e
uni.setStorageSync('sendType', e)
2022-06-24 23:10:12 +08:00
this.deptUserTagList = []
this.deptUserList = []
2022-06-24 23:21:01 +08:00
},
2022-06-13 17:34:58 +08:00
toSelect() {
uni.navigateTo({url: `./SelectUser?tagIdList=${this.tagIdList}&areaList=${this.areaIdList}`})
},
timeSelect(e) {
var nowTime = new Date().getTime() * 1
var beginTimes = new Date(e.year + '/' + e.month + '/' + e.day + ' ' + e.hour + ':' + e.minute + ':' + e.second).getTime() * 1
if (nowTime > beginTimes) {
// this.form.sendTime = ''
return this.$u.toast('群发时间应大于当前时间')
} else {
this.form.sendTime = `${e.year}-${e.month}-${e.day} ${e.hour}:${e.minute}:${e.second}`
}
},
confirm() {
2022-06-13 18:54:17 +08:00
this.$loading()
2022-06-24 23:21:01 +08:00
if (!this.deptUserTagList.length) {
2022-06-24 21:47:52 +08:00
return this.$u.toast('请选择部门')
2022-06-13 17:34:58 +08:00
}
2022-06-24 23:21:01 +08:00
if (!this.form.content) {
2022-06-13 17:34:58 +08:00
return this.$u.toast('请输入文本内容')
}
2022-06-24 21:47:52 +08:00
let result = {}, tags = {}
this.deptUserTagList.map(e => {
let {kind, id, tagIdList} = e
result[e.corpId] = [result[e.corpId], {kind, id}].flat()
2022-06-24 23:23:57 +08:00
tagIdList = tagIdList.filter(e => !!e)
2022-06-24 21:47:52 +08:00
if (tagIdList) {
2022-06-24 23:21:01 +08:00
tags[e.corpId] = [...new Set([tags[e.corpId], tagIdList].flat())]
2022-06-24 21:47:52 +08:00
}
})
2022-06-24 23:10:12 +08:00
var deptList = Object.keys(result).map(corpId => {
let res
if (result[corpId]) {
res = {
corpId,
2022-06-24 23:21:01 +08:00
objList: result[corpId].filter(e => !!e)
2022-06-24 23:10:12 +08:00
}
2022-06-24 23:22:39 +08:00
let tagIds = tags[corpId].filter(e => !!e)
if (tagIds?.length > 0) {
res.tagId = tagIds
2022-06-24 23:10:12 +08:00
}
}
return res
}).filter(e => !!e)
2022-06-24 21:47:52 +08:00
2022-06-13 18:54:17 +08:00
this.formData.fileList = []
var contentFile = {
content: this.form.content,
contentType: 'text'
}
// if(this.formData.fileList.length) {
// this.formData.file = this.formData.fileList[0]
// this.formData.accessUrl = this.formData.fileList[0].url
// this.formData.mediaId = this.fileData.media.mediaId
// }
this.formData.fileList.push(contentFile)
2022-06-24 23:21:01 +08:00
if (this.formData.fileListImg.length) {
2022-06-13 18:54:17 +08:00
var info = {
contentType: 'image',
mediaId: this.fileDataImg.media.mediaId,
accessUrl: this.formData.fileListImg[0].url
}
this.formData.fileList.push(info)
}
2022-06-24 23:21:01 +08:00
if (this.formData.fileListVideo.length) {
2022-06-13 18:54:17 +08:00
var info = {
contentType: 'video',
mediaId: this.fileDataVideo.media.mediaId,
accessUrl: this.formData.fileListVideo[0].url
}
this.formData.fileList.push(info)
}
2022-06-24 23:21:01 +08:00
if (this.formData.fileListFile.length) {
2022-06-13 18:54:17 +08:00
var info = {
contentType: 'file',
mediaId: this.fileDataFile.media.mediaId,
accessUrl: this.formData.fileListFile[0].url
}
this.formData.fileList.push(info)
2022-06-13 17:34:58 +08:00
}
var params = {
2022-06-24 23:21:01 +08:00
...this.form,
2022-06-13 17:34:58 +08:00
...this.formData,
areaId: this.areaIdList.join(','),
2022-06-24 21:47:52 +08:00
deptList: deptList,
2022-06-26 13:23:11 +08:00
messageSource: this.form.sendType == '1' ? '1' : '2'
2022-06-13 17:34:58 +08:00
}
this.$http.post("/app/pushmessage/addOrUpdate", params).then(res => {
if (res?.code == 0) {
this.$u.toast('发送成功')
2022-06-24 21:47:52 +08:00
setTimeout(() => {
uni.navigateBack()
}, 500)
2022-06-24 23:21:01 +08:00
} else {
2022-06-13 17:34:58 +08:00
this.$u.toast(res.msg)
}
}).catch((err) => {
this.$u.toast(err)
})
},
back() {
uni.navigateBack()
}
},
created() {
2022-06-24 20:18:31 +08:00
uni.setStorageSync('sendType', this.form.sendType)
2022-06-13 17:34:58 +08:00
this.areaId = this.user.areaId
this.areaName = this.user.areaName
2022-06-24 20:18:31 +08:00
// uni.$on('selectTag', res => {
// this.tagIdList = res.tagIdList
// this.areaIdList = res.areaIdList
// })
2022-06-13 17:34:58 +08:00
},
2022-06-24 20:18:31 +08:00
onShow() {
this.deptUserTagList = uni.getStorageSync('selectDeptUser')
2022-06-26 13:16:59 +08:00
this.form.sendType = uni.getStorageSync('sendType')
if (!this.form.sendType) {
this.form.sendType = '0'
}
2022-06-24 20:18:31 +08:00
}
2022-06-13 17:34:58 +08:00
}
</script>
<style lang="scss" scoped>
.AppMessageNotification {
height: 100%;
background-color: #f3f6f9;
2022-06-24 23:21:01 +08:00
.fw500 {
2022-06-13 17:34:58 +08:00
font-weight: 500;
2022-06-24 23:21:01 +08:00
font-size: 32px !important;
2022-06-13 17:34:58 +08:00
}
2022-06-24 23:21:01 +08:00
.color-666 {
2022-06-13 17:34:58 +08:00
color: #666;
font-size: 30px;
}
2022-06-24 23:21:01 +08:00
.tips {
2022-06-13 17:34:58 +08:00
font-size: 34px;
2022-06-24 23:21:01 +08:00
color: #f46 !important;
2022-06-13 17:34:58 +08:00
vertical-align: middle;
}
2022-06-24 23:21:01 +08:00
.mar-b32 {
2022-06-13 17:34:58 +08:00
margin-bottom: 32px;
}
2022-06-24 23:21:01 +08:00
.header {
2022-06-13 17:34:58 +08:00
// background-color: #fff;
padding: 32px 32px 20px 32px;
box-sizing: border-box;
margin-bottom: 16px;
2022-06-24 23:21:01 +08:00
p {
2022-06-13 17:34:58 +08:00
line-height: 44px;
margin-bottom: 8px;
word-break: break-all;
font-size: 28px;
color: #666;
}
}
2022-06-24 23:21:01 +08:00
.select-user {
2022-06-13 17:34:58 +08:00
background-color: #fff;
padding: 34px 32px;
display: flex;
justify-content: space-between;
margin-bottom: 16px;
font-size: 30px;
2022-06-24 23:21:01 +08:00
img {
2022-06-13 17:34:58 +08:00
width: 44px;
height: 44px;
vertical-align: middle;
}
2022-06-24 23:21:01 +08:00
.color-999 {
2022-06-13 17:34:58 +08:00
color: #999;
}
2022-06-24 23:21:01 +08:00
.color-1365DD {
2022-06-13 17:34:58 +08:00
color: #1365DD;
}
2022-06-24 23:21:01 +08:00
.label {
2022-06-13 17:34:58 +08:00
width: 160px;
}
2022-06-24 23:21:01 +08:00
.right {
2022-06-13 17:34:58 +08:00
width: calc(100% - 160px);
text-align: right;
}
}
2022-06-24 23:21:01 +08:00
.pad-lr0 {
2022-06-13 17:34:58 +08:00
padding: 0;
margin-bottom: 32px;
}
2022-06-24 23:21:01 +08:00
.content {
2022-06-13 17:34:58 +08:00
padding: 32px;
box-sizing: border-box;
background-color: #fff;
2022-06-24 23:21:01 +08:00
.title {
2022-06-13 17:34:58 +08:00
line-height: 44px;
margin-bottom: 24px;
}
2022-06-24 23:21:01 +08:00
.mini-title {
2022-06-13 17:34:58 +08:00
line-height: 44px;
margin-bottom: 24px;
}
2022-06-24 23:21:01 +08:00
.textarea {
2022-06-13 17:34:58 +08:00
padding: 16px 32px;
box-sizing: border-box;
border: 1px solid #ddd;
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
.hint {
padding: 4px 0 8px 0;
text-align: right;
color: #999;
}
}
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
// .upload{
// padding: 16px 32px;
// line-height: 44px;
// border: 1px solid #ddd;
// border-top: 0;
// .u-icon{
// margin-right: 8px;
// }
// }
2022-06-24 23:21:01 +08:00
.type {
2022-06-13 17:34:58 +08:00
margin-top: 32px;
2022-06-24 23:21:01 +08:00
p {
2022-06-13 17:34:58 +08:00
display: inline-block;
margin-right: 16px;
}
}
2022-06-24 23:21:01 +08:00
.type-content {
2022-06-13 17:34:58 +08:00
margin-top: 32px;
2022-06-24 23:21:01 +08:00
.label {
2022-06-13 17:34:58 +08:00
display: inline-block;
margin-right: 16px;
vertical-align: top;
font-size: 30px;
color: #666;
width: 130px;
}
2022-06-24 23:21:01 +08:00
.value {
2022-06-13 17:34:58 +08:00
width: calc(100% - 130px);
}
2022-06-24 23:21:01 +08:00
.ai-uploader {
2022-06-13 17:34:58 +08:00
display: inline-block;
width: calc(100% - 130px);
}
2022-06-24 23:21:01 +08:00
.flex {
2022-06-13 17:34:58 +08:00
padding: 34px 0;
line-height: 44px;
display: flex;
}
2022-06-24 23:21:01 +08:00
.border-b {
2022-06-13 17:34:58 +08:00
border-bottom: 1px solid #ddd;
}
2022-06-24 23:21:01 +08:00
.flex-label {
.label {
2022-06-13 17:34:58 +08:00
width: 260px;
}
}
}
}
2022-06-24 23:21:01 +08:00
.bg-144 {
2022-06-13 17:34:58 +08:00
height: 144px;
}
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 112px;
line-height: 112px;
background: #fff;
display: flex;
font-size: 36px;
font-family: PingFangSC-Regular, PingFang SC;
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
.confirm {
color: #fff;
background: #1365dd;
}
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
div {
flex: 1;
text-align: center;
color: #333;
}
}
2022-06-24 23:21:01 +08:00
.popup {
2022-06-13 17:34:58 +08:00
padding-top: 32px;
background-color: #f3f6f9;
2022-06-24 23:21:01 +08:00
.item {
2022-06-13 17:34:58 +08:00
display: inline-block;
width: 25%;
text-align: center;
padding: 32px 0;
2022-06-24 23:21:01 +08:00
.icon-bg {
2022-06-13 17:34:58 +08:00
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
background-color: #fff;
margin: 0 auto;
border-radius: 8px;
margin-bottom: 16px;
2022-06-24 23:21:01 +08:00
.u-icon {
2022-06-13 17:34:58 +08:00
margin-top: 20px;
}
}
2022-06-24 23:21:01 +08:00
p {
2022-06-13 17:34:58 +08:00
line-height: 44px;
font-size: 30px;
font-weight: 500;
color: #333;
}
}
}
2022-06-24 23:21:01 +08:00
2022-06-13 17:34:58 +08:00
}
</style>