|
//////////.wxml的按钮代码如下:
<block wx:if="{{real_value}}">
<template is="zcButton" data="{{data:button6}}"></template>
</block>
<block wx:elif="{{detail_data && !vessel_page_data.form_data}}">
<template is="zcButton" data="{{data:button6}}"></template>
</block>
<block wx:elif="{{vessel_page_data.form_data}}">
<template is="zcButton" data="{{data:button6}}"></template>
</block>
<block wx:else>
<template is="zcButton" data="{{data:button6}}"></template>
</block>
///////////////////.js的函数如下:
daohang: function () {
this.setData({
hidden: !this.data.hidden ///地图加载参数
});
wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success: function (res) {
wx.openLocation({
latitude: 36.086342,
longitude: 120.355568,
name: "122",
address: "23331231",
scale: 28
})
}
})
/////////////////通过微信开发工具,如何实现本按钮调用函数功能?谢谢。。。
|
|