parent
075dff0ff3
commit
db8c6cbae3
After Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 113 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 68 KiB |
After Width: | Height: | Size: 96 KiB |
File diff suppressed because one or more lines are too long
@ -0,0 +1,66 @@
|
|||||||
|
// pages/coupon/coupon.js
|
||||||
|
Page({
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面的初始数据
|
||||||
|
*/
|
||||||
|
data: {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面加载
|
||||||
|
*/
|
||||||
|
onLoad(options) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面初次渲染完成
|
||||||
|
*/
|
||||||
|
onReady() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面隐藏
|
||||||
|
*/
|
||||||
|
onHide() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面卸载
|
||||||
|
*/
|
||||||
|
onUnload() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面相关事件处理函数--监听用户下拉动作
|
||||||
|
*/
|
||||||
|
onPullDownRefresh() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面上拉触底事件的处理函数
|
||||||
|
*/
|
||||||
|
onReachBottom() {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用户点击右上角分享
|
||||||
|
*/
|
||||||
|
onShareAppMessage() {
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
<!--pages/coupon/coupon.wxml-->
|
||||||
|
<text>pages/coupon/coupon.wxml</text>
|
@ -0,0 +1 @@
|
|||||||
|
/* pages/coupon/coupon.wxss */
|
@ -0,0 +1,72 @@
|
|||||||
|
// pages/index/index.js
|
||||||
|
|
||||||
|
//引入SDK核心类
|
||||||
|
var QQMapWX = require('../../libs/qqmap-wx-jssdk.js')
|
||||||
|
var qqmapsdk
|
||||||
|
Page({
|
||||||
|
|
||||||
|
onLoad: function() {
|
||||||
|
//实例化API核心类
|
||||||
|
qqmapsdk = new QQMapWX({
|
||||||
|
key: '2Y2BZ-ABTA7-5UMXN-HCB7R-XZIWO-FGB3C'
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 生命周期函数--监听页面显示
|
||||||
|
*/
|
||||||
|
onShow: function() {
|
||||||
|
//调用接口
|
||||||
|
qqmapsdk.search({
|
||||||
|
keyword:'酒店',
|
||||||
|
success:function (res) {
|
||||||
|
console.log(res)
|
||||||
|
},
|
||||||
|
fail: function(res) {
|
||||||
|
console.log(res)
|
||||||
|
},
|
||||||
|
complate: function(res) {
|
||||||
|
console.log(res)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
//makers标记点
|
||||||
|
markers: {
|
||||||
|
iconPath: "/resources/others.png", //图标资源路径
|
||||||
|
id: 0, //标记点id
|
||||||
|
latitude: 23.099994, //纬度
|
||||||
|
longitude: 113.324520, //经度
|
||||||
|
width: 50, //图标宽度
|
||||||
|
height: 50 //图标宽度
|
||||||
|
},
|
||||||
|
//controls设置
|
||||||
|
controls: [{
|
||||||
|
id: 1,
|
||||||
|
iconPath: '../../images/banner.png',
|
||||||
|
position: {
|
||||||
|
left: 0,
|
||||||
|
top: 10,
|
||||||
|
width: 375,
|
||||||
|
height: 71
|
||||||
|
},
|
||||||
|
clickable: true
|
||||||
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
wx.getSystemInfo({
|
||||||
|
success: function(res) {
|
||||||
|
console.log(res.model) //手机型号
|
||||||
|
console.log(res.pixelRatio) //设备像素比
|
||||||
|
console.log(res.windowWidth) //可使用窗口宽度
|
||||||
|
console.log(res.windowHeight) //可使用窗口高度
|
||||||
|
console.log(res.language) //微信设置的语言
|
||||||
|
console.log(res.version) //微信版本号
|
||||||
|
console.log(res.platform) //客户端平台
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
@ -0,0 +1,2 @@
|
|||||||
|
<!--pages/index/index.wxml-->
|
||||||
|
<text>pages/index/index.wxml</text>
|
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
<!-- 设置地图界面 -->
|
||||||
|
<map id="map" bindcontroltap="bindControlTap" bindregionchange="bindRegionChange" longitude="{{longitude}}" latitude="{{latitude}}" markers="{{markers}}" controls="{{controls}}" style="width: {{mapw}}; height: {{maph}};" scale="{{scale}}" show-location></map>
|
@ -0,0 +1 @@
|
|||||||
|
/* pages/map/map.wxss */
|
@ -0,0 +1,54 @@
|
|||||||
|
{
|
||||||
|
"description": "项目配置文件",
|
||||||
|
"packOptions": {
|
||||||
|
"ignore": [],
|
||||||
|
"include": []
|
||||||
|
},
|
||||||
|
"setting": {
|
||||||
|
"bundle": false,
|
||||||
|
"userConfirmedBundleSwitch": false,
|
||||||
|
"urlCheck": true,
|
||||||
|
"scopeDataCheck": false,
|
||||||
|
"coverView": true,
|
||||||
|
"es6": true,
|
||||||
|
"postcss": true,
|
||||||
|
"compileHotReLoad": false,
|
||||||
|
"lazyloadPlaceholderEnable": false,
|
||||||
|
"preloadBackgroundData": false,
|
||||||
|
"minified": true,
|
||||||
|
"autoAudits": false,
|
||||||
|
"newFeature": false,
|
||||||
|
"uglifyFileName": false,
|
||||||
|
"uploadWithSourceMap": true,
|
||||||
|
"useIsolateContext": true,
|
||||||
|
"nodeModules": false,
|
||||||
|
"enhance": true,
|
||||||
|
"useMultiFrameRuntime": true,
|
||||||
|
"useApiHook": true,
|
||||||
|
"useApiHostProcess": true,
|
||||||
|
"showShadowRootInWxmlPanel": true,
|
||||||
|
"packNpmManually": false,
|
||||||
|
"enableEngineNative": false,
|
||||||
|
"packNpmRelationList": [],
|
||||||
|
"minifyWXSS": true,
|
||||||
|
"showES6CompileOption": false,
|
||||||
|
"minifyWXML": true,
|
||||||
|
"babelSetting": {
|
||||||
|
"ignore": [],
|
||||||
|
"disablePlugins": [],
|
||||||
|
"outputPath": ""
|
||||||
|
},
|
||||||
|
"condition": false
|
||||||
|
},
|
||||||
|
"compileType": "miniprogram",
|
||||||
|
"libVersion": "2.19.4",
|
||||||
|
"appid": "wxd6d38f0787fb9330",
|
||||||
|
"projectname": "miniprogram-92",
|
||||||
|
"condition": {},
|
||||||
|
"editorSetting": {
|
||||||
|
"tabIndent": "auto",
|
||||||
|
"tabSize": 2
|
||||||
|
},
|
||||||
|
"ignoreDevUnusedFiles": false,
|
||||||
|
"ignoreUploadUnisedFiles": false
|
||||||
|
}
|
Loading…
Reference in new issue