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