You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
503 B
26 lines
503 B
Page({
|
|
data: {
|
|
imgurl:""
|
|
},
|
|
onLoad: function (options) {
|
|
|
|
},
|
|
browse:function()
|
|
{
|
|
let that=this;
|
|
wx.chooseMedia({
|
|
count: 1,
|
|
mediaType: ['image','video'],
|
|
sourceType: ['album', 'camera'],
|
|
maxDuration: 30,
|
|
camera: 'back',
|
|
success(res) {
|
|
console.log(res.tempFiles[0].tempFilePath)
|
|
wx.setStorageSync('path',res.tempFiles[0].tempFilePath)
|
|
wx.switchTab({
|
|
url: '../map/map',
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}) |