...
|
...
|
@@ -33,7 +33,7 @@ var g = new common.grid({ |
|
|
display: "最后上传时间", name: "lastAddTime",
|
|
|
render: function (item) {
|
|
|
var t = new Date(item.lastAddTime * 1000);
|
|
|
var formatted = common.util.__dateFormat(t, "yyyy-MM-dd hh/mm/ss");
|
|
|
var formatted = common.util.__dateFormat(t, "yyyy-MM-dd hh:mm:ss");
|
|
|
return "<p>" + formatted + "</p>";
|
|
|
}
|
|
|
},
|
...
|
...
|
@@ -70,7 +70,7 @@ var Bll = { |
|
|
//重新渲染图片列表
|
|
|
rendBoList: function (pictureBoList) {
|
|
|
$(".image-list").html('');
|
|
|
$("#addPic").append(common.util.__template2($("#template2").html(),
|
|
|
$("#addPic").prepend(common.util.__template2($("#template2").html(),
|
|
|
{
|
|
|
pictureBoList: pictureBoList
|
|
|
}
|
...
|
...
|
|