|
@@ -1,5 +1,6 @@
|
|
|
const {post, config} = require('./promise.js');
|
|
|
const $ = require("jquery");
|
|
|
+require('../images/rock.png')
|
|
|
|
|
|
$(function(){
|
|
|
function getVersion() {
|
|
@@ -9,7 +10,7 @@ $(function(){
|
|
|
const time = data.refreshTime.substr(0,10);
|
|
|
let dom = '';
|
|
|
$("h1 span").html(data.name);
|
|
|
- $("h1 i").html(time);
|
|
|
+ $(".time").html(time);
|
|
|
for(let i=0;i<dtl.length;i++){
|
|
|
dom += '<p>'+dtl[i].title+'</p><p>'+dtl[i].description+'</p>';
|
|
|
}
|