工作295:发布逻辑处理

<template><el-dialogtitle="发布":visible.sync="dialogVisible"width="40%":before-close="handleClose"><el-form label-width="80px"><el-form-item label="项目名"><el-input v-model="project_name" placeholder="请输入项目名"></el-input></el-form-item><el-form-item v-for="item in AweMepro" :label="item.name"><el-input v-if="item.widget.type == 'input'" v-model="form[item.key]" placeholder="名称"></el-input><!--          <el-select v-else-if="item.widget.type == 'category-select'" v-model="form[item.key]" placeholder="">--><!--            <el-option v-for="row in item.widget.categories" :label="row.title" :value="row.value"></el-option>--><!--          </el-select>--><!--          <el-cascader--><!--            v-else-if="item.widget.type == 'category-select'"--><!--            v-model="form[item.key]"--><!--            :options="item.widget.categories"--><!--            @change="handleChange"--><!--          >--><!--          </el-cascader>--><el-cascader v-else-if="item.widget.type == 'category-select'" v-model="categoryValue":options="item.widget.categories" @change="handleChange"><template slot-scope="{ node, data }"><span>{{ data.title }}</span></template></el-cascader><el-switch v-else-if="item.widget.type == 'boolean-select'" v-model="form[item.key]" text="是否原创"></el-switch><el-tag v-else-if="item.widget.type == 'tag-input'" v-for="row in form[item.key]" size="medium" closable>{{row}}</el-tag><el-date-pickerv-else-if="item.widget.type == 'date-time'"v-model="form[item.key]"type="datetime"placeholder="选择日期时间"value-format="timestamp"></el-date-picker><el-upload :action="action"v-else-if="item.widget.type == 'picture'"disabled><img v-if="form[item.key]" :src="form[item.key]" class="avatar"><i v-else class="el-icon-plus avatar-uploader-icon"></i></el-upload><el-upload :action="action"v-else-if="item.widget.type == 'cover-pictures'"disabled><img v-if="form[item.key]" :src="form[item.key]" class="avatar"><i v-else class="el-icon-plus avatar-uploader-icon"></i></el-upload></el-form-item></el-form><!-- <div v-for="(item,index) in this.itemsBian"><el-input v-if="item.widget.type='input'"  type="item.widget.type" placeholder="请输入名称" v-model="item.name"></el-input></div>--><span slot="footer" class="dialog-footer"><el-button @click="dialogVisible = false">取 消</el-button><el-button type="primary" @click="ListAccept">确 定</el-button></span></el-dialog>
</template>
<script>
importEditTags from "@/views/content/ContentComponents/EditTags";
import EditUploads from "@/views/content/ContentComponents/EditUploads";
import MyInput from "@/views/order/accoutTask/MyInput";
import {getAction, postActionXing, putAction} from "@/api";export default {name: "ContentPublish",components: {EditTags,EditUploads,MyInput},data() {return {value: '',categoryValue: [],/*品牌名*/brand_id: null,project_id: 0,scope_id: 0,/*content_id*/content_type: 0,/*项目名*/project_name: '',dialogVisible: false,form: {},UserToken: {},info: null,/*视频上传地址*/VedioUrl: '',/*图片上传地址*/ImageUrl: '',/*用来存储account的数值*/accountListPro: {},/*存放despro的数值*/differentPro: {},/*存放AME的数值*/AweMepro: [],/*存放accountlist数值*/accountListBrand: {},/*存放detail*/detailPro: {},/*存放user*/userPro: {},itemsBian: {},};},methods: {publish(id) {this.dialogVisible = true;/*任务详情的一个数据接口  {{host}}/task/1*/getAction("/task/" + id + "/release").then(res => {console.log(res, 8888)if (res.code == 404) {this.$message({message: res.msg,type: 'error'});this.dialogVisible = false;}/*存储accout的数据*//*  this.accountListPro = res.data.account*//*返回的示例数据brand_id: "12305"name: "123"pavg: nullplugin_icon_url: "https://fenfa1.csztv.com/testapi/imgs/bilibili.png"plugin_key: "bilibili"plugin_name: "Bilibili"remote_account_id: "302970"status: true*//*存储account_brand的数值*/this.accountListBrand = res.data.account_brand/*返回对应的实例值* videoAuditUsers: Array(3)wordAuditUsers: Array(3)*/this.AweMepro = res.data.account_plugins/*返回对应的实例值* description: nullkey: "name"name: "名称"unified: truevalue_schema: Objectwidget: Object* */this.differentPro = res.data.different_catalogs/** 302970: Objectcategory: ""intro: ""name: ""original: ""quiz-publish: ""tags: ""trans_reason: ""upload-image: ""* */this.detailPro = res.data.account_detail/** account_name: (...)avatar_url: (...)brand_id: (...)brand_name: (...)default_categories: (...)d efault_category_names: (...)error_code: (...)error_message: (...)extensions: (...)form_items: (...)id: (...)plugin_icon_url: (...)plugin_key: (...)plugin_name: (...)type: (...)*//**/this.userPro = res.data.users/*返回示例代码* access_token: (...)account: (...)business_module: (...)column: (...)department_id: (...)expire_time: (...)ff_login_time: (...)ff_open_id: (...)ff_time: (...)ff_token: (...)id: (...)login_at: (...)name: (...)role: (...)*/this.info = res.data;/*本id1用来判断是数据接口或者是图文数据接口*/this.content_type = res.data.content_type/*本id表示的是多少行的一个数据id*/this.scope_id = id/*存入的数值是所需要的一个品牌id的数据值*/this.brand_id = res.data.account.brand_id/*getActionXing("/internal/plugins/" + this.detailPro.plugin_key + "/catalog-items/different").then(res => {console.log(res)this.itemsBian = res.data.bilibiliconsole.log(this.itemsBian)this.itemsBian.map((value, index) => {console.log(value.widget.type)})})*/this.form = {"name": res.data.title,"tags": res.data.tag,"upload-image": res.data.thumbnail,"cover-pictures": res.data.thumbnail,}})},handleClose(done) {this.$confirm('确认关闭?').then(_ => {this.dialogVisible = false}).catch(_ => {this.dialogVisible = false});},ListAccept() {//如果当前是视频资源if (this.content_type == 1) {   //视频this.form['quiz-publish'] = this.form['quiz-publish'] / 1000;this.info.different_catalogs[this.info.account.remote_account_id] = this.form;var url = "/internal/users/current/video-url/distribute";var data = {"brand_id": this.info.account.brand_id,"name": this.info.name,"video_url": this.info.resource,"account_ids": [this.info.account.remote_account_id],"unify_catalogs": {},"different_catalogs": this.info.different_catalogs,}postActionXing(url, data).then(res => {if (res.data) {putAction("/task/" + this.scope_id + "/project", {project_id: res.data}).then(res => {if (res.code == 0) {this.$message({message: '发布成功!',type: 'success'});putAction('/task/' + this.scope_id + '/status', {status: 4}).then(res => {})this.$emit("ok")this.dialogVisible = false;}})}});}/*如果当前是图文资源*/else if (this.content_type == 2) {  //图文/*cover-pictures*/var wordAuditUsers = [];for (var i = 0; i < this.info.account_brand.wordAuditUsers.length; i++) {wordAuditUsers.push(this.info.account_brand.wordAuditUsers[i].id);}this.form['quiz-publish'] = this.form['quiz-publish'] / 100;this.info.different_catalogs[this.info.account.remote_account_id] = this.form;var url = "/internal/users/current/word-projects/distribute";var data = {"brand_id": this.info.account.brand_id,"title": this.info.title,"name": this.info.name,"body": this.info.resource,/*"video_url": this.info.resource,*/"account_ids": [this.info.account.remote_account_id],"unify_catalogs": {},"different_catalogs": this.info.different_catalogs,/* "brand_id": this.brand_id,"title": this.project_name,"body": this.info.resource,"account_ids": [this.info.account.remote_account_id],"audit_user_ids": wordAuditUsers,"unify_catalogs": {},"different_catalogs": this.different_catalogs*/}postActionXing(url, data).then(res => {if (res.data) {putAction("/task/" + this.scope_id + "/project", {project_id: res.data}).then(res => {console.log(res)putAction('/task/' + this.scope_id + '/status', {status: 4}).then(res => {})})}})}/*创建我的视频接口 第一个参数自己手动录入 第二个参数取值任务详情的接口接口*/// postActionXing("/internal/users/current/video-projects",{//   brand_id:this.account.brand_id,name:this.project_name// }).then(//     res=>{//       this.project_id=res.data//       console.log(this.project_id)//       /*传入四个个参数 传入title icon_path transcode paths 设置传入的参数 *///       postActionXing("/internal/users/current/video-projects/"+this.project_id+"/videos",{//         title: this.content.title,//         icon_path:this.content.resource,//         transcode: true,//         paths: [this.content.thumbnail]//       })//     }// )/*创建我的图文接口 进行数据的传输*/// postActionXing("/internal/users/current/word-projects",{//   brand_id:this.account.brand_id,name:this.project_name,body:this.content.resource// }).then(//     res=>{//       this.project_id=res.data//       console.log(this.project_id)//     }// )/*获取图文详情*/// getActionXing("/internal/users/current/brands/word-projects/"+this.project_id).then(res=>{//   console.log(res)// })/*图文详情 图文修改 图文分发接口*/// getActionXing("/internal/users/current/word-projects").then(res=>{//   console.log(res)//   this.dialogVisible=false// })},handleChange(e) {this.form.category = e;}}
};
</script>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/414153.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何写一份优秀的java程序员简历

背景&#xff1a;进入第一家公司已经工作将近两年了&#xff0c;其中闲了一年&#xff0c;在准备自己的简历的时候&#xff0c;有种江郎才尽的感觉&#xff0c;不知道怎么写&#xff0c;看来平时还是要多积累多熟悉。 PS&#xff1a;这里面的分享看完还是很受用的。 简历看得比…

工作296:el-table使用

<template> <el-dialogtitle"修改记录":visible.sync"dialogVisible"width"30%":before-close"handleClose"><el-table:data"tableData"style"width: 100%"><el-table-columnprop"name…

nginx将ip+端口号映射为域名

cd /etccd nginxcd sites-enabledvim 配置文件&#xff08;vim siyin.orange-socail.com)server { listen 80; server_name siyin.orange-social.com; access_log /var/log/nginx/siyin.orange-social.com/access.log; error_log /var/log/nginx/siyin.orange-social.com/error…

macos -bash: yarn: command not found/-bash: cnpm: command not found

博客主要更新地址&#xff1a;?https://www.cnblogs.com/niceyoo -bash: cnpm: command not found -bash: yarn: command not found -bash: xxxx: command not found 如上yarn/cnpm皆通用&#xff0c;前提是安装成功后报这个错误哈&#xff01; Error: EACCES: permission den…

工作297:shift+$形成元

</el-row><el-form-item label"刊例价"><span>&#xffe5;</span> {{ form.price }}</el-form-item><el-form-item label"任务名称"><!-- {{form.name}}--><el-input :disabled"viewList" v-mode…

部署项目到jetty

一、打包项目 1、在pom.xml中添加以下依赖 <dependency><groupId>org.mortbay.jetty</groupId><artifactId>jetty-plus</artifactId><version>7.0.0.pre5</version><scope>provided</scope> </dependency> <de…

maven jar包冲突的发现与解决[工具篇]

本文是我的第177篇文章。 关于jar冲突排查解决的问题&#xff0c;相信很多小伙伴也都知道有一些&#xff0c;无非就是两类&#xff1a;命令 or 工具。 命令方式比如&#xff1a; mvn dependency:tree 工具方式比如&#xff1a; Maven Helper 而今天的主角就是 Maven Helper 了。…

工作298:无路由页面

<template><div><h1>404 Not Found! &#x1f440;</h1><router-link to"/"><el-button type"primary">返回首页</el-button></router-link></div> </template><script> export defaul…

no applicable action for [springProfile], current ElementPath is [[configuration][springProfile]]

今天down了一个开源项目&#xff0c;启动后一直存在如下错误信息&#xff1a; ERROR in ch.qos.logback.core.joran.spi.Interpreter26:42 - no applicable action for [springProfile], current ElementPath is [[configuration][springProfile]]ERROR in ch.qos.logback.cor…

【Python练习题】程序5

#题目&#xff1a;输入三个整数x,y,z&#xff0c;请把这三个数由小到大输出。 # a input(请输入整数&#xff1a; \n) # # b input(请输入整数&#xff1a; \n) # # c input(请输入整数&#xff1a; \n) # # l [a,b,c] # # l.sort() # # for i in l: # print (i)方法2&…

@Path注解

最近用到的一个项目&#xff0c;看到Controller控制层、Method方法都是通篇的Path注解&#xff0c;由于之前并没有使用过该注解&#xff0c;故记此篇。 首先看一下项目中的使用方式&#xff1a; Path("clientWeb")public class ClientWeb { POST Path("/g…

工作300:处理预览界面

<template><el-dialogtitle"提示":visible.sync"dialogVisible"width"30%":before-close"handleClose"><div style"margin: 0 auto"><div v-if"tableData.content_type2"><h1>图文…

iOS的SVN

1、cornerstone2、smart svn mac &#xff08;比较好用&#xff09;3、还xcode自带的。转载于:https://www.cnblogs.com/YangBinChina/p/8971148.html

导入数据任务(id:373985)异常, 错误信息:解析导入文件错误,请检查导入文件内容,仅支持导入json格式数据及excel文件...

小程序导入&#xff0c;别人导出的数据库json文件&#xff0c;错误信息如下&#xff1a; 导入数据库失败, Error: Poll error, 导入数据任务&#xff08;id:373985&#xff09;异常&#xff0c;错误信息&#xff1a;解析导入文件错误&#xff0c;请检查导入文件内容&#xff0c…

工作301:substring使用

在 String 中提供了两个截取字符串的方法&#xff0c;一个是从指定位置截取到字符串结尾&#xff0c;另一个是截取指定范围的内容。下面对这两种方法分别进行介绍。 1. substring(int beginIndex) 形式 此方式用于提取从索引位置开始至结尾处的字符串部分。调用时&#xff0c;括…

java -jar 指定端口发布

java -jar -Dserver.port9999 boot.jar 转载于:https://www.cnblogs.com/kaka666/p/8971339.html

ArrayList与String[]

不逼自己一把&#xff0c;你永远不知道什么是绝望。 今天被初学java的朋友问到了String[]跟ArrayList是不是有关系呢&#xff1f; 猜测是名称之间的联想&#xff0c;记此篇解惑。 Array英语单词里是数组、阵列的意思&#xff0c;在java中数组是这样定义的&#xff1a;一组相关类…

工作302:scss目录编写

css 样式存放目录&#xff08;待定&#xff0c;选用less或scss&#xff09;这里我不会把style抽到外头&#xff0c;但是可以写一些全局样式放在这里&#xff0c;里面注意放入common.less normalize.less,里面直接写.el-button那么所有的el-button就会被影响&#xff0c;这里要提…

工作303:接口返回的上传地址默认是可以调用的

let testUrlgetActionXing("/internal/pictures/uploader",).then(res>{console.log(res)testUrlres.data.toString()接口上传的返回地址console.log(testUrl)testUrltestUrl.substring(24)console.log(testUrl)getActionXing(testUrl).then(res>{console.log(…

WebStorm取消默认style样式折叠

WebStorm取消默认style样式折叠&#xff1a; File--->Settings打开一个窗口 Edit--->CodeFolding 把HTML style attribute的前面的钩去掉[取消勾选] 右下角点击Apply--->ok