1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const $ = global;
-
- new $.Page({
- data: {
- comment: ''
- },
- onLoad(e) {
- const id = e.id || '';
- this.setData({
- id
- });
- },
- inputComment(e) {
- this.setData({
- comment: e.detail.value
- })
- },
- submit() {
- const {
- id,
- comment
- } = this.data;
- if (!id) return;
- if (!comment) {
- return $.wx.showToast({
- title: '内容不能为空'
- });
- }
- $.wx.showToast({
- title: '加载中'
- }, 'loading');
- $.request('systemController/feedback', 'POST', {
- comment,
- id
- }).then(res => {
- $.wx.showToast({
- title: '提交成功'
- });
- setTimeout(function () {
- $.router.back();
- }, 2000);
- })
- }
- });
|