overseas/pages/plantGrass/plant_release/index.vue

787 lines
21 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view :style="viewColor">
<form @submit="formSubmit" report-submit='true'>
<view class="release_content">
<view>
<view class="release_item">
<view class="photo_count">
<view class="input_photo acea-row row-middle">
<block v-if="tabLength == 2 || tabLength == 3">
<view class="pictrue" v-if="formData.video_link">
<image class="video-bg" mode="widthFix" src="../static/images/video_bg.png"></image>
<view class="videoHover" @click="videoshow">
<view>
<text class="iconfont icon-24gf-play"></text>
</view>
</view>
<text class="video-text">点击可预览视频</text>
<view class="close_btn" @click="deleteLink"><text class="iconfont icon-guanbi4"></text></view>
</view>
<view v-else-if="!formData.video_link&&formData.image.length<=1" class="pictrue acea-row row-center-wrapper row-column add" @click="uploadVideo">
<view><text class='iconfont icon-tianjiashipin'></text></view>
<view class="text">添加视频</view>
</view>
<block v-if="(tabLength == 3 && formData.video_link) || tabLength==2">
<view v-if="formData.image.length < 1" class="pictrue acea-row row-center-wrapper row-column add" @click.stop="clk(1)">
<view><text class='iconfont icon-fengmian'></text></view>
<view class="text">添加图片</view>
</view>
</block>
</block>
<view class="pictrue" v-for="(item, index) in formData.image" :key="index">
<easy-loadimage mode="widthFix" :image-src="item"></easy-loadimage>
<text class="cover_text" v-if="index == 0">封面</text>
<view class="close_btn" @click="DelPic(index)"><text class="iconfont icon-guanbi4"></text></view>
</view>
<!--图文或者图文加视频-->
<block v-if="(tabLength == 1 && !formData.video_link) || (tabLength == 3 && !formData.video_link)">
<view v-if="formData.image.length < 9" class="pictrue acea-row row-center-wrapper row-column add" @click.stop="clk(9)">
<view><text class='iconfont icon-icon25201'></text></view>
<view class="text">添加图片</view>
</view>
</block>
</view>
</view>
<view class="textarea">
<textarea placeholder='分享使用体验和心得,获得更多点赞和关注哦~(1000字以内)' name="comment" placeholder-class='placeholder'v-model="formData.content" maxlength="1000"></textarea>
</view>
</view>
<view class="release_item">
<view class='item acea-row row-between-wrapper'>
<view class='name'><text class="iconfont icon-baobeilianjie"></text>添加宝贝({{productList.length}})</view>
<view class="select">
<view class="select_count" @click.stop="addProduct">
<text v-if="productList.length == 0" class="text">选择商品</text>
<view v-else class="text">
<image class="image" v-for="(item,index) in productList" :key="index" :src="item.image || (item.spu && item.spu.image)"></image>
</view>
<text class="iconfont icon-xiangyou"></text>
</view>
</view>
</view>
<view class='item acea-row row-between-wrapper'>
<view class='name'><text class="iconfont icon-canyuhuati"></text>参与话题</view>
<view class="select">
<view class="select_count" @click="addTopic">
<text v-if="!topicName.topic_name"class="text">选择话题</text>
<text v-else class="text_name" @click.stop="deleteTopic">
<text class="icon">#</text>
<text class="title">{{topicName.topic_name}}</text>
<text class="iconfont icon-guanbi5"></text>
</text>
<text class="iconfont icon-xiangyou"></text>
</view>
</view>
</view>
</view>
</view>
<button class="release_btn button" form-type="submit">发布</button>
</view>
</form>
<!--视频预览弹窗-->
<view v-if="showVideo" class="video-count">
<!--#ifndef APP-PLUS-->
<video id="myVideo" class="videoLink" autoplay loop :src="formData.video_link"></video>
<!--#endif-->
<!--#ifdef APP-PLUS-->
<view v-html="videoHtml"></view>
<!--#endif-->
</view>
<view class='mask' catchtouchmove="true" :hidden='showVideo==false' @click.stop="showVideo=false"></view>
<avatar @upload="doUpload" @getName="getImgName" quality="1" ref="avatar" selWidth="250upx" selHeight="250upx"></avatar>
<!-- 提到的宝贝弹窗 -->
<uni-popup ref="associated" type="bottom">
<associated @close="close" @getProduct="getProduct" :checkedObj="productList"></associated>
</uni-popup>
<!-- 话题弹窗 -->
<uni-popup ref="participateTopic" type="bottom">
<participate-topic @close="close" @getTopic="getTopic"></participate-topic>
</uni-popup>
<!-- 绑定手机号 -->
<uni-popup ref="bindmobile" type="bottom">
<bindmobile @close="closepoup" :isCommuity="true"></bindmobile>
</uni-popup>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import { mapGetters } from "vuex";
import avatar from "@/components/yq-avatar/yq-avatar.vue";
import associated from '../components/associated.vue';
import participateTopic from '../components/participateTopic.vue';
import bindmobile from '@/components/bindmobile.vue';
import {TOKENNAME, HTTP_REQUEST_URL} from '@/config/app.js';
import { toLogin } from '@/libs/login.js';
import {createPlantApi, updatePlantApi, plantDetailApi, orderAssociatePlantApi} from "@/api/community";
import { getUserInfo } from '@/api/user.js';
import { setStorage, getStorage } from '../../../libs/uniApi.js';
import easyLoadimage from '@/components/easy-loadimage/easy-loadimage.vue';
import { configMap } from '@/utils';
import store from '@/store';
export default {
components: {
avatar,
associated,
participateTopic,
bindmobile,
easyLoadimage
},
data() {
return {
formData: {
image: [],
content: "",
topic_id: "",
spu_id: [],
video_link: ''
},
imageSrc: '',
productList: [],
topicName: {},
isUpload: true,
showCd: false,
id: "",
order_id: "",
imgName: "",
upload_max: 50,
uploadUrl: `${HTTP_REQUEST_URL}/api/upload/video`,
tabList: [
{name: '图文', value: 1, icon: 'icon-tuwen'},
{name: '视频', value: 2, icon: 'icon-shipin'},
],
tabActive: 1,
tabLength: 3,
isPlay: false,
videoContext: "",
video_link: "",
showVideo: false,
videoplay: false,
videoContext: '',
};
},
computed: {
...mapGetters(['isLogin', 'viewColor', 'uid']),
...configMap({community_app_switch: [],community_auth:0}),
videoHtml: function() {
return `<video autoplay loop muted controls="controls" width="100%" height="500rpx"><source src="${this.formData.video_link}" type="video/mp4"></video>`;
}
},
watch:{},
mounted() {
// #ifndef APP-PLUS
this.videoContext = uni.createVideoContext('myVideo', this);
// #endif
},
onLoad(options) {
this.id = options.id;
this.order_id = options.order_id;
if(this.community_app_switch.length == 1){
if(this.community_app_switch[0] == 1){ //只显示图文
this.tabLength = 1
}else{
this.tabLength = 2 //只显示视频
}
}else if(this.community_app_switch.length == 0){
this.tabLength = 1
}
if (!this.isLogin) {
toLogin()
}else{
if(this.id){
this.getDetail()
} else {
if(this.tabLength == 2 || this.tabLength == 3){
this.formData.video_link = getStorage('video_link') || ""
console.log(getStorage('imageArr'))
if(this.tabLength == 2){
this.formData.image = getStorage('imageArr')&&getStorage('imageArr').length>0 ? [getStorage('imageArr')[0]] : []
}else{
this.formData.image = getStorage('imageArr') || []
}
}else{
this.formData.image = getStorage('imageArr') || []
}
}
if(this.order_id)this.getOrderGoods()
}
this.videoContext = uni.createVideoContext("myvideo", this);
},
methods: {
/*获取图文详情*/
getDetail(){
let that = this
plantDetailApi(that.id).then(res => {
that.formData = res.data
that.productList = res.data.relevance || []
that.topicName = res.data.topic || {}
}).catch(err => {
return that.$util.Tips({
title: err
});
})
},
/*获取关联订单商品*/
getOrderGoods(){
let that = this
orderAssociatePlantApi(that.order_id).then(res => {
that.productList = res.data || []
that.formData.spu_id = res.data.map(val => val.spu_id)
}).catch(err => {
return that.$util.Tips({
title: err
});
})
},
/*删除话题*/
deleteTopic(){
this.formData.topic = {}
this.topicName = {}
},
deleteLink(){
this.formData.video_link = ""
this.showVideo = false;
setStorage('video_link', "");
},
clk(count) {
let that = this
that.$util.uploadImageOne({url:'upload/image',count:count}, res=> {
if(count == 1){
that.formData.image = [res.data.path];
}else{
let data = []
res.map(item => {
data.push(item)
})
that.formData.image = [...that.formData.image, ...data];
if(that.formData.image.length >= 9)that.formData.image.length=9
}
setStorage('imageArr', that.formData.image);
});
},
doUpload(rsp) {
let that = this
uni.uploadFile({
url: HTTP_REQUEST_URL + '/api/upload/image/field',
filePath: rsp,
name: 'field',
formData: {
'filename': rsp,
'name': that.imgName
},
header: {
// #ifdef MP
"Content-Type": "multipart/form-data",
// #endif
[TOKENNAME]: 'Bearer ' + store.state.app.token
},
success: (uploadFileRes) => {
let imgData = JSON.parse(uploadFileRes.data)
if(imgData.data.path){
that.formData.image.push(imgData.data.path)
uni.hideLoading()
}
},
complete(res) {}
});
},
// 上传视频
uploadVideo() {
let that = this
uni.chooseVideo({
sourceType: ['camera', 'album'],
success: res => {
uni.showLoading({
title: '视频上传中',
});
if (Math.ceil(res.size / 1024) < that.upload_max * 1024) {
uni.uploadFile({
url: that.uploadUrl, //仅为示例,非真实的接口地址
filePath: res.tempFilePath,
name: 'file',
//请求参数
formData: {
user: 'test'
},
header: {
// #ifdef MP
'Content-Type': 'multipart/form-data',
// #endif
[TOKENNAME]: 'Bearer ' + store.state.app.token
},
success: uploadFileRes => {
uni.hideLoading();
let data = JSON.parse(uploadFileRes.data);
that.formData.video_link = (data.data.src);
setStorage('video_link', that.formData.video_link);
},
complete: a => {
uni.hideLoading();
},
fail: function(res) {
uni.hideLoading();
that.Tips({
title: res.message
});
}
});
} else {
uni.hideLoading();
uni.showModal({
title: '提示',
content: `视频超出限制${that.upload_max}MB`
});
}
},
fail: err => {
that.$util.Tips({
title: err
});
}
});
},
getImgName(name){
this.imgName = name
},
/**删除图片*/
DelPic: function(index) {
let that = this
that.formData.image.splice(index, 1);
setStorage('imageArr', that.formData.image);
},
/*添加宝贝*/
addProduct(){
this.$refs.associated.open();
},
/*添加话题*/
addTopic(){
this.$refs.participateTopic.open();
},
close(){
this.$refs.associated.close();
this.$refs.participateTopic.close();
},
/*查看视频*/
videoshow() {
this.showVideo = true
this.videoContext = uni.createVideoContext('myVideo', this);
this.$nextTick(()=>{
this.videoContext.play();
})
},
screenChange(e) {
let fullScreen = e.detail.fullScreen; //值true为进入全屏false为退出全屏
if (!fullScreen) {
this.videoplay = false
//退出全屏 this.videoplay = false; // 隐藏播放盒子
}
},
/*获取选中的宝贝*/
getProduct(data){
this.productList = data;
this.formData.spu_id = data.map(val => val.spu_id)
this.$refs.associated.close();
},
/*获取选中的话题*/
getTopic(item){
if(!item.topic_id){
this.topicName = {}
}else{
this.topicName = item
}
this.formData.topic_id = item.topic_id;
this.$refs.participateTopic.close();
},
/**
* 提交数据
*/
formSubmit: function(e) {
let that = this;
if(that.community_auth == 0){
that.submitData()
}else{
getUserInfo().then(res => {
/*判断是否绑定手机号*/
if(res.data.phone){
that.submitData()
}else{
that.$refs.bindmobile.open()
}
});
}
},
closepoup(){
this.$refs.bindmobile.close()
},
submitData(){
let that = this;
let value = that.formData;
that.tabActive = that.formData.video_link ? 2 :1
if (!that.isLogin) {
toLogin()
}else{
if (value.image.length == 0) return that.$util.Tips({
title: '请添加话题图片'
});
if (!value.content) return that.$util.Tips({
title: '请分享使用心得和体会'
});
if(that.tabLength == 2 && !value.video_link){
return that.$util.Tips({
title: '请添加话题视频'
});
}
if(that.id){
if (value.relevance.length){
value.spu_id = value.relevance.map(val => (val.spu&&val.spu.spu_id) || val.spu_id)
}
}
value.order_id = that.order_id
value.is_type = that.tabActive
uni.showLoading({
title: '保存中',
mask: true
})
that.id ? updatePlantApi(that.id, value).then(res => {
uni.hideLoading()
that.$util.Tips({
title: res.messge,
icon: 'success'
});
setStorage('video_link', "");
setStorage('imageArr', []);
if(that.tabActive == 2){
uni.navigateTo({
//#ifdef APP
url: '/pages/short_video/appSwiper/index?id='+res.data.community_id+'&user=1&uid='+that.uid
//#endif
//#ifndef APP
url: '/pages/short_video/nvueSwiper/index?id='+res.data.community_id+'&user=1&uid='+that.uid
//#endif
});
}else{
uni.redirectTo({
url:'/pages/plantGrass/plant_detail/index?id='+res.data.community_id+'&type='+that.tabActive
})
}
}).catch(err => {
return that.$util.Tips({
title: err
});
}) : createPlantApi(value).then(res => {
uni.hideLoading()
that.$util.Tips({
title: res.messge,
icon: 'success'
});
setStorage('video_link', "");
setStorage('imageArr', []);
if(that.tabActive == 2){
uni.navigateTo({
//#ifdef APP
url: '/pages/short_video/appSwiper/index?id='+res.data.community_id+'&user=1&uid='+that.uid
//#endif
//#ifndef APP
url: '/pages/short_video/nvueSwiper/index?id='+res.data.community_id+'&user=1&uid='+that.uid
//#endif
});
}else{
uni.redirectTo({
url:'/pages/plantGrass/plant_detail/index?id='+res.data.community_id+'&type='+that.tabActive
})
}
}).catch(err => {
return that.$util.Tips({
title: err
});
})
}
}
}
}
</script>
<style lang="scss" scoped>
page{
background: #F5F5F5;
}
.crop_btn{
line-height: 90rpx;
height: 90rpx;
height: calc(90rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
height: calc(90rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
}
.container{
position: fixed;
top: 0;
left: 0;
z-index: 20;
width: 750rpx;
height:100vh;
}
.release_content{
margin: 30rpx 20rpx 0;
.release_tab{
border-radius: 16rpx 16rpx 0 0;
border-bottom: 1rpx solid #E4E4E4;
background: #fff;
align-items: center;
justify-content: center;
height: 86rpx;
.tab_item{
margin: 0 40rpx;
font-size: 32rpx;
color: #999;
position: relative;
line-height: 86rpx;
cursor: pointer;
&.on{
color: #E93323;
&::after{
content: "";
display: inline-block;
width: 100%;
height: 3rpx;
background: #E93323;
position: absolute;
bottom: 2rpx;
left: 0;
}
}
.iconfont{
margin-right: 10rpx;
font-size: 32rpx;
}
}
}
.release_item{
background: #ffffff;
padding: 0 30rpx;
border-radius: 10rpx;
}
.photo_count{
padding: 30rpx 0;
}
}
/deep/.input_photo .easy-loadimage,/deep/.input_photo uni-image,/deep/.input_photo image{
width: 202rpx;
height: 202rpx;
border-radius: 12rpx!important;
}
.input_photo .pictrue{
width: 202rpx;
height: 202rpx;
border-radius: 12rpx!important;
margin-right: 20rpx;
position: relative;
overflow: hidden;
&:nth-child(3n){
margin-right: 0;
}
.close_btn{
width: 30rpx;
height: 30rpx;
background: rgba(0,0,0,.6);
border-radius: 0 12rpx 0 12rpx;
position: absolute;
top: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
.iconfont{
color: #ffffff;
font-size: 12rpx;
}
}
.cover_text{
display: flex;
width: 58rpx;
height: 29rpx;
background: #E93323;
border-radius: 0px 12rpx 0px 12rpx;
position: absolute;
left: 0;
bottom: 0;
z-index: 10;
align-items: center;
justify-content: center;
font-size: 18rpx;
color: #fff;
}
}
/deep/.loading-img{
width: 180rpx;
height: 180rpx;
border-radius: 12rpx;
}
.input_photo .pictrue{
margin-bottom: 20rpx;
.videoHover{
width: 204rpx;
height: 204rpx;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 0;
left: 0;
>view{
width: 50rpx;
height: 50rpx;
background: #000000;
border-radius: 50rpx;
display: flex;
align-items: center;
justify-content: center;
.iconfont{
color: #ffffff;
font-size: 21rpx;
}
}
}
.video-text{
display: block;
width: 180rpx;
text-align: center;
color: #ffffff;
font-size: 18rpx;
z-index: 13;
position: absolute;
bottom: 20rpx;
}
video{
width: 180rpx;
height: 180rpx;
border-radius: 12rpx;
}
}
.input_photo .add{
background: #f6f6f6;
color: #666666;
.iconfont{
font-size: 50rpx;
}
.text{
margin-top: 20rpx;
font-size: 27rpx;
}
}
.textarea textarea {
font-size: 28rpx;
padding-bottom: 38rpx;
width: 100%;
box-sizing: border-box;
height: 400rpx;
overflow: hidden;
}
.textarea .placeholder {
color: #BBBBBB;
}
.release_item .item{
height: 106rpx;
border-bottom: 1rpx solid #eee;
position: relative;
font-size: 30rpx;
&:last-child{
border-bottom: none;
}
.name{
color: #333333;
.iconfont {
margin-right: 10rpx;
font-size: 28rpx;
}
}
.select{
color: #bbbbbb;
.select_count{
display: flex;
align-items: center;
}
.text{
margin-right: 15rpx;
display: flex;
align-items: center;
.image,image,uni-image{
width: 60rpx;
height: 60rpx;
margin-right: 5rpx;
}
}
.iconfont{
font-size: 24rpx;
}
.text_name{
color: var(--view-theme);
padding: 5rpx 12rpx;
background: var(--view-minorColor);
border-radius: 23rpx;
font-size: 24rpx;
margin-right: 10rpx;
.icon{
color: var(--view-theme);
font-weight: bold;
font-size: 24rpx;
}
.title{
margin: 0 10rpx;
}
.iconfont{
font-size: 16rpx;
}
}
}
}
.button{
width: 710rpx;
height: 86rpx;
line-height: 86rpx;
color: #ffffff;
text-align: center;
font-size: 32rpx;
background: var(--view-theme);
border-radius: 43rpx;
}
.release_btn{
margin: 0 auto;
position: fixed;
bottom: 40rpx;
left: 0;
z-index: 80;
left: 20rpx;
}
.video-count{
position: fixed;
width: 600rpx;
height: 500rpx;
top: 50%;
left: 50%;
margin-left: -300rpx;
margin-top: -250rpx;
z-index: 90;
display: flex;
align-items: center;
justify-content: center;
.videoLink{
width: 600rpx;
height: 500rpx;
}
}
.mask{
z-index: 80;
}
</style>