|
- // pages/component/service/index.js
- const app = getApp()
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
-
- },
-
- /**
- * 组件的初始数据
- */
- data: {
- imgUrl: app.globalData.urlStatic,//图片路径
- maskState:false,//遮罩显示状态
- },
-
- /**
- * 组件的方法列表
- */
- methods: {
- maskShow:function(e){//打开遮罩
- this.setData({
- maskState: true,
- })
- },
- closeService: function (e) {//关闭遮罩
- this.setData({
- maskState: false,
- })
- },
- newCarConsultation:function(e){//新车咨询
- console.log("小程序跳转");
- // wx.navigateToMiniProgram({
- // appId: 'wx5c64e733d849c3ef',
- // success(res) {
- // // 打开成功
- // },
- // complete(res){
- // console.log(res);
- // }
- // })
- }
- }
- })
|