2020-06-12 09:42:23 +00:00
|
|
|
|
<template>
|
2020-08-13 03:32:40 +00:00
|
|
|
|
<view id="release" >
|
2020-06-12 09:42:23 +00:00
|
|
|
|
<u-form :model="form" ref="uForm">
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<u-form-item label="标题" label-position="right"><u-input v-model="form.name" placeholder="请输入标题" /></u-form-item>
|
2020-08-28 06:51:35 +00:00
|
|
|
|
<view class="titles">封面<text>(建议图片尺寸为334*334)</text></view>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<u-upload
|
|
|
|
|
:form-data="coverformdata"
|
|
|
|
|
:max-count="1"
|
|
|
|
|
:header="header"
|
|
|
|
|
name="article_cover"
|
|
|
|
|
:action="action"
|
|
|
|
|
del-color="#ececec"
|
|
|
|
|
upload-text="选择图片"
|
|
|
|
|
del-bg-color="#fff"
|
|
|
|
|
:file-list="fileListA"
|
|
|
|
|
@on-success="uploadcover"
|
|
|
|
|
></u-upload>
|
2020-08-28 06:51:35 +00:00
|
|
|
|
<view class="titles">视频<text>(建议视频时长在5分钟内,视频大小不超过100M)</text></view>
|
2020-08-14 04:17:28 +00:00
|
|
|
|
<view class="videobox video-flex" v-if="videostate == false" @click="uploadvideo">
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<u-icon name="plus" class="u-add-btn" size="40"></u-icon>
|
|
|
|
|
<view class="videotext">选择视频</view>
|
|
|
|
|
</view>
|
2020-08-14 04:17:28 +00:00
|
|
|
|
<view class="videobox" v-else @click="uploadvideo">
|
|
|
|
|
<video v-if="!is_video" :src="videopath" controls></video>
|
|
|
|
|
<view v-else class="video-mode">
|
|
|
|
|
<image src="../../static/videoPlay.png" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<!-- 标签 -->
|
|
|
|
|
<view>
|
2020-08-14 04:17:28 +00:00
|
|
|
|
<view class="titles flex-title">
|
|
|
|
|
<text>标签</text>
|
|
|
|
|
<text @click="editing">{{ is_edit ? "取消编辑" : "编辑" }}</text>
|
|
|
|
|
</view>
|
2020-08-10 02:01:10 +00:00
|
|
|
|
<view class="form-view active" @click="show_add()">+ 新建标签</view>
|
2020-08-12 07:17:48 +00:00
|
|
|
|
<view :class="['form-view', item.state == true ? 'active' : '']" v-for="(item, index) in fileListes" :key="index" @click="changeselect(index)">
|
2020-08-19 11:26:54 +00:00
|
|
|
|
{{ item.name }}
|
2020-08-14 04:17:28 +00:00
|
|
|
|
<u-icon v-show="is_edit && item.user_id != 0" class="close" name="close" color="#666" size="18" @click="isTable(item.id,index)"></u-icon>
|
2020-06-12 09:42:23 +00:00
|
|
|
|
</view>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
</view>
|
|
|
|
|
<!-- 简介 -->
|
|
|
|
|
<view class="titles">正文</view>
|
|
|
|
|
<view class="titles_border"><textarea placeholder="请输入内容..." v-model="form.intro"></textarea></view>
|
2020-07-30 11:49:12 +00:00
|
|
|
|
<view class="show_two">
|
2020-09-19 12:02:43 +00:00
|
|
|
|
<u-popup v-model="show_two" mode="bottom" @close="closeGood" :closeable="true">
|
2020-07-30 11:49:12 +00:00
|
|
|
|
<view class="title"><text>选择商品</text></view>
|
|
|
|
|
<!-- 商品列表 -->
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll">
|
2020-08-10 12:24:58 +00:00
|
|
|
|
<view class="listes_shoping" v-for="(item, index) in list" :key="index">
|
2020-07-30 11:49:12 +00:00
|
|
|
|
<view>
|
|
|
|
|
<u-checkbox-group>
|
2020-08-12 07:17:48 +00:00
|
|
|
|
<u-checkbox shape="circle" size="40" active-color="#FF780F" v-model="item.checked" :name="index" @change="checkboxChange"></u-checkbox>
|
2020-07-30 11:49:12 +00:00
|
|
|
|
</u-checkbox-group>
|
|
|
|
|
</view>
|
|
|
|
|
<view><image :src="item.goods_image" mode="widthFix"></image></view>
|
|
|
|
|
<view class="contentes">{{ item.goods_name }}</view>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
|
|
|
|
|
<!-- 提交按钮 -->
|
|
|
|
|
<view class="u-button" @click="changes()">确定</view>
|
|
|
|
|
</u-popup>
|
|
|
|
|
<!-- 底部选择商品列表 -->
|
2020-09-19 12:02:43 +00:00
|
|
|
|
<view @click="selectGoods" v-if="userinfo.role != 4">
|
2020-07-30 11:49:12 +00:00
|
|
|
|
选择商品
|
|
|
|
|
<image class="images" src="../../static/image/tosign/bhottom.png"></image>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 选择后的列表 -->
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<view class="List_tosign" v-for="list in shoplist">
|
|
|
|
|
<view><image :src="list.goods_image" mode="scaleToFill"></image></view>
|
|
|
|
|
<view>{{ list.goods_name }}</view>
|
|
|
|
|
<view><image src="../../static/image/tosign/delete.png" mode="widthFix" @click="delarr(list.goods_id)"></image></view>
|
2020-07-30 11:49:12 +00:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
<!-- 提交 -->
|
2020-08-13 03:32:40 +00:00
|
|
|
|
<u-button class="custom-style" shape="circle" size="default" :hair-line="false" @click="publish">发表</u-button>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
</u-form>
|
|
|
|
|
<!-- 添加标签的按钮 -->
|
|
|
|
|
<u-popup v-model="show" mode="center" border-radius="14" :closeable="true">
|
|
|
|
|
<view class="text">创建属于你的标签吧</view>
|
|
|
|
|
<view class="u-inputes"><u-input v-model="tagcontent" /></view>
|
2020-08-13 03:32:40 +00:00
|
|
|
|
<u-button :hair-line="false" class="custom-style-button" shape="circle" size="default" @click="addLiveSpec">确定</u-button>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
</u-popup>
|
|
|
|
|
<u-toast ref="uToast" />
|
2020-06-12 09:42:23 +00:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-08-12 07:17:48 +00:00
|
|
|
|
let COS = require('../../common/cos-wx-sdk-v5.js');
|
|
|
|
|
// 上传文件
|
|
|
|
|
const upload_file_server = (_this, filepath) => {
|
|
|
|
|
// 腾讯云配置
|
|
|
|
|
let cosConfig = {
|
2020-11-09 01:47:18 +00:00
|
|
|
|
Bucket: 'dmmall-1302895943', //replace with yours
|
2020-08-12 07:17:48 +00:00
|
|
|
|
Region: 'ap-shanghai', //replace with yours
|
2020-11-09 01:47:18 +00:00
|
|
|
|
SecretId: 'AKID7z1lFeo0tV9YmmvZ52mrxlNmvqHTcuCF', //replace with yours
|
|
|
|
|
SecretKey: 'd3zTJ0RFwMYVE7jAMJzQ4UbS4YmmJiPq' //replace with yours
|
2020-08-12 07:17:48 +00:00
|
|
|
|
};
|
2020-11-09 01:47:18 +00:00
|
|
|
|
// 腾讯云配置
|
|
|
|
|
// let cosConfig = {
|
|
|
|
|
// Bucket: 'dmmall-1300406074', //replace with yours
|
|
|
|
|
// Region: 'ap-shanghai', //replace with yours
|
|
|
|
|
// SecretId: 'AKIDjDPJhni9gTzEB9iGNWQ3PTVGjv74q7EL', //replace with yours
|
|
|
|
|
// SecretKey: 'ye3SZOvAQO5X5LK3Vy933h6G86h4mqpG' //replace with yours
|
|
|
|
|
// };
|
2020-08-12 07:17:48 +00:00
|
|
|
|
// 获取本地文件
|
|
|
|
|
let filePath = filepath;
|
|
|
|
|
// 自定义文件名以及路径
|
|
|
|
|
let time = new Date();
|
|
|
|
|
var y = time.getFullYear();
|
|
|
|
|
var m = time.getMonth() + 1;
|
|
|
|
|
m = m < 10 ? '0' + m : m;
|
|
|
|
|
var d = time.getDate();
|
|
|
|
|
d = d < 10 ? '0' + d : d;
|
|
|
|
|
let str = y + m + d;
|
|
|
|
|
let Key = 'video/' + str + '/' + filePath.substr(filePath.lastIndexOf('/') + 1);
|
|
|
|
|
// 初始化凭证
|
|
|
|
|
var cos = new COS({
|
|
|
|
|
SecretId: cosConfig.SecretId,
|
|
|
|
|
SecretKey: cosConfig.SecretKey
|
|
|
|
|
});
|
|
|
|
|
//上传文件
|
|
|
|
|
cos.postObject(
|
|
|
|
|
{
|
|
|
|
|
Bucket: cosConfig.Bucket,
|
|
|
|
|
Region: cosConfig.Region,
|
|
|
|
|
Key: Key,
|
|
|
|
|
StorgeClass: 'STANDARD', //存储方式
|
|
|
|
|
FilePath: filePath
|
|
|
|
|
},
|
|
|
|
|
(err, data) => {
|
|
|
|
|
console.log(err, data, 12345);
|
|
|
|
|
if (err == null) {
|
|
|
|
|
if (data.statusCode == 200) {
|
2020-11-09 01:47:18 +00:00
|
|
|
|
_this.videopath = 'https://dmmall-1302895943.cos.ap-shanghai.myqcloud.com/' + Key;
|
2020-08-12 07:17:48 +00:00
|
|
|
|
uni.hideLoading();
|
|
|
|
|
_this.videostate = true;
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '上传失败!',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
// 选择图片(通用)
|
|
|
|
|
const cImage = _this => {
|
|
|
|
|
uni.chooseVideo({
|
|
|
|
|
count: 1,
|
|
|
|
|
sourceType: ['camera', 'album'],
|
|
|
|
|
success: function(res) {
|
2020-09-19 12:02:43 +00:00
|
|
|
|
// _this.is_video = true;
|
2020-08-12 07:17:48 +00:00
|
|
|
|
uni.showLoading({
|
|
|
|
|
title: '上传中'
|
|
|
|
|
});
|
|
|
|
|
const tempFilePaths = res.tempFilePath;
|
|
|
|
|
console.log(tempFilePaths);
|
|
|
|
|
upload_file_server(_this, tempFilePaths);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
2020-08-05 09:42:06 +00:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
form: {
|
|
|
|
|
name: '',
|
|
|
|
|
intro: '',
|
|
|
|
|
sex: ''
|
|
|
|
|
},
|
|
|
|
|
coverformdata: {
|
|
|
|
|
name: 'article_cover'
|
2020-06-12 09:42:23 +00:00
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
header: {
|
|
|
|
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
2020-07-30 11:49:12 +00:00
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
// 演示地址,请勿直接使用
|
2020-08-18 07:31:03 +00:00
|
|
|
|
action: 'https://mall.dmygkeji.com/storeapi/Upload/uploadFile',
|
2020-08-05 09:42:06 +00:00
|
|
|
|
fileListA: [],
|
|
|
|
|
imgarrA: [],
|
|
|
|
|
videopath: '', //视频链接
|
|
|
|
|
fileListes: [],
|
|
|
|
|
show: false,
|
2020-08-14 04:17:28 +00:00
|
|
|
|
is_video: false,
|
2020-08-05 09:42:06 +00:00
|
|
|
|
show_two: false,
|
|
|
|
|
arres_list: [],
|
|
|
|
|
shoplist: [], //选择商品列表
|
|
|
|
|
list: [],
|
|
|
|
|
scrollTop: 0,
|
|
|
|
|
selectarr: [], //选中标签
|
|
|
|
|
tagcontent: '', //新建标签名字
|
|
|
|
|
selectvideo: '', //视频名字
|
2020-08-11 12:37:54 +00:00
|
|
|
|
videostate: false, //视频状态
|
2020-08-14 04:17:28 +00:00
|
|
|
|
progress: 0,
|
2020-08-28 07:48:12 +00:00
|
|
|
|
is_edit: false, // 编辑标签
|
|
|
|
|
userinfo:{}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
2020-08-28 07:48:12 +00:00
|
|
|
|
this.userinfo = uni.getStorageSync("userinfo")
|
2020-08-05 09:42:06 +00:00
|
|
|
|
this.getLiveSpec();
|
|
|
|
|
this.resetgood();
|
|
|
|
|
},
|
2020-08-14 04:17:28 +00:00
|
|
|
|
watch: {
|
|
|
|
|
show() {
|
|
|
|
|
let me = this;
|
|
|
|
|
if (this.show) {
|
|
|
|
|
this.is_video = true;
|
|
|
|
|
} else {
|
|
|
|
|
setTimeout(function() {
|
|
|
|
|
me.is_video = false;
|
|
|
|
|
},600)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
immediate: true
|
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
methods: {
|
|
|
|
|
// 获取可以推荐的商品
|
|
|
|
|
resetgood() {
|
|
|
|
|
this.$u.api.canselectgood({}).then(res => {
|
|
|
|
|
if (res.data.live_stataes == 0) {
|
|
|
|
|
this.$u.route({
|
|
|
|
|
url: `/pages/${url}`
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
let arr = res.data.list;
|
|
|
|
|
for (let index in arr) {
|
|
|
|
|
arr[index].checked = false;
|
2020-07-30 11:49:12 +00:00
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
this.list = arr;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 发布短视频
|
|
|
|
|
publish() {
|
|
|
|
|
this.$u.api.publishvideo({
|
|
|
|
|
article_title: this.form.name,
|
|
|
|
|
article_content: this.form.intro,
|
|
|
|
|
article_pic: this.imgarrA[0].file_name,
|
|
|
|
|
video_path: this.videopath,
|
|
|
|
|
goods_id_arr: this.arres_list,
|
|
|
|
|
label_arr: this.selectarr
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.errCode != 0) {
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'error'
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-05 09:42:06 +00:00
|
|
|
|
} else {
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'success'
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-12 07:17:48 +00:00
|
|
|
|
setTimeout(function() {
|
2020-08-05 09:42:06 +00:00
|
|
|
|
uni.navigateBack({
|
2020-08-12 07:17:48 +00:00
|
|
|
|
delta: 1
|
|
|
|
|
});
|
|
|
|
|
}, 1000);
|
2020-08-05 09:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 获取商品数组变化
|
|
|
|
|
getshoplist() {
|
|
|
|
|
let arr = this.arres_list;
|
|
|
|
|
let newarr = this.list;
|
|
|
|
|
this.shoplist = [];
|
|
|
|
|
for (let index in arr) {
|
|
|
|
|
for (let i in newarr) {
|
|
|
|
|
if (arr[index] == newarr[i].goods_id) {
|
|
|
|
|
this.shoplist.push(newarr[i]);
|
2020-07-30 11:49:12 +00:00
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 改变选中状态
|
|
|
|
|
changeselect(num) {
|
|
|
|
|
if (this.fileListes[num].state == true) {
|
|
|
|
|
this.fileListes[num].state = false;
|
|
|
|
|
let index = this.selectarr.indexOf(this.fileListes[num].id);
|
|
|
|
|
this.selectarr.splice(index, 1);
|
|
|
|
|
} else {
|
|
|
|
|
this.fileListes[num].state = true;
|
|
|
|
|
this.selectarr.push(this.fileListes[num].id);
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-09-19 12:02:43 +00:00
|
|
|
|
// 选择商品
|
|
|
|
|
selectGoods() {
|
|
|
|
|
this.show_two = true;
|
|
|
|
|
this.is_video = true;
|
|
|
|
|
},
|
|
|
|
|
// 选择商品弹窗关闭
|
|
|
|
|
closeGood() {
|
|
|
|
|
this.is_video = false;
|
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
// 创建标签
|
|
|
|
|
addLiveSpec() {
|
2020-08-05 12:10:55 +00:00
|
|
|
|
this.$u.api.createLivesp({
|
|
|
|
|
spec_name: this.tagcontent
|
|
|
|
|
}).then(res => {
|
|
|
|
|
if (res.errCode != 0) {
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'error',
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-05 12:10:55 +00:00
|
|
|
|
} else {
|
|
|
|
|
this.tagcontent = '';
|
|
|
|
|
this.show = false;
|
2020-08-19 11:26:54 +00:00
|
|
|
|
res.data.state = false;
|
2020-08-14 00:26:50 +00:00
|
|
|
|
this.fileListes.push(res.data);
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'success'
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-05 12:10:55 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2020-08-05 09:42:06 +00:00
|
|
|
|
},
|
|
|
|
|
// 获取标签
|
|
|
|
|
getLiveSpec() {
|
|
|
|
|
let that = this;
|
|
|
|
|
this.$u.api.getLiveSpec({}).then(res => {
|
|
|
|
|
if (res.errCode != 0) {
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'error'
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-05 09:42:06 +00:00
|
|
|
|
} else {
|
|
|
|
|
let arr = res.data;
|
|
|
|
|
for (let index in arr) {
|
|
|
|
|
arr[index].state = false;
|
|
|
|
|
}
|
|
|
|
|
that.fileListes = arr;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2020-08-14 04:17:28 +00:00
|
|
|
|
// 删除标签
|
|
|
|
|
isTable(id,index) {
|
|
|
|
|
uni.showModal({
|
|
|
|
|
title: "提示",
|
|
|
|
|
content: "是否删除此标签?",
|
|
|
|
|
success: (res) => {
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
this.delTable(id,index);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
delTable(id,index) {
|
|
|
|
|
let me = this;
|
|
|
|
|
this.$u.post("Streaming/deltLabel", {label_id: id}).then(res => {
|
|
|
|
|
if (res.errCode == 0) {
|
2020-08-15 11:09:02 +00:00
|
|
|
|
// this.$refs.uToast.show({
|
|
|
|
|
// title: res.message,
|
|
|
|
|
// type: 'success'
|
|
|
|
|
// });
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: res.message,
|
|
|
|
|
icon: "none"
|
|
|
|
|
})
|
2020-08-14 04:17:28 +00:00
|
|
|
|
this.fileListes.splice(index,1);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
// 上传封面
|
|
|
|
|
uploadcover(data) {
|
|
|
|
|
let obj = data.data;
|
|
|
|
|
obj.url = obj.file_path;
|
|
|
|
|
this.imgarrA.push(obj);
|
|
|
|
|
},
|
|
|
|
|
// 上传视频
|
|
|
|
|
uploadvideo() {
|
2020-08-12 07:17:48 +00:00
|
|
|
|
cImage(this);
|
2020-08-05 09:42:06 +00:00
|
|
|
|
},
|
|
|
|
|
// 新建标签
|
|
|
|
|
show_add() {
|
|
|
|
|
this.show = !this.show;
|
|
|
|
|
},
|
2020-08-14 04:17:28 +00:00
|
|
|
|
// 编辑标签
|
|
|
|
|
editing() {
|
|
|
|
|
this.is_edit = !this.is_edit;
|
|
|
|
|
},
|
2020-08-05 09:42:06 +00:00
|
|
|
|
// 选择直播商品点击确定
|
|
|
|
|
changes() {
|
|
|
|
|
let that = this;
|
|
|
|
|
that.show_two = false;
|
|
|
|
|
},
|
|
|
|
|
// 选中某个复选框时,由checkbox时触发
|
|
|
|
|
checkboxChange(e) {
|
2020-08-10 12:24:58 +00:00
|
|
|
|
let that = this;
|
2020-08-12 07:17:48 +00:00
|
|
|
|
let num = Number(e.name);
|
2020-08-10 12:24:58 +00:00
|
|
|
|
if (e.value == true) {
|
2020-08-11 01:41:12 +00:00
|
|
|
|
that.pushes(that.list[num].goods_id);
|
2020-08-12 07:17:48 +00:00
|
|
|
|
that.list[num].checked = true;
|
2020-08-10 12:24:58 +00:00
|
|
|
|
} else {
|
2020-08-11 01:41:12 +00:00
|
|
|
|
that.delarr(that.list[num].goods_id);
|
2020-08-12 07:17:48 +00:00
|
|
|
|
that.list[num].checked = false;
|
2020-08-05 09:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 删除直播商品
|
|
|
|
|
delarr(id) {
|
|
|
|
|
var that = this;
|
|
|
|
|
if (id == '') {
|
|
|
|
|
console.log('为空');
|
|
|
|
|
} else {
|
|
|
|
|
let index = that.arres_list.indexOf(id);
|
|
|
|
|
that.arres_list.splice(index, 1);
|
|
|
|
|
that.getshoplist();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 增加直播商品
|
|
|
|
|
pushes(id) {
|
|
|
|
|
var that = this;
|
|
|
|
|
if (id == '') {
|
|
|
|
|
console.log('为空');
|
|
|
|
|
} else {
|
|
|
|
|
that.arres_list.push(id);
|
|
|
|
|
that.getshoplist();
|
|
|
|
|
}
|
2020-06-12 09:42:23 +00:00
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
},
|
|
|
|
|
components: {}
|
|
|
|
|
};
|
2020-06-12 09:42:23 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-08-05 09:42:06 +00:00
|
|
|
|
#release {
|
2020-06-12 09:42:23 +00:00
|
|
|
|
width: 690rpx;
|
|
|
|
|
margin: 0 auto;
|
2020-08-13 03:32:40 +00:00
|
|
|
|
padding-bottom:20rpx;
|
2020-08-14 04:17:28 +00:00
|
|
|
|
.flex-title {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.titles_border,
|
|
|
|
|
.uni-textarea-compute {
|
|
|
|
|
border: 1px #bababa solid !important;
|
|
|
|
|
padding: 10rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
}
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.show_two {
|
|
|
|
|
padding: 30rpx 0 70rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.scroll {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 400px;
|
|
|
|
|
}
|
|
|
|
|
.u-button {
|
|
|
|
|
background: #ff780f;
|
|
|
|
|
width: 690rpx;
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
line-height: 98rpx;
|
|
|
|
|
background: rgba(255, 120, 15, 1);
|
|
|
|
|
border-radius: 49px;
|
|
|
|
|
font-size: 36rpx;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 auto 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.show_two .title {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: solid 1px #ececec;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.show_two .title > text {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
.show_two > view {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: rgba(51, 51, 51, 1);
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.show_two .images {
|
|
|
|
|
width: 22rpx;
|
|
|
|
|
height: 12rpx;
|
|
|
|
|
float: right;
|
|
|
|
|
top: 14rpx;
|
|
|
|
|
}
|
|
|
|
|
.List_tosign {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
zoom: 1;
|
|
|
|
|
margin-top: 21rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.List_tosign > view {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
.List_tosign > view:nth-child(1) {
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
image {
|
|
|
|
|
border-radius: 15rpx;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.List_tosign > view:nth-child(2) {
|
|
|
|
|
width: 420rpx;
|
|
|
|
|
height: 76rpx;
|
|
|
|
|
margin: 43rpx 43rpx 0 21rpx;
|
|
|
|
|
}
|
|
|
|
|
.List_tosign > view:nth-child(3) {
|
|
|
|
|
width: 26rpx;
|
|
|
|
|
height: 27rpx;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: auto;
|
|
|
|
|
image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.listes_shoping {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
zoom: 1;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.listes_shoping > view {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.listes_shoping > view:nth-child(1) {
|
|
|
|
|
width: 36rpx;
|
|
|
|
|
height: 36rpx;
|
|
|
|
|
margin-top: 62rpx;
|
|
|
|
|
margin-left: 30rpx;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.listes_shoping > view:nth-child(2) {
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
height: 160rpx;
|
|
|
|
|
margin: 0 31rpx 0 19rpx;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.listes_shoping > view:nth-child(2) image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
|
2020-07-30 11:49:12 +00:00
|
|
|
|
.listes_shoping > view:nth-child(3) {
|
|
|
|
|
width: 425rpx;
|
|
|
|
|
margin-top: 43rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.form-view {
|
2020-08-12 07:17:48 +00:00
|
|
|
|
background: #cdc7c8;
|
2020-08-05 09:42:06 +00:00
|
|
|
|
border-radius: 6rpx;
|
2020-06-12 09:42:23 +00:00
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
padding: 8rpx 20rpx;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin-bottom: 28rpx;
|
|
|
|
|
color: #fff;
|
2020-08-14 04:17:28 +00:00
|
|
|
|
.close {
|
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2020-06-12 09:42:23 +00:00
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.active {
|
2020-08-12 07:17:48 +00:00
|
|
|
|
background: #ff780f;
|
2020-08-05 09:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
.titles {
|
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: rgba(51, 51, 51, 1);
|
2020-06-12 09:42:23 +00:00
|
|
|
|
margin: 30rpx 0;
|
2020-08-28 06:51:35 +00:00
|
|
|
|
>text{
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
2020-06-12 09:42:23 +00:00
|
|
|
|
}
|
2020-08-14 04:17:28 +00:00
|
|
|
|
.video-flex {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #666;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.videobox {
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2020-08-14 04:17:28 +00:00
|
|
|
|
background-color: #f4f5f6;
|
2020-08-05 09:42:06 +00:00
|
|
|
|
margin-left: 10rpx;
|
|
|
|
|
border-radius: 10rpx;
|
2020-08-14 04:17:28 +00:00
|
|
|
|
|
|
|
|
|
.video-mode {
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
line-height: 280rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
& > image {
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 100rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
}
|
|
|
|
|
.videotext {
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
.videobox video {
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
height: 200rpx;
|
|
|
|
|
}
|
|
|
|
|
textarea {
|
2020-06-12 09:42:23 +00:00
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.custom-style {
|
|
|
|
|
background: rgba(255, 120, 15, 1) !important;
|
|
|
|
|
color: #fff !important;
|
2020-08-13 03:32:40 +00:00
|
|
|
|
// font-size: 36rpx;
|
|
|
|
|
}
|
|
|
|
|
.u-btn {
|
|
|
|
|
width: 628rpx;
|
|
|
|
|
height: 98rpx;
|
|
|
|
|
background: rgba(255, 120, 15, 1) !important;
|
|
|
|
|
border-radius: 49rpx;
|
|
|
|
|
margin: 0 auto;
|
2020-06-12 09:42:23 +00:00
|
|
|
|
font-size: 36rpx;
|
2020-08-13 03:32:40 +00:00
|
|
|
|
color: rgba(255, 255, 255, 1) !important;
|
|
|
|
|
line-height: 36px;
|
|
|
|
|
border: 1px #ff780f solid;
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: rgba(255, 120, 15, 1) !important;
|
2020-06-12 09:42:23 +00:00
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.custom-style-button {
|
|
|
|
|
background: rgba(255, 120, 15, 1) !important;
|
|
|
|
|
color: #fff !important;
|
2020-06-12 09:42:23 +00:00
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
width: 200rpx;
|
|
|
|
|
margin-bottom: 23rpx;
|
|
|
|
|
line-height: 60rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.u-mode-center-box {
|
2020-06-12 09:42:23 +00:00
|
|
|
|
padding: 120rpx;
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.text {
|
2020-06-12 09:42:23 +00:00
|
|
|
|
font-size: 30rpx;
|
|
|
|
|
margin-top: 74rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-05 09:42:06 +00:00
|
|
|
|
.u-inputes {
|
2020-06-12 09:42:23 +00:00
|
|
|
|
margin: 30rpx 0;
|
|
|
|
|
border: 1px #ececec solid;
|
|
|
|
|
padding-left: 14rpx;
|
|
|
|
|
width: 420rpx;
|
|
|
|
|
}
|
|
|
|
|
</style>
|