promate_pop.js
424 Bytes
Component({
/*** 页面的初始数据***/
data: {
type:0, //0只显示再商品详情页面 1显示再有选择按钮
pro_pop:0, //是否弹出
},
methods: {
//-- 初始化弹出框 --
set_init(type){
if(!type) type=0;
this.setData({
type:type,pro_pop:1
})
},
/*----pop的开关---*/
close_pro_pop: async function (event) {
this.setData({pro_pop: 0});
},
}
})