工作291:当前账号是否绑定操作

<template><el-dialog@open="open"title="绑定分发平台账号":visible.sync="dialogVisible"width="40%":before-close="handleClose"><el-form style="display: flex;justify-content: center;align-items: center"><el-form-item label="分发账号名称" label-width="100px"><el-select  v-model="form.index" placeholder="选择绑定的分发账号"><!--||!RomoteData.includes(item.id --><el-option :disabled="!item.status||RomoteData.includes(item.id.toString())"  v-for="(item,index) in BindData" :key="item.id" :label="item.account_name" :value="index"></el-option></el-select><p v-if="this.account!=''">你已经绑定账号{{account}}</p><p v-else>当前账号没有绑定任何账号</p></el-form-item></el-form><span slot="footer" class="dialog-footer"><el-button @click="dialogVisible = false">取 消</el-button><el-button type="primary" @click="dialog">确 定</el-button></span></el-dialog>
</template>
<script>
import {getAction, putAction} from "@/api";export default {data(){return{account_id: '',BindData: [],RomoteData:[],dialogVisible: false,ff_account_index: '',form:{},remote:0,account:'',}},methods:{/*绑定id逻辑分析*/handleClose() {},show(record){this.account=''this.dialogVisible = truegetAction("/account/"+record.id).then(res=>{console.log(res)this.remote=res.data.remote_account_idconsole.log(this.remote)})getAction("/account/ff_account_list",{content_type:record.content_type}).then(res => {this.account_id = record.idconsole.log(this.account_id)this.BindData = res.data.dataconsole.log(this.BindData)this.BindData.map((value,index)=>{if(value.id==this.remote){this.account=value.account_nameconsole.log(value.account_name)}/* if(value.id)*//* console.log(index)*/})console.log(this.RomoteData)this.RomoteData=res.data.remoteAccountIds})},open(){},dialog() {/*传给当前的account_id进行接收*/putAction("/account/" + this.account_id + "/bind_ff_account_id", {remote_account_id: this.BindData[this.form.index].id,pavg: this.BindData[this.form.index].avatar_url,plugin_key: this.BindData[this.form.index].plugin_key,plugin_name: this.BindData[this.form.index].plugin_name,plugin_icon_url: this.BindData[this.form.index].plugin_icon_url,brand_id: this.BindData[this.form.index].brand_id}).then(res=>{this.$message.success("绑定成功")}).catch(error=>{this.$message.success("未绑定")})this.dialogVisible = false},}
}
</script>
<style></style>

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

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

相关文章

Redis之客户端连接方式

Reis的客户端连接方式有如下几种&#xff1a; 1.基本方式 /*** 简单基本方式调用*/Testpublic void test1JedisStandardClient() {Jedis jedis new Jedis("192.168.56.101", 6379);jedis.set("123", "first line is null");String valueString …

工作292:修改父子组件传值错误

[Vue warn]: Missing required prop: “title” 在写vue项目中&#xff0c;在子组件中通过props传值的时候&#xff0c;在父组件中没有定义的话就会看到类似的报错&#xff0c; 这个意思是calendar这个组件中通过props传递一个title属性给父组件&#xff0c;并且title属性是必…

MacOS下IDEA设置智能提示不区分大小写

本文只针对&#xff0c;IDEA-2019.2.3版本 目录地址&#xff1a; Edit -> General -> Code Completion -> Match case -> 勾选去掉 截图如下&#xff1a;

工作293:新的打印操作

getAction("/task/" id "/release").then(res > {console.log(res, 8888)if (res.code 404) {this.$message({message: res.msg,type: error});this.dialogVisible false;}

博客园文章方块背景格式

有小伙伴问到方格背景的问题&#xff0c;所以写一篇文章记录我的博客园文章背景是如何制作的。 一、辅助网站1. 一键排版2. 代码主题3. 复制二、 图床设置 一、辅助网站 辅助网址&#xff1a;Md2All 作者提供了一篇帮助文章&#xff1a;玩转公众号Markdown 其实大致看完辅助网址…

day02 pycharm 安装

pycharm 是一款现在比较主流的辅助开发软件 不选择虚拟 所以选择Existing现有的 安装后只需打开当前窗口 默认的 不需要大家新的窗口 使用鼠标滚轮来实现放大缩小 使用debug模式测试代码 转载于:https://www.cnblogs.com/zhaohongyu6688/p/8962253.html

工作294:for[item.key]使用

<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&qu…

eclipse启动项目

今天做的任务不多&#xff0c;没有自己写代码&#xff0c;上午看了些文章&#xff0c;下午我司后台给配了配项目环境&#xff0c;全装C盘了。。以后有我好受的。。 看着后台操作&#xff0c;修改了N多配置&#xff0c;tomcat、redis、zkServer.、Nginx&#xff0c;navcat、ecli…

Error: EACCES: permission denied, mkdir

近期在macos开发环境下使用npm&#xff0c;经常会出现无法mkdir&#xff0c;permission denied的问题&#xff0c;在windows下并没有遇到这种情况。 经查询需要在指令前使用sudo指令&#xff0c;例如&#xff1a;npm install your_module 改为 sudo npm install your_module 下…

工作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&…

如何写一份优秀的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&…