wx-guyantv/pages/kefu/index.js
2024-12-27 17:35:38 +08:00

17 lines
277 B
JavaScript

// index.js
import { getkefu } from "@/api/my";
import { addDiscover, deleteDiscover } from "@/api/home";
Page({
data: {
kfImg: "",
},
async onLoad() {
const res = await getkefu();
console.log(res);
this.setData({
kfImg: res.wxkf,
});
},
});