博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue禁用与启用以及点击弹出提示框
阅读量:5367 次
发布时间:2019-06-15

本文共 2303 字,大约阅读时间需要 7 分钟。

一·,

    HTML

                              {
{item.developer_id}} {
{item.developer_name}} {
{item.developer_status==1?'正常':'锁定'}} {
{item.operator}} {
{item.operating_time}} {
{item.developer_status==2?'启用':'禁用'}}
//弹框里面的内容布局 

确认

确认{

{
this.standardstu==2? '启用':'禁用'}}【{
{
this.standardna}}】标准?

 

二,script     

//主页面的script data(){   return {       disable:false   }},methods:{            closeen() {                this.disable = false;            },            sure() {                this.disable = false;                 //这个接口为启用或者禁用成功改变状态                let _this = this;                let checkInfo = {//给后台传入的参数};                checkInfo = this.qs.stringify(checkInfo);                this.$axios.post('调用的接口',checkInfo,res =>{                      this.getData();  //这个调用主页面的接口,即之后改变状态后的数据                                      this.checkedId = [];                })                },            singleLock(id,stat,item){                this.standardna =item.developer_name;                this.standardstu =stat;                    console.log(this.standardstu);                if(this.standardstu == 1) {                    this.standardstu=="禁用"                } else {                    this.standardstu=="启用"                }                this.disable = true;                this.updateid=id;                  }}
//这个为子组件的script export default {        name: 'enabled',        data() {            return {            }        },        props: ['standardna','standardstu'],        mounted() {            console.log(this.standardstu)        },        methods: {            closeen() {                this.$emit('closeen');            },            sure() {                this.$emit('sure');              }        },        components: {        }    }

三,css

//子组件的css,样式较多可简化 

 

                                                                                                                                                                                                                             -------END

 

转载于:https://www.cnblogs.com/liujiajiablog/p/9963149.html

你可能感兴趣的文章
洛谷 P1203 [USACO1.1]坏掉的项链Broken Necklace
查看>>
MongoDB之bson的介绍
查看>>
.NET Core IdentityServer4实战 第三章-使用EntityFramework Core进行持久化配置
查看>>
sql面试题一 学生成绩
查看>>
【深度学习大讲堂】首期第一讲:人工智能的ABCDE 第一部分:从人工智能和计算机视觉说起...
查看>>
2016/2/21 JavaScript简介
查看>>
关于Javascript调用asp.Net后台代码
查看>>
springcloud-06-feign的使用
查看>>
代码经验总结(未完)
查看>>
BZOJ1925: [Sdoi2010]地精部落
查看>>
ReportViewer实例教程(转载)
查看>>
php中文文件is_file检验失败(编码问题)
查看>>
也说Socket
查看>>
[置顶] 文章索引::”机器学习方法“,"深度学习方法",“三十分钟理解”原创系列...
查看>>
Storm概念学习系列之核心概念(Tuple、Spout、Blot、Stream、Stream Grouping、Worker、Task、Executor、Topology)(博主推荐)...
查看>>
Python 爬虫工程师必学 App数据抓取实战
查看>>
SQLServer数据库设计规范
查看>>
Visual C++中使用ADO访问数据库
查看>>
MySQL Python教程(3)
查看>>
360随身WiFi使用问题解决,无法在没有网络的电脑上使用
查看>>