util.js
4.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// const config = require('../config.js');
// const app = getApp();
// function POST(url, params, boo) {
// if (arguments.length == 3) {
// wx.showLoading({
// title: '加载中...',
// mask: true
// });
// }
// let promise = new Promise(function (resolve, reject) {
// wx.request({
// url: `${config.host}${url}`,
// header: {
// 'content-type': 'application/x-www-form-urlencoded'
// },
// data: params,
// method: 'POST',
// success: function (res) {
// if (arguments.length == 3) {
// wx.hideLoading();
// }
// if (res.data.code === 1) {
// resolve(res.data);
// } else {
// reject(res.data);
// }
// },
// fail: function (err) {
// if (arguments.length == 3) {
// wx.hideLoading();
// }
// wx.showToast({
// title: err.errMsg,
// icon: 'none',
// duration: 2000
// });
// }
// });
// });
// return promise
// }
// function GET(url, obj, boo) {
// if (arguments.length == 3) {
// wx.showLoading({
// title: '加载中...',
// mask: true
// });
// }
// let promise = new Promise(function (resolve, reject) {
// wx.request({
// url: `${config.host}${url}`,
// header: {
// 'content-type': 'application/x-www-form-urlencoded',
// "xx-token": wx.getStorageSync("token") ? wx.getStorageSync("token") : ""
// },
// method: 'GET',
// data: obj,
// success: function (res) {
// if (arguments.length == 3) {
// wx.hideLoading();
// }
// if (res.data.code === 1) {
// resolve(res.data);
// } else {
// reject(res.data);
// }
// },
// fail: function (err) {
// if (arguments.length == 3) {
// wx.hideLoading();
// }
// wx.showToast({
// title: err.errMsg,
// icon: 'none',
// duration: 2000
// });
// }
// })
// });
// return promise
// }
// function showToast(msg, fn) {
// let args = arguments.length;
// wx.showToast({
// title: msg,
// icon: "none",
// duration: 1500,
// mask: true,
// success: function () {
// if (args == 2) {
// setTimeout(function () {
// fn();
// }, 1500)
// }
// }
// })
// }
// //显示提示框
// function showmodel(text) {
// wx.showModal({
// title: '提示',
// content: text,
// showCancel: false
// })
// }
// //将秒数变成想要的日期格式
// function format(time, format) {
// var t = new Date(time);
// var tf = function (i) {
// return (i < 10 ? '0' : '') + i
// };
// return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {
// switch (a) {
// case 'yyyy':
// return tf(t.getFullYear());
// break;
// case 'MM':
// return tf(t.getMonth() + 1);
// break;
// case 'mm':
// return tf(t.getMinutes());
// break;
// case 'dd':
// return tf(t.getDate());
// break;
// case 'HH':
// return tf(t.getHours());
// break;
// case 'ss':
// return tf(t.getSeconds());
// break;
// }
// })
// }
// function ChooseImage(num) {
// var promise = new Promise(function (resolve, reject) {
// wx.chooseImage({
// count: num,
// success: function (res) {
// resolve(res.tempFilePaths);
// },
// })
// });
// return promise;
// }
// function upload(num, fn) {
// ChooseImage(num).then(res => {
// wx.showLoading({
// title: '',
// });
// if (res.length != 0) {
// let promiseList = [];
// for (let value of res) {
// let promise = new Promise((resolve, reject) => {
// wx.uploadFile({
// url: `${config.host}common/upWxappPic`,
// filePath: value,
// name: 'file',
// success: function (res) {
// var data = JSON.parse(res.data);
// if (data.code == 1) {
// resolve(data.data);
// }
// },
// fail: function (err) {
// wx.hideLoading();
// console.log(err);
// }
// });
// });
// promiseList.push(promise);
// }
// Promise.all(promiseList).then(res => {
// fn(res);
// })
// }
// });
// }
// //预览图片
// function previewImage(one, urls) {
// wx.previewImage({
// current: one,
// urls: urls,
// });
// }
// module.exports = {
// post: POST,
// get: GET,
// ChooseImage: ChooseImage,
// showmodel: showmodel,
// upload: upload,
// format: format,
// showToast: showToast,
// previewImage: previewImage
// }