Python Flask构建微信小程序订餐系统 (十二)

创建切换商品分类状态的JS文件 

 Python Flask构建微信小程序订餐系统 (十二)_第1张图片

;
var food_act_ops={
    init:function(){
        this.eventBind();
    },
    eventBind:function(){
        //表示作用域
        var that = this;
        $(".wrap_search select[name=status]").change(function(){
            $(".wrap_search").submit();
        });
        $(".remove").click(function(){
            that.ops("remove",$(this).attr("data"));
        });
        $(".recover").click(function(){
            that.ops("recover",$(this).attr("data"));
        })

        console.log(1);
    },
};
$(document).ready(function(){
    food_act_ops.init();
});

  商品分类布局里面引入js文件依赖  

{% block js %}

你可能感兴趣的:(微信小程序呀,python,flask,微信小程序)