const clickZan = async function (e) {
if (!token) {
alert("请先登录");
} else {
console.log(e.target);
const commentid = e.target.getAttribute("commentid");
debugger;
const result = await reqZan(token, commentid);
e.target.className = "iconfont icon-zan red";
}
};