物流端
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.
yyt-mall-wl/pages/feedback/feedback.js

130 lines
1.9 KiB

1 year ago
// pages/feedback/feedback.js
Page({
/**
* 页面的初始数据
*/
data: {
array: ['请选择 >','bug问题', '业务问题', '功能使用问题', '其他'],
objectArray: [
{
id: 0,
name: '请选择 >'
},
{
id: 1,
name: 'bug问题'
},
{
id: 2,
name: '业务问题'
},
{
id: 3,
name: '功能使用问题'
},
{
id: 4,
name: '其他'
}
],
index: 0,
srxI:''
},
bindPickerChange (e) {
this.setData({
index: e.detail.value
})
},
goMyorder(){
wx.switchTab({
url: '../about/about',
})
},
addImage(){
wx.chooseMedia({
count: 1,
mediaType: ['image','video'],
sourceType: ['album', 'camera'],
maxDuration: 30,
camera: 'back',
success: res=>{
this.setData({
srcI:res.tempFiles[0].tempFilePath
})
console.log(this.data.srcI)
console.log(res.tempFiles[0].tempFilePath)
// this.up();
}
})
},
//上传图片接口地址
// up(){
// console.log(this.data.srcI)
// wx.uploadFile({
// filePath: this.data.srcI,
// name: 'file',
// url: '',
// })
// },
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})