class Domestic {
constructor() {
util.header(
`
`,
"",
""
)
util.footer()
this.getTagListData()
}
async getTagListData() {
let res = await tagServe.tagList()
$(".type_list").innerHTML = res.maps(v => {
return `
${v.title}
${v.count}套
`
})
}
}
new Domestic