配播战略投资中视云媒1000万

据11月10日消息,配播(杭州)技术开发有限公司(以下简称:配播)战略投资中视云媒1000万元。

中视云媒是做什么的?

中视云媒(浙江)教育科技公司是一家新型直播电商经纪及带货主播孵化教育培训公司。公司拥有的杭州凤投会名品直播基地是浙江省首家综合性直播电商生态基地。公司先后与著名导演张纪中夫妇,著名演员黄奕,有中国微电影之称的郑云老师合作为毕加索家纺,周大生珠宝等品牌一场直播取得2000万元+,666万元+,335万元+的.业绩。公司拥有的直播电商资源丰富,拥有完善供应链,操盘罗永浩、张纪中、黄奕等直播间的顶级操盘手名师,独立直播间和7大直播基地,深度合作明星主播超50名,独家签约抖音主播超30名,为众多知名上市公司,国有企业,名星直播室及电商企业安排直播带货或输送直播运营及主播人才。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
<template> <div class="upload"> <el-upload class="upload-demo" :action="uploadUrl" :headers="headers" :on-success="handleSuccess" :before-upload="beforeUpload" :on-error="handleError" :auto-upload="false" :show-file-list="false" > <el-button type="primary" size="medium" :loading="loading" :disabled="disabled" icon="el-icon-upload" > {{ buttonText }} </el-button> <span class="upload-tip">{{ uploadTip }}</span> </el-upload> </div> </template> <script> export default { name: "Upload", props: { buttonText: { type: String, default: "上传" }, uploadUrl: { type: String, required: true }, uploadTip: { type: String, default: "支持文件类型:jpg、jpeg、png、gif、bmp,文件大小不超过 5MB" }, headers: { type: Object, default() { return { Authorization: "" }; } } }, data() { return { loading: false, disabled: false }; }, methods: { beforeUpload(file) { const isJPG = file.type === "image/jpeg"; const isPNG = file.type === "image/png"; const isGIF = file.type === "image/gif"; const isBMP = file.type === "image/bmp"; const isLt5M = file.size / 1024 / 1024 < 5; if (!isJPG && !isPNG && !isGIF && !isBMP) { this.$message.error("上传图片只能是 JPG/PNG/GIF/BMP 格式!"); return false; } if (!isLt5M) { this.$message.error("上传图片大小不能超过 5MB!"); return false; } this.loading = true; this.disabled = true; return true; }, handleSuccess(response, file) { this.loading = false; this.disabled = false; if (response.code === 200) { this.$emit("success", response.data); } else { this.$message.error(response.msg); } }, handleError(error, file) { this.loading = false; this.disabled = false; this.$message.error("上传失败,请重试!"); } } }; </script> <style scoped> .upload { display: inline-block; vertical-align: middle; } .upload-tip { display: inline-block; font-size: 12px; color: #c0c4cc; margin-left: 10px; vertical-align: middle; } </style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值