Fix #35
This commit is contained in:
parent
d58b824d8b
commit
99759b5a77
1 changed files with 5 additions and 20 deletions
|
@ -25,25 +25,10 @@
|
|||
}
|
||||
return parseInt(size * 100) / 100 + filetype[i];
|
||||
}
|
||||
Date.prototype.format = function(fmt) {
|
||||
var o = {
|
||||
"M+": this.getMonth() + 1,
|
||||
"d+": this.getDate(),
|
||||
"h+": this.getHours(),
|
||||
"m+": this.getMinutes(),
|
||||
"s+": this.getSeconds(),
|
||||
"q+": Math.floor((this.getMonth() + 3) / 3),
|
||||
"S": this.getMilliseconds()
|
||||
};
|
||||
if (/(y+)/.test(fmt)) {
|
||||
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
||||
}
|
||||
for (var k in o) {
|
||||
if (new RegExp("(" + k + ")").test(fmt)) {
|
||||
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
||||
}
|
||||
}
|
||||
return fmt;
|
||||
function formateDate(dateString){
|
||||
var bigDate = dateString.split(" ");
|
||||
var smallDate = bigDate[0].split("-");
|
||||
return smallDate[0]+"年"+smallDate[1]+"月"+smallDate[2]+"日 "+bigDate[1];
|
||||
}
|
||||
|
||||
function audioPause() {
|
||||
|
@ -53,7 +38,7 @@
|
|||
$("#size").html(getSize(shareInfo.fileSize));
|
||||
$("#down_num").html(shareInfo.downloadNum);
|
||||
$("#view_num").html(shareInfo.ViewNum);
|
||||
shareTime = new Date(shareInfo.shareDate).format("yyyy年MM月dd日 hh:mm");
|
||||
shareTime = formateDate(shareInfo.shareDate);
|
||||
$("#share_time").html(shareTime);
|
||||
$("#download").click(function() {
|
||||
$.post("/Share/getDownloadUrl", {
|
||||
|
|
Loading…
Add table
Reference in a new issue