25 lines
499 B
JavaScript
25 lines
499 B
JavaScript
class Mechanism {
|
|
constructor() {
|
|
footer();
|
|
header("机构");
|
|
this.mechanism()
|
|
}
|
|
|
|
async mechanism(){
|
|
var res = await indexServe.mechanism({});
|
|
console.log(res);
|
|
res.forEach(v => {
|
|
$(".content_mechanism").innerHTML+=`
|
|
<li class="content_mechanism_list">
|
|
<a href="./mechanismList.html?id=${v.id}&text=${v.title}&type=me">
|
|
<p>${v.title}</p>
|
|
<span>${v.quantity}</span>
|
|
</a>
|
|
</li>
|
|
`
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
new Mechanism() |