mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
mp:支持 wx-reply 发送图片消息
This commit is contained in:
parent
ec872c702c
commit
29cf770457
@ -94,3 +94,6 @@ export function setTenantId(username) {
|
|||||||
export function removeTenantId() {
|
export function removeTenantId() {
|
||||||
localStorage.removeItem(TenantIdKey)
|
localStorage.removeItem(TenantIdKey)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export class getToken {
|
||||||
|
}
|
||||||
|
@ -81,7 +81,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="msg-send" v-loading="sendLoading">
|
<div class="msg-send" v-loading="sendLoading">
|
||||||
<WxReplySelect :objData="objData"></WxReplySelect>
|
<wx-reply-select :objData="objData" />
|
||||||
<el-button type="success" size="small" class="send-but" @click="sendMsg">发送(S)</el-button>
|
<el-button type="success" size="small" class="send-but" @click="sendMsg">发送(S)</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -95,6 +95,7 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
import WxNews from '@/views/mp/components/wx-news/main.vue';
|
import WxNews from '@/views/mp/components/wx-news/main.vue';
|
||||||
import WxLocation from '@/views/mp/components/wx-location/main.vue';
|
import WxLocation from '@/views/mp/components/wx-location/main.vue';
|
||||||
import WxMusic from '@/views/mp/components/wx-music/main.vue';
|
import WxMusic from '@/views/mp/components/wx-music/main.vue';
|
||||||
|
import {getUser} from "@/api/mp/user";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "wxMsg",
|
name: "wxMsg",
|
||||||
@ -110,7 +111,7 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
userId: {
|
userId: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -126,17 +127,27 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
user: { // 由于微信不再提供昵称,直接使用“用户”展示
|
user: { // 由于微信不再提供昵称,直接使用“用户”展示
|
||||||
nickname: '用户',
|
nickname: '用户',
|
||||||
avatar: require("@/assets/images/profile.jpg"),
|
avatar: require("@/assets/images/profile.jpg"),
|
||||||
|
accountId: 0, // 公众号账号编号
|
||||||
},
|
},
|
||||||
mp: {
|
mp: {
|
||||||
nickname: '公众号',
|
nickname: '公众号',
|
||||||
avatar: require("@/assets/images/wechat.png"),
|
avatar: require("@/assets/images/wechat.png"),
|
||||||
},
|
},
|
||||||
objData:{ // 微信发送消息
|
objData: { // 微信发送消息
|
||||||
repType: 'text'
|
type: 'text',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
// 获得用户信息
|
||||||
|
getUser(this.userId).then(response => {
|
||||||
|
this.user.nickname = response.data.nickname | this.user.nickname;
|
||||||
|
this.user.avatar = response.data.avatar | this.user.avatar;
|
||||||
|
// 设置公众号账号编号
|
||||||
|
this.objData.accountId = response.data.accountId;
|
||||||
|
})
|
||||||
|
|
||||||
|
// 加载消息
|
||||||
this.refreshChange()
|
this.refreshChange()
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
@ -144,7 +155,7 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
if (!this.objData) {
|
if (!this.objData) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this.objData.repType === 'news') {
|
if (this.objData.type === 'news') {
|
||||||
this.objData.content.articles = [this.objData.content.articles[0]]
|
this.objData.content.articles = [this.objData.content.articles[0]]
|
||||||
this.$message({
|
this.$message({
|
||||||
showClose: true,
|
showClose: true,
|
||||||
@ -157,7 +168,6 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
userId: this.userId
|
userId: this.userId
|
||||||
}, {
|
}, {
|
||||||
...this.objData,
|
...this.objData,
|
||||||
type: this.objData.repType,
|
|
||||||
// content: this.objData.repContent,
|
// content: this.objData.repContent,
|
||||||
// TODO 芋艿:临时适配,保证可用
|
// TODO 芋艿:临时适配,保证可用
|
||||||
})).then(response => {
|
})).then(response => {
|
||||||
@ -167,7 +177,8 @@ import {getMessagePage, sendMessage} from '@/api/mp/message'
|
|||||||
this.scrollToBottom()
|
this.scrollToBottom()
|
||||||
// 重置 objData 状态
|
// 重置 objData 状态
|
||||||
this.objData = {
|
this.objData = {
|
||||||
repType: 'text'
|
type: 'text',
|
||||||
|
content: '',
|
||||||
}
|
}
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
this.sendLoading = false
|
this.sendLoading = false
|
||||||
|
@ -1,30 +1,36 @@
|
|||||||
<!--
|
<!--
|
||||||
- Copyright (C) 2018-2019
|
- Copyright (C) 2018-2019
|
||||||
- All rights reserved, Designed By www.joolun.com
|
- All rights reserved, Designed By www.joolun.com
|
||||||
|
芋道源码:
|
||||||
|
① 移除多余的 rep 为前缀的变量,让 message 消息更简单
|
||||||
|
② 代码优化,补充注释,提升阅读性
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<el-tabs type="border-card" v-model="objData.repType" @tab-click="handleClick">
|
<el-tabs type="border-card" v-model="objData.type" @tab-click="handleClick">
|
||||||
<!-- 类型 1:文本 -->
|
<!-- 类型 1:文本 -->
|
||||||
<el-tab-pane name="text">
|
<el-tab-pane name="text">
|
||||||
<span slot="label"><i class="el-icon-document"></i> 文本</span>
|
<span slot="label"><i class="el-icon-document"></i> 文本</span>
|
||||||
<el-input type="textarea" :rows="5" placeholder="请输入内容" v-model="objData.content" />
|
<el-input type="textarea" :rows="5" placeholder="请输入内容" v-model="objData.content" @input="inputContent" />
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
<!-- 类型 2:图片 -->
|
<!-- 类型 2:图片 -->
|
||||||
<el-tab-pane name="image">
|
<el-tab-pane name="image">
|
||||||
<span slot="label"><i class="el-icon-picture"></i> 图片</span>
|
<span slot="label"><i class="el-icon-picture"></i> 图片</span>
|
||||||
<el-row>
|
<el-row>
|
||||||
<div class="select-item" v-if="objData.repUrl">
|
<!-- 情况一:已经选择好素材、或者上传好图片 -->
|
||||||
<img class="material-img" :src="objData.repUrl">
|
<div class="select-item" v-if="objData.url">
|
||||||
<p class="item-name" v-if="objData.repName">{{objData.repName}}</p>
|
<img class="material-img" :src="objData.url">
|
||||||
<el-row class="ope-row">
|
<el-row class="ope-row">
|
||||||
<el-button type="danger" icon="el-icon-delete" circle @click="deleteObj"></el-button>
|
<el-button type="danger" icon="el-icon-delete" circle @click="deleteObj"></el-button>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!objData.repUrl">
|
<!-- 情况二:未做完上述操作 -->
|
||||||
|
<div v-else>
|
||||||
<el-row style="text-align: center">
|
<el-row style="text-align: center">
|
||||||
|
<!-- 选择素材 -->
|
||||||
<el-col :span="12" class="col-select">
|
<el-col :span="12" class="col-select">
|
||||||
<el-button type="success" @click="openMaterial">素材库选择<i class="el-icon-circle-check el-icon--right"></i></el-button>
|
<el-button type="success" @click="openMaterial">素材库选择<i class="el-icon-circle-check el-icon--right"></i></el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<!-- 文件上传 -->
|
||||||
<el-col :span="12" class="col-add">
|
<el-col :span="12" class="col-add">
|
||||||
<el-upload :action="actionUrl" :headers="headers" multiple :limit="1" :file-list="fileList" :data="uploadData"
|
<el-upload :action="actionUrl" :headers="headers" multiple :limit="1" :file-list="fileList" :data="uploadData"
|
||||||
:before-upload="beforeImageUpload" :on-success="handleUploadSuccess">
|
:before-upload="beforeImageUpload" :on-success="handleUploadSuccess">
|
||||||
@ -34,6 +40,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- 点击选择素材,会打开下面的弹窗 -->
|
||||||
<el-dialog title="选择图片" :visible.sync="dialogImageVisible" width="90%" append-to-body>
|
<el-dialog title="选择图片" :visible.sync="dialogImageVisible" width="90%" append-to-body>
|
||||||
<WxMaterialSelect :objData="objData" @selectMaterial="selectMaterial"></WxMaterialSelect>
|
<WxMaterialSelect :objData="objData" @selectMaterial="selectMaterial"></WxMaterialSelect>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@ -82,7 +89,7 @@
|
|||||||
<el-input v-model="objData.repDesc" placeholder="请输入描述"></el-input>
|
<el-input v-model="objData.repDesc" placeholder="请输入描述"></el-input>
|
||||||
<div style="margin: 20px 0;"></div>
|
<div style="margin: 20px 0;"></div>
|
||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<a target="_blank" v-if="objData.repUrl" :href="objData.repUrl"><i class="icon-shipinbofang"> 播放视频</i></a>
|
<a target="_blank" v-if="objData.url" :href="objData.url"><i class="icon-shipinbofang"> 播放视频</i></a>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin: 20px 0;"></div>
|
<div style="margin: 20px 0;"></div>
|
||||||
<div style="text-align: center">
|
<div style="text-align: center">
|
||||||
@ -138,7 +145,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-dialog title="选择图片" :visible.sync="dialogThumbVisible" width="80%" append-to-body>
|
<el-dialog title="选择图片" :visible.sync="dialogThumbVisible" width="80%" append-to-body>
|
||||||
<WxMaterialSelect :objData="{repType:'image'}" @selectMaterial="selectMaterial"></WxMaterialSelect>
|
<WxMaterialSelect :objData="{type:'image'}" @selectMaterial="selectMaterial"></WxMaterialSelect>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="18">
|
<el-col :span="18">
|
||||||
@ -148,7 +155,7 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<div style="margin: 20px 0;"></div>
|
<div style="margin: 20px 0;"></div>
|
||||||
<el-input v-model="objData.repUrl" placeholder="请输入音乐链接"></el-input>
|
<el-input v-model="objData.url" placeholder="请输入音乐链接"></el-input>
|
||||||
<div style="margin: 20px 0;"></div>
|
<div style="margin: 20px 0;"></div>
|
||||||
<el-input v-model="objData.repHqUrl" placeholder="请输入高质量音乐链接"></el-input>
|
<el-input v-model="objData.repHqUrl" placeholder="请输入高质量音乐链接"></el-input>
|
||||||
</el-tab-pane>
|
</el-tab-pane>
|
||||||
@ -160,7 +167,7 @@
|
|||||||
import WxNews from '@/views/mp/components/wx-news/main.vue'
|
import WxNews from '@/views/mp/components/wx-news/main.vue'
|
||||||
// import WxMaterialSelect from '@/components/wx-material-select/main.vue'
|
// import WxMaterialSelect from '@/components/wx-material-select/main.vue'
|
||||||
import WxVoicePlayer from '@/views/mp/components/wx-voice-play/main.vue';
|
import WxVoicePlayer from '@/views/mp/components/wx-voice-play/main.vue';
|
||||||
import { getToken } from '@/utils/auth'
|
import {getAccessToken, getToken} from '@/utils/auth'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "wxReplySelect",
|
name: "wxReplySelect",
|
||||||
@ -170,11 +177,11 @@
|
|||||||
WxVoicePlayer
|
WxVoicePlayer
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
objData:{
|
objData: { // 消息对象。
|
||||||
type: Object
|
type: Object, // 设置为 Object 的原因,方便属性的传递
|
||||||
|
required: true,
|
||||||
},
|
},
|
||||||
// 图文类型:1、已发布图文;2、草稿箱图文
|
newsType:{ // 图文类型:1、已发布图文;2、草稿箱图文
|
||||||
newsType:{
|
|
||||||
type: String,
|
type: String,
|
||||||
default: "1"
|
default: "1"
|
||||||
},
|
},
|
||||||
@ -193,124 +200,176 @@
|
|||||||
descs:[]//降序字段
|
descs:[]//降序字段
|
||||||
},
|
},
|
||||||
tableLoading: false,
|
tableLoading: false,
|
||||||
dialogNewsVisible:false,
|
|
||||||
dialogImageVisible:false,
|
tempObj: new Map().set( // 临时缓存,切换消息类型的 tab 的时候,可以保存对应的数据;
|
||||||
dialogVoiceVisible:false,
|
this.objData.type, // 消息类型
|
||||||
dialogVideoVisible:false,
|
Object.assign({}, this.objData)), // 消息内容
|
||||||
dialogThumbVisible:false,
|
|
||||||
tempObj: new Map().set(this.objData.repType,Object.assign({},this.objData)),
|
// ========== 素材选择的弹窗,是否可见 ==========
|
||||||
fileList:[],
|
dialogNewsVisible: false, // 图文
|
||||||
uploadData:{
|
dialogImageVisible: false, // 图片
|
||||||
"mediaType":this.objData.repType,
|
dialogVoiceVisible: false, // 语音
|
||||||
|
dialogVideoVisible: false, // 视频
|
||||||
|
dialogThumbVisible: false, // 缩略图
|
||||||
|
|
||||||
|
// ========== 文件上传(图片、语音、视频) ==========
|
||||||
|
fileList: [], // 文件列表
|
||||||
|
uploadData: {
|
||||||
|
"accountId": undefined,
|
||||||
|
"type": this.objData.type,
|
||||||
"title":'',
|
"title":'',
|
||||||
"introduction":''
|
"introduction":''
|
||||||
},
|
},
|
||||||
actionUrl: process.env.VUE_APP_BASE_API +'/wxmaterial/materialFileUpload',
|
actionUrl: process.env.VUE_APP_BASE_API +'/admin-api/mp/material/upload-temporary',
|
||||||
headers: {
|
headers: { Authorization: "Bearer " + getAccessToken() }, // 设置上传的请求头部
|
||||||
Authorization: 'Bearer ' + getToken()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
beforeThumbImageUpload(file){
|
beforeThumbImageUpload(file){
|
||||||
const isType = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/gif' || file.type === 'image/bmp' || file.type === 'image/jpg';
|
const isType = file.type === 'image/jpeg'
|
||||||
const isLt = file.size / 1024 / 1024 < 2;
|
|| file.type === 'image/png'
|
||||||
|
|| file.type === 'image/gif'
|
||||||
|
|| file.type === 'image/bmp'
|
||||||
|
|| file.type === 'image/jpg';
|
||||||
if (!isType) {
|
if (!isType) {
|
||||||
this.$message.error('上传图片格式不对!');
|
this.$message.error('上传图片格式不对!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
const isLt = file.size / 1024 / 1024 < 2;
|
||||||
if (!isLt) {
|
if (!isLt) {
|
||||||
this.$message.error('上传图片大小不能超过2M!');
|
this.$message.error('上传图片大小不能超过 2M!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return isType && isLt;
|
this.uploadData.accountId = this.objData.accountId;
|
||||||
},
|
return true;
|
||||||
deleteObj(){
|
|
||||||
this.$delete(this.objData,'repName')
|
|
||||||
this.$delete(this.objData,'repUrl')
|
|
||||||
this.$delete(this.objData,'content')
|
|
||||||
},
|
},
|
||||||
beforeVoiceUpload(file){
|
beforeVoiceUpload(file){
|
||||||
this.tableLoading = true
|
this.tableLoading = true
|
||||||
const isType = file.type === 'audio/mp3' || file.type === 'audio/wma' || file.type === 'audio/wav' || file.type === 'audio/amr';
|
// 校验格式
|
||||||
const isLt = file.size / 1024 / 1024 < 2;
|
const isType = file.type === 'audio/mp3'
|
||||||
|
|| file.type === 'audio/wma'
|
||||||
|
|| file.type === 'audio/wav'
|
||||||
|
|| file.type === 'audio/amr';
|
||||||
if (!isType) {
|
if (!isType) {
|
||||||
this.$message.error('上传语音格式不对!');
|
this.$message.error('上传语音格式不对!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
// 校验大小
|
||||||
|
const isLt = file.size / 1024 / 1024 < 2;
|
||||||
if (!isLt) {
|
if (!isLt) {
|
||||||
this.$message.error('上传语音大小不能超过2M!');
|
this.$message.error('上传语音大小不能超过 2M!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return isType && isLt;
|
this.uploadData.accountId = this.objData.accountId;
|
||||||
|
return true;
|
||||||
},
|
},
|
||||||
beforeImageUpload(file){
|
beforeImageUpload(file){
|
||||||
const isType = file.type === 'image/jpeg' || file.type === 'image/png' || file.type === 'image/gif' || file.type === 'image/bmp' || file.type === 'image/jpg';
|
// 校验格式
|
||||||
const isLt = file.size / 1024 / 1024 < 2;
|
const isType = file.type === 'image/jpeg'
|
||||||
|
|| file.type === 'image/png'
|
||||||
|
|| file.type === 'image/gif'
|
||||||
|
|| file.type === 'image/bmp'
|
||||||
|
|| file.type === 'image/jpg';
|
||||||
if (!isType) {
|
if (!isType) {
|
||||||
this.$message.error('上传图片格式不对!');
|
this.$message.error('上传图片格式不对!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
// 校验大小
|
||||||
|
const isLt = file.size / 1024 / 1024 < 2;
|
||||||
if (!isLt) {
|
if (!isLt) {
|
||||||
this.$message.error('上传图片大小不能超过2M!');
|
this.$message.error('上传图片大小不能超过 2M!');
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
return isType && isLt;
|
this.uploadData.accountId = this.objData.accountId;
|
||||||
|
return true;
|
||||||
},
|
},
|
||||||
handleUploadSuccess(response, file, fileList){
|
handleUploadSuccess(response, file, fileList) {
|
||||||
if(response.code == 200){
|
if (response.code !== 0) {
|
||||||
this.fileList = []
|
|
||||||
this.uploadData.title = ''
|
|
||||||
this.uploadData.introduction = ''
|
|
||||||
let item = response.data
|
|
||||||
this.selectMaterial(item)
|
|
||||||
}else{
|
|
||||||
this.$message.error('上传出错:' + response.msg)
|
this.$message.error('上传出错:' + response.msg)
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
},
|
|
||||||
handleClick(tab, event){
|
|
||||||
this.uploadData.mediaType = this.objData.repType
|
|
||||||
let tempObjItem = this.tempObj.get(this.objData.repType)
|
|
||||||
if(tempObjItem){
|
|
||||||
this.objData.repName = tempObjItem.repName ? tempObjItem.repName : null
|
|
||||||
this.objData.repMediaId = tempObjItem.repMediaId ? tempObjItem.repMediaId : null
|
|
||||||
this.objData.media_id = tempObjItem.media_id ? tempObjItem.media_id : null
|
|
||||||
this.objData.repUrl = tempObjItem.repUrl ? tempObjItem.repUrl : null
|
|
||||||
this.objData.content = tempObjItem.content ? tempObjItem.content : null
|
|
||||||
this.objData.repDesc = tempObjItem.repDesc ? tempObjItem.repDesc : null
|
|
||||||
}else{
|
|
||||||
this.$delete(this.objData,'repName')
|
|
||||||
this.$delete(this.objData,'repMediaId')
|
|
||||||
this.$delete(this.objData,'media_id')
|
|
||||||
this.$delete(this.objData,'repUrl')
|
|
||||||
this.$delete(this.objData,'content')
|
|
||||||
this.$delete(this.objData,'repDesc')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
selectMaterial(item){
|
|
||||||
let tempObjItem = {}
|
|
||||||
tempObjItem.repType = this.objData.repType
|
|
||||||
tempObjItem.repMediaId = item.mediaId
|
|
||||||
tempObjItem.media_id = item.mediaId
|
|
||||||
tempObjItem.content = item.content
|
|
||||||
|
|
||||||
this.dialogNewsVisible = false
|
// 清空上传时的各种数据
|
||||||
this.dialogImageVisible = false
|
this.fileList = []
|
||||||
this.dialogVoiceVisible = false
|
this.uploadData.title = ''
|
||||||
this.dialogVideoVisible = false
|
this.uploadData.introduction = ''
|
||||||
this.objData.repMediaId = item.mediaId
|
|
||||||
this.objData.media_id = item.mediaId
|
// 上传好的文件,本质是个素材,所以可以进行选中
|
||||||
|
let item = response.data
|
||||||
|
this.selectMaterial(item)
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 切换消息类型的 tab
|
||||||
|
*
|
||||||
|
* @param tab tab
|
||||||
|
*/
|
||||||
|
handleClick(tab) {
|
||||||
|
// 设置后续文件上传的文件类型
|
||||||
|
this.uploadData.type = this.objData.type;
|
||||||
|
if (this.uploadData.type === 'music') { // 【音乐】上传的是缩略图
|
||||||
|
this.uploadData.type = 'thumb';
|
||||||
|
}
|
||||||
|
|
||||||
|
// 从 tempObj 临时缓存中,获取对应的数据,并设置回 objData
|
||||||
|
let tempObjItem = this.tempObj.get(this.objData.type)
|
||||||
|
// console.log(this.objData.type)
|
||||||
|
// console.log(tempObjItem)
|
||||||
|
console.log(this.objData)
|
||||||
|
// console.log(this.tempObj)
|
||||||
|
if (tempObjItem) {
|
||||||
|
this.objData.content = tempObjItem.content ? tempObjItem.content : null
|
||||||
|
this.objData.mediaId = tempObjItem.mediaId ? tempObjItem.mediaId : null
|
||||||
|
this.objData.url = tempObjItem.url ? tempObjItem.url : null
|
||||||
|
|
||||||
|
// TODO 芋艿:临时注释掉,看看有没用
|
||||||
|
// this.objData.repName = tempObjItem.repName ? tempObjItem.repName : null
|
||||||
|
// this.objData.repMediaId = tempObjItem.repMediaId ? tempObjItem.repMediaId : null
|
||||||
|
// this.objData.repDesc = tempObjItem.repDesc ? tempObjItem.repDesc : null
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 如果获取不到,需要把 objData 复原
|
||||||
|
this.objData.mediaId = undefined;
|
||||||
|
this.objData.content = undefined;
|
||||||
|
// this.$delete(this.objData,'repName')
|
||||||
|
// this.$delete(this.objData,'repMediaId')
|
||||||
|
// this.$delete(this.objData,'mediaId')
|
||||||
|
// this.$delete(this.objData,'url')
|
||||||
|
// this.$delete(this.objData,'content') // TODO 芋艿:貌似删除了,文本无法输入
|
||||||
|
// this.$delete(this.objData,'repDesc')
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 选择素材,将设置设置到 objData 变量
|
||||||
|
*
|
||||||
|
* @param item 素材
|
||||||
|
*/
|
||||||
|
selectMaterial(item) {
|
||||||
|
// 选择好素材,所以隐藏弹窗
|
||||||
|
this.closeMaterial();
|
||||||
|
|
||||||
|
// 创建 tempObjItem 对象,并设置对应的值
|
||||||
|
let tempObjItem = {}
|
||||||
|
tempObjItem.type = this.objData.type
|
||||||
|
tempObjItem.mediaId = item.mediaId
|
||||||
|
// tempObjItem.repMediaId = item.mediaId // TODO 芋艿:应该可以注释吧?
|
||||||
|
// tempObjItem.content = item.content // TODO 芋艿:应该可以注释吧?
|
||||||
|
|
||||||
|
// this.objData.repMediaId = item.mediaId
|
||||||
|
this.objData.mediaId = item.mediaId
|
||||||
this.objData.content = item.content
|
this.objData.content = item.content
|
||||||
if(this.objData.repType == 'music'){
|
if (this.objData.type === 'music') {
|
||||||
tempObjItem.repThumbMediaId = item.mediaId
|
tempObjItem.repThumbMediaId = item.mediaId
|
||||||
tempObjItem.repThumbUrl = item.url
|
tempObjItem.repThumbUrl = item.url
|
||||||
this.objData.repThumbMediaId = item.mediaId
|
this.objData.repThumbMediaId = item.mediaId
|
||||||
this.objData.repThumbUrl = item.url
|
this.objData.repThumbUrl = item.url
|
||||||
this.dialogThumbVisible = false
|
this.dialogThumbVisible = false // TODO 芋艿:这里为什么单独写???
|
||||||
}else{
|
} else{
|
||||||
tempObjItem.repName = item.name
|
// tempObjItem.repName = item.name
|
||||||
tempObjItem.repUrl = item.url
|
// tempObjItem.url = item.url
|
||||||
this.objData.repName = item.name
|
// this.objData.repName = item.name
|
||||||
this.objData.repUrl = item.url
|
this.objData.mediaId = item.mediaId
|
||||||
|
this.objData.url = item.url
|
||||||
}
|
}
|
||||||
if(this.objData.repType == 'video'){
|
if(this.objData.type == 'video'){
|
||||||
// getMaterialVideo({
|
// getMaterialVideo({
|
||||||
// mediaId:item.mediaId
|
// mediaId:item.mediaId
|
||||||
// }).then(response => {
|
// }).then(response => {
|
||||||
@ -318,33 +377,54 @@
|
|||||||
// let data = response.data
|
// let data = response.data
|
||||||
// this.$set(this.objData,'repName',data.title)
|
// this.$set(this.objData,'repName',data.title)
|
||||||
// this.$set(this.objData,'repDesc',data.description)
|
// this.$set(this.objData,'repDesc',data.description)
|
||||||
// this.$set(this.objData,'repUrl',data.downUrl)
|
// this.$set(this.objData,'url',data.downUrl)
|
||||||
// tempObjItem.repDesc = data.description
|
// tempObjItem.repDesc = data.description
|
||||||
// tempObjItem.repUrl = data.downUrl
|
// tempObjItem.url = data.downUrl
|
||||||
// }
|
// }
|
||||||
// })
|
// })
|
||||||
}
|
}
|
||||||
this.tempObj.set(this.objData.repType,tempObjItem)
|
// 最终设置到临时缓存
|
||||||
|
this.tempObj.set(this.objData.type, tempObjItem)
|
||||||
},
|
},
|
||||||
openMaterial(){
|
openMaterial() {
|
||||||
if(this.objData.repType == 'news'){
|
if (this.objData.type === 'news') {
|
||||||
this.dialogNewsVisible = true
|
this.dialogNewsVisible = true
|
||||||
}else if(this.objData.repType == 'image'){
|
} else if(this.objData.type === 'image') {
|
||||||
this.dialogImageVisible = true
|
this.dialogImageVisible = true
|
||||||
}else if(this.objData.repType == 'voice'){
|
} else if(this.objData.type === 'voice') {
|
||||||
this.dialogVoiceVisible = true
|
this.dialogVoiceVisible = true
|
||||||
}else if(this.objData.repType == 'video'){
|
} else if(this.objData.type === 'video') {
|
||||||
this.dialogVideoVisible = true
|
this.dialogVideoVisible = true
|
||||||
}else if(this.objData.repType == 'music'){
|
} else if(this.objData.type === 'music') {
|
||||||
this.dialogThumbVisible = true
|
this.dialogThumbVisible = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
closeMaterial() {
|
||||||
|
this.dialogNewsVisible = false
|
||||||
|
this.dialogImageVisible = false
|
||||||
|
this.dialogVoiceVisible = false
|
||||||
|
this.dialogVideoVisible = false
|
||||||
|
},
|
||||||
|
deleteObj() {
|
||||||
|
if (this.objData.type === 'news') {
|
||||||
|
// TODO 芋艿,待实现
|
||||||
|
} else if(this.objData.type === 'image') {
|
||||||
|
this.$delete(this.objData, 'url')
|
||||||
|
this.$delete(this.objData, 'mediaId')
|
||||||
|
} else if(this.objData.type === 'voice') {
|
||||||
|
// TODO 芋艿,待实现
|
||||||
|
} else if(this.objData.type === 'video') {
|
||||||
|
// TODO 芋艿,待实现
|
||||||
|
} else if(this.objData.type === 'music') {
|
||||||
|
// TODO 芋艿,待实现
|
||||||
|
}
|
||||||
|
},
|
||||||
getPage(page, params) {
|
getPage(page, params) {
|
||||||
this.tableLoading = true
|
this.tableLoading = true
|
||||||
// getPage(Object.assign({
|
// getPage(Object.assign({
|
||||||
// current: page.currentPage,
|
// current: page.currentPage,
|
||||||
// size: page.pageSize,
|
// size: page.pageSize,
|
||||||
// type:this.objData.repType
|
// type:this.objData.type
|
||||||
// }, params)).then(response => {
|
// }, params)).then(response => {
|
||||||
// this.tableData = response.data.items
|
// this.tableData = response.data.items
|
||||||
// this.page.total = response.data.totalCount
|
// this.page.total = response.data.totalCount
|
||||||
@ -357,6 +437,15 @@
|
|||||||
this.page.currentPage = 1
|
this.page.currentPage = 1
|
||||||
this.page.pageSize = val
|
this.page.pageSize = val
|
||||||
this.getPage(this.page)
|
this.getPage(this.page)
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 输入时,缓存每次 objData 到 tempObj 中
|
||||||
|
*
|
||||||
|
* why?不确定为什么 v-model="objData.content" 不能自动缓存,所以通过这样的方式
|
||||||
|
*/
|
||||||
|
inputContent() {
|
||||||
|
let tempObjItem = {...this.objData};
|
||||||
|
this.tempObj.set(this.objData.type, tempObjItem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user