export function getAppId() {
  const appid = wx.getAccountInfoSync()?.miniProgram?.appId;
  if (appid) return appid;
  return '';
}
