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.
67 lines
1.2 KiB
67 lines
1.2 KiB
2 years ago
|
function formatTime(date) {
|
||
|
var year = date.getFullYear()
|
||
|
var month = date.getMonth() + 1
|
||
|
var day = date.getDate()
|
||
|
|
||
|
var hour = date.getHours()
|
||
|
var minute = date.getMinutes()
|
||
|
var second = date.getSeconds()
|
||
|
|
||
|
|
||
|
return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
|
||
|
}
|
||
|
|
||
|
function formatNumber(n) {
|
||
|
n = n.toString()
|
||
|
return n[1] ? n : '0' + n
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
formatTime: formatTime
|
||
|
};
|
||
|
/*
|
||
|
var index = require('../data/data_index.js')
|
||
|
var index_next = require('../data/data_index_next.js')
|
||
|
|
||
|
function getData(url){
|
||
|
return new Promise(function(resolve, reject){
|
||
|
wx.request({
|
||
|
url: url,
|
||
|
data: {},
|
||
|
header: {
|
||
|
//'Content-Type': 'application/json'
|
||
|
},
|
||
|
success: function(res) {
|
||
|
console.log("success")
|
||
|
resolve(res)
|
||
|
},
|
||
|
fail: function (res) {
|
||
|
reject(res)
|
||
|
console.log("failed")
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
function getData2(){
|
||
|
return index.index;
|
||
|
}
|
||
|
|
||
|
function getNext(){
|
||
|
return index_next.next;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
module.exports.getData = getData;
|
||
|
module.exports.getData2 = getData2;
|
||
|
module.exports.getNext = getNext;
|
||
|
module.exports.getDiscovery = getDiscovery;
|
||
|
module.exports.discoveryNext = discoveryNext;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
*/
|