码迷,mamicode.com
首页 > Windows程序 > 详细

apiCloud 双击事件

时间:2018-01-17 20:19:45      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:ret   read   class   else   inf   info   pos   bsp   token   

apiCloud 双击事件只能使用纯js去写

        var app = new Vue({
            el: "#app",
            data: function() {
                return {
                    token: ‘‘,
                    us_id: ‘‘,
                    lastClickTime: 0,
                    lastClickId: 0
                }
            },
            methods: {
                follow:function(nc_id,r_index){
                    var this_obj= this;
                    var currentTime=new Date().getTime()
                    if(this.lastClickId != nc_id){
                        this.lastClickId = nc_id;
                    }else{
                        if(( currentTime - this.lastClickTime)< 300){
                            var a_data = {
                                token: this_obj.token,
                                nc_id: nc_id,
                                us_id: this_obj.us_id
                            };
                            var a_url = "/Info/add_follow_class";
                            common_ajax(a_url, a_data, function(res) {
                                this_obj.sort.push(res.info)
                                this_obj.more_sort.splice(r_index,1)
                            }, function(res) {
                                api.toast({
                                    msg: res.info
                                });
                            });
                        }
                    }
                    this.lastClickTime = currentTime
                }
            }
        });
        app.ready();

 

apiCloud 双击事件

标签:ret   read   class   else   inf   info   pos   bsp   token   

原文地址:https://www.cnblogs.com/gqx-html/p/8304278.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!