37 lines
698 B
JavaScript
37 lines
698 B
JavaScript
/**
|
|
* Web二雪
|
|
* 趁时光不老 努力活成自己想要成为的样子
|
|
*/
|
|
Page({
|
|
data: {
|
|
content: '',
|
|
},
|
|
input(e) {
|
|
this.setData({
|
|
content: e.detail.value
|
|
})
|
|
},
|
|
besure() {
|
|
if (this.data.content) {
|
|
wx.$api.user.suggests({
|
|
content: this.data.content
|
|
}).then(res => {
|
|
wx.showToast({
|
|
title: '操作成功,等待客服联系',
|
|
icon: 'none',
|
|
duration: 1000,
|
|
success: res => {
|
|
wx.navigateBack({
|
|
delta: 0,
|
|
})
|
|
}
|
|
})
|
|
})
|
|
} else {
|
|
wx.showToast({
|
|
title: '信息不能为空哦~',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
}
|
|
}) |