shareUndefined.html 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
  6. <meta name="format-detection" content="telephone=no">
  7. <title>U店在哪</title>
  8. <style>
  9. :root {
  10. --orange: #F58220;
  11. --orange-light: #FFF4E8;
  12. --red: #FF4D4F;
  13. --text: #333333;
  14. --text-secondary: #999999;
  15. --border: #EEEEEE;
  16. --bg: #FFFFFF;
  17. --safe-bottom: env(safe-area-inset-bottom, 0px);
  18. }
  19. * {
  20. margin: 0;
  21. padding: 0;
  22. box-sizing: border-box;
  23. }
  24. html {
  25. font-size: 16px;
  26. -webkit-tap-highlight-color: transparent;
  27. overflow-x: hidden;
  28. }
  29. body {
  30. font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  31. background: var(--bg);
  32. color: var(--text);
  33. padding-bottom: calc(88px + var(--safe-bottom));
  34. min-height: 100vh;
  35. overflow-x: hidden;
  36. }
  37. /* Header */
  38. .header {
  39. position: sticky;
  40. top: 0;
  41. z-index: 100;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. height: 44px;
  46. padding: 0 15px;
  47. background: var(--bg);
  48. border-bottom: 1px solid var(--border);
  49. }
  50. .header__back {
  51. position: absolute;
  52. left: 15px;
  53. width: 24px;
  54. height: 24px;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. color: var(--text);
  59. text-decoration: none;
  60. }
  61. .header__title {
  62. font-size: 17px;
  63. font-weight: 600;
  64. color: var(--text);
  65. }
  66. /* Hero carousel */
  67. .hero {
  68. position: relative;
  69. margin: 0 15px;
  70. margin-top: 10px;
  71. border-radius: 0 0 12px 12px;
  72. overflow: hidden;
  73. }
  74. /* 内容不存在 / 已删除:居中插图 + 说明文案 */
  75. .hero.hero--empty {
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. justify-content: center;
  80. padding: 48px 24px 56px;
  81. min-height: min(52vh, 440px);
  82. background: var(--bg);
  83. overflow: visible;
  84. }
  85. .hero--empty__illustration {
  86. display: block;
  87. width: 100%;
  88. max-width: 280px;
  89. height: auto;
  90. object-fit: contain;
  91. }
  92. .hero--empty__tip {
  93. padding: 0 16px;
  94. font-size: 15px;
  95. line-height: 1.5;
  96. color: var(--text-secondary);
  97. text-align: center;
  98. font-weight: 400;
  99. }
  100. .hero__track {
  101. display: flex;
  102. transition: transform 0.35s ease;
  103. }
  104. .hero__slide {
  105. flex: 0 0 100%;
  106. aspect-ratio: 16 / 10;
  107. background: #f0f0f0;
  108. }
  109. .hero__slide img {
  110. width: 100%;
  111. height: 100%;
  112. object-fit: cover;
  113. display: block;
  114. vertical-align: middle;
  115. }
  116. .hero__dots {
  117. position: absolute;
  118. bottom: 12px;
  119. left: 0;
  120. right: 0;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. gap: 6px;
  125. }
  126. .hero__dot {
  127. width: 6px;
  128. height: 6px;
  129. border-radius: 3px;
  130. background: rgba(255, 255, 255, 0.45);
  131. transition: width 0.25s ease, background 0.25s ease;
  132. }
  133. .hero__dot.is-active {
  134. width: 16px;
  135. background: #fff;
  136. }
  137. /* Store block */
  138. .section {
  139. padding: 16px 15px 0;
  140. }
  141. .store-name {
  142. font-size: 20px;
  143. font-weight: 700;
  144. line-height: 1.35;
  145. margin-bottom: 12px;
  146. }
  147. .row {
  148. display: flex;
  149. align-items: center;
  150. justify-content: space-between;
  151. gap: 10px;
  152. }
  153. .rating-row {
  154. margin-bottom: 12px;
  155. }
  156. .stars {
  157. display: inline-flex;
  158. align-items: center;
  159. gap: 2px;
  160. }
  161. .star {
  162. width: 14px;
  163. height: 14px;
  164. color: var(--orange);
  165. }
  166. .rating-num {
  167. margin-left: 6px;
  168. font-size: 14px;
  169. font-weight: 600;
  170. color: var(--orange);
  171. }
  172. .link-muted {
  173. display: inline-flex;
  174. align-items: center;
  175. gap: 2px;
  176. font-size: 13px;
  177. color: var(--text-secondary);
  178. text-decoration: none;
  179. }
  180. .chevron {
  181. width: 14px;
  182. height: 14px;
  183. opacity: 0.6;
  184. }
  185. .hours-row {
  186. margin-bottom: 16px;
  187. align-items: flex-start;
  188. }
  189. .hours-left {
  190. flex: 1;
  191. min-width: 0;
  192. }
  193. .status {
  194. font-size: 14px;
  195. color: var(--red);
  196. margin-right: 8px;
  197. }
  198. .status.is-open {
  199. color: var(--orange);
  200. }
  201. .hours-text {
  202. font-size: 14px;
  203. color: var(--text-secondary);
  204. }
  205. .divider {
  206. height: 8px;
  207. background: #F7F7F7;
  208. margin: 0;
  209. }
  210. /* Location */
  211. .loc-wrap {
  212. display: flex;
  213. padding: 16px 15px;
  214. gap: 12px;
  215. }
  216. .loc-main {
  217. flex: 1;
  218. min-width: 0;
  219. padding-right: 12px;
  220. }
  221. .addr {
  222. font-size: 15px;
  223. font-weight: 600;
  224. line-height: 1.45;
  225. margin-bottom: 10px;
  226. }
  227. .meta-line {
  228. display: flex;
  229. align-items: flex-start;
  230. gap: 6px;
  231. font-size: 13px;
  232. color: var(--text-secondary);
  233. line-height: 1.45;
  234. margin-top: 6px;
  235. }
  236. .meta-line svg {
  237. flex-shrink: 0;
  238. margin-top: 2px;
  239. opacity: 0.75;
  240. }
  241. .loc-actions {
  242. display: flex;
  243. flex-direction: row;
  244. align-items: center;
  245. justify-content: center;
  246. gap: 18px;
  247. flex-shrink: 0;
  248. }
  249. .act-btn {
  250. display: flex;
  251. flex-direction: column;
  252. align-items: center;
  253. gap: 4px;
  254. background: none;
  255. border: none;
  256. padding: 0;
  257. cursor: pointer;
  258. font-size: 12px;
  259. color: var(--text);
  260. }
  261. .act-btn__icon {
  262. width: 44px;
  263. height: 44px;
  264. border-radius: 50%;
  265. background: #F5F5F5;
  266. display: flex;
  267. align-items: center;
  268. justify-content: center;
  269. color: var(--orange);
  270. }
  271. /* More */
  272. .more-title {
  273. padding: 8px 15px 12px;
  274. font-size: 16px;
  275. font-weight: 700;
  276. }
  277. .more-scroll {
  278. display: grid;
  279. grid-template-columns: repeat(2, 1fr);
  280. gap: 10px;
  281. padding: 0 15px 20px;
  282. }
  283. #recEmpty {
  284. grid-column: 1 / -1;
  285. }
  286. .rec-card {
  287. min-width: 0;
  288. background: #fff;
  289. border-radius: 8px;
  290. overflow: hidden;
  291. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  292. }
  293. .rec-card__img {
  294. aspect-ratio: 4 / 3;
  295. background: #eee;
  296. }
  297. .rec-card__img img {
  298. width: 100%;
  299. height: 100%;
  300. object-fit: cover;
  301. }
  302. .rec-card__body {
  303. padding: 10px;
  304. }
  305. .rec-card__top {
  306. display: flex;
  307. justify-content: space-between;
  308. align-items: baseline;
  309. gap: 8px;
  310. margin-bottom: 6px;
  311. }
  312. .rec-card__name {
  313. font-size: 15px;
  314. font-weight: 700;
  315. flex: 1;
  316. min-width: 0;
  317. overflow: hidden;
  318. text-overflow: ellipsis;
  319. white-space: nowrap;
  320. }
  321. .rec-card__dist {
  322. font-size: 12px;
  323. color: var(--text-secondary);
  324. flex-shrink: 0;
  325. }
  326. .rec-card__rating {
  327. display: flex;
  328. align-items: center;
  329. flex-wrap: wrap;
  330. gap: 4px 8px;
  331. }
  332. .rec-card__rating .stars .star {
  333. width: 11px;
  334. height: 11px;
  335. }
  336. .rec-card__rating .rating-num {
  337. font-size: 12px;
  338. }
  339. .rec-meta {
  340. font-size: 12px;
  341. color: var(--text-secondary);
  342. }
  343. .rec-card__seller {
  344. display: flex;
  345. align-items: center;
  346. gap: 8px;
  347. margin-top: 8px;
  348. min-width: 0;
  349. }
  350. .rec-card__avatar {
  351. width: 22px;
  352. height: 22px;
  353. border-radius: 50%;
  354. object-fit: cover;
  355. flex-shrink: 0;
  356. background: #eee;
  357. }
  358. .rec-card__seller-name {
  359. font-size: 12px;
  360. color: var(--text-secondary);
  361. overflow: hidden;
  362. text-overflow: ellipsis;
  363. white-space: nowrap;
  364. }
  365. /* FAB */
  366. .fab-wrap {
  367. position: fixed;
  368. left: 0;
  369. right: 0;
  370. bottom: 0;
  371. z-index: 200;
  372. padding: 12px 24px calc(12px + var(--safe-bottom));
  373. background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 70%, transparent);
  374. pointer-events: none;
  375. }
  376. .fab-dock__slot {
  377. width: 100%;
  378. max-width: 198px;
  379. height: 48px;
  380. margin: 0 auto;
  381. pointer-events: auto;
  382. }
  383. #openApp img {
  384. display: block;
  385. width: 100%;
  386. height: 48px;
  387. object-fit: contain;
  388. pointer-events: none;
  389. }
  390. #launch-btn {
  391. display: none;
  392. width: 100%;
  393. height: 48px;
  394. min-height: 48px;
  395. border-radius: 24px;
  396. overflow: hidden;
  397. opacity: 1;
  398. }
  399. body.is-wechat.wx-jssdk-ready #launch-btn {
  400. display: block;
  401. }
  402. body.is-wechat.wx-jssdk-ready #openApp {
  403. display: none !important;
  404. }
  405. #openAppToast {
  406. display: none;
  407. position: fixed;
  408. left: 16px;
  409. right: 16px;
  410. bottom: calc(72px + var(--safe-bottom));
  411. z-index: 10001;
  412. padding: 10px 14px;
  413. font-size: 13px;
  414. line-height: 1.45;
  415. color: #fff;
  416. text-align: center;
  417. background: rgba(0, 0, 0, 0.78);
  418. border-radius: 8px;
  419. pointer-events: none;
  420. word-break: break-all;
  421. }
  422. #openApp {
  423. touch-action: manipulation;
  424. }
  425. .fab-wrap .fab {
  426. pointer-events: auto;
  427. }
  428. .fab {
  429. display: flex;
  430. align-items: center;
  431. justify-content: center;
  432. gap: 10px;
  433. width: 100%;
  434. max-width: 198px;
  435. margin: 0 auto;
  436. height: 48px;
  437. border: none;
  438. border-radius: 24px;
  439. background: var(--orange);
  440. color: #fff;
  441. font-size: 16px;
  442. font-weight: 600;
  443. box-shadow: 0 4px 16px rgba(245, 130, 32, 0.45);
  444. cursor: pointer;
  445. }
  446. .fab__logo {
  447. width: 28px;
  448. height: 28px;
  449. flex-shrink: 0;
  450. }
  451. .home-indicator {
  452. height: 5px;
  453. background: #000;
  454. border-radius: 3px;
  455. width: 134px;
  456. margin: 8px auto 4px;
  457. opacity: 0.2;
  458. }
  459. </style>
  460. </head>
  461. <body>
  462. <div class="hero hero--empty" id="hero" role="status" aria-live="polite">
  463. <img class="hero--empty__illustration" src="images/empty.png" alt="" decoding="async">
  464. <p class="hero--empty__tip">商品已删除/下架/卖出</p>
  465. </div>
  466. <div class="divider"></div>
  467. <h3 class="more-title">更多推荐</h3>
  468. <div class="more-scroll" id="recList">
  469. <p id="recEmpty" style="padding:12px;color:#999;font-size:14px;display:none;">暂无推荐</p>
  470. </div>
  471. <div id="openAppToast" role="status" aria-live="polite"></div>
  472. <div class="fab-wrap">
  473. <div class="fab-dock__slot">
  474. <!-- 非微信 / 微信 JSSDK 未就绪:scheme 唤起 -->
  475. <button type="button" class="fab" id="openApp">
  476. <img src="images/ubtn.png" alt="APP内打开" decoding="async">
  477. </button>
  478. <!-- 微信内 wx.config 成功后:仅此按钮可唤起 App(须用户直接点击) -->
  479. <wx-open-launch-app id="launch-btn" appid="wxf5f1efe3a9f5012e" extinfo="">
  480. <script type="text/wxtag-template">
  481. <style>
  482. .wx-open-app-btn {
  483. display: block;
  484. width: 100%;
  485. height: 48px;
  486. margin: 0;
  487. padding: 0;
  488. border: none;
  489. border-radius: 24px;
  490. background: #F47D1F;
  491. box-shadow: 0 4px 16px rgba(245, 130, 32, 0.45);
  492. cursor: pointer;
  493. overflow: hidden;
  494. -webkit-tap-highlight-color: transparent;
  495. }
  496. .wx-open-app-btn img {
  497. display: block;
  498. width: 100%;
  499. height: 48px;
  500. object-fit: contain;
  501. opacity: 1;
  502. pointer-events: none;
  503. -webkit-user-drag: none;
  504. }
  505. </style>
  506. <button class="wx-open-app-btn" aria-label="APP内打开">
  507. <img src="https://test.ailien.shop/h5/HBuilderProjects/images/uBtn.png" alt="APP内打开" width="198" height="48" />
  508. </button>
  509. </script>
  510. </wx-open-launch-app>
  511. </div>
  512. <div class="home-indicator" aria-hidden="true"></div>
  513. </div>
  514. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  515. <script>
  516. (function () {
  517. 'use strict';
  518. /**
  519. * 更多推荐:POST http://124.93.18.180:9100/ai/life-manager/api/v1/second_hand/global-recommend
  520. * 常用 query:userId、userLat/userLng 或 lat/weidu、lon/jingdu、radiusKm、page、pageSize、categoryOneId、categoryTwoId
  521. *
  522. * 本页仅展示「已卖出 / 下架 / 删除」占位与推荐,无有效商品详情:点「APP内打开」一律进 App 登录页
  523. * shopro://pages/index/login?…(与 shareIndex.html 关店唤起一致)。在 App 内嵌 H5 且存在 uni 时优先 uni.navigateTo。
  524. *
  525. * 注意:用 file:// 打开本页时,浏览器可能因 CORS 拦截跨域请求。
  526. */
  527. var API_BASE = 'https://test.ailien.shop/alienStore';
  528. var API_LIFE_AI_BASE = 'http://183.252.196.135:9100';
  529. var SECOND_GLOBAL_RECOMMEND_PATH = '/ai/life-manager/api/v1/second_hand/global-recommend';
  530. var DEFAULT_REC_RADIUS_KM = 195.69;
  531. /**
  532. * 微信 JSSDK — 与 shareIndex.html 一致
  533. * POST {API_BASE}/wx/getWxConfig,body 传 url(当前页完整地址,不含 #)
  534. */
  535. var WECHAT_MP_APP_ID = 'wx412792c77f47babd';
  536. var WECHAT_OPEN_APP_ID = 'wxf5f1efe3a9f5012e';
  537. var WECHAT_GET_WX_CONFIG_PATH = '/wx/getWxConfig';
  538. var H5_PAGE_BASE_FALLBACK = 'https://test.ailien.shop/h5/HBuilderProjects/';
  539. var WX_GET_CONFIG_SIGN_URL = H5_PAGE_BASE_FALLBACK + 'shareUndefined.html';
  540. var WECHAT_JS_SAFE_HOSTS = ['uat.ailien.shop', 'test.ailien.shop'];
  541. var weChatJssdkConfigured = false;
  542. var wxConfigSignRetriedBaseUrl = false;
  543. var wxInitLastError = '';
  544. var wxJssdkInitPromise = null;
  545. /**
  546. * 与 secondShareGoods.html 一致:唤起 App 打开二手商品详情页(合并 search + hash 内 query)
  547. */
  548. var APP_ANDROID_PACKAGE = 'com.alien.Udianzaizhe';
  549. var APP_IOS_URL_SCHEME = 'shopro://';
  550. var APP_UNI_STORE_PATH = 'pages/secondHandTransactions/pages/detail/index';
  551. function showDownloadTip() {
  552. var msg = '请到应用商店下载';
  553. if (typeof uni !== 'undefined' && typeof uni.showToast === 'function') {
  554. uni.showToast({ title: msg, icon: 'none', duration: 2500 });
  555. } else {
  556. window.alert(msg);
  557. }
  558. }
  559. function mergeSearchAndHashParams() {
  560. var params = new URLSearchParams();
  561. function ingestAppend(querySlice) {
  562. if (!querySlice) return;
  563. var p = new URLSearchParams(querySlice);
  564. p.forEach(function (val, key) {
  565. params.append(key, val);
  566. });
  567. }
  568. function ingestSet(querySlice) {
  569. if (!querySlice) return;
  570. var p = new URLSearchParams(querySlice);
  571. p.forEach(function (val, key) {
  572. params.set(key, val);
  573. });
  574. }
  575. if (location.search && location.search.length > 1) {
  576. ingestAppend(location.search.slice(1));
  577. }
  578. var hash = location.hash || '';
  579. var qi = hash.indexOf('?');
  580. if (qi >= 0) {
  581. ingestSet(hash.slice(qi + 1));
  582. }
  583. return params;
  584. }
  585. function q(name) {
  586. var v = mergeSearchAndHashParams().get(name);
  587. return v == null ? '' : String(v);
  588. }
  589. /** 推荐用户位置:优先 URL 的 longitude/latitude,未带时用默认坐标 */
  590. var DEFAULT_REC_USER_LAT = (function () {
  591. var raw = (q('latitude') || q('lat') || q('weidu') || '').trim();
  592. var n = raw !== '' ? Number(raw) : NaN;
  593. return !isNaN(n) ? n : 38.925756;
  594. })();
  595. var DEFAULT_REC_USER_LNG = (function () {
  596. var raw = (q('longitude') || q('lon') || q('jingdu') || '').trim();
  597. var n = raw !== '' ? Number(raw) : NaN;
  598. return !isNaN(n) ? n : 121.662543;
  599. })();
  600. function rawQueryHasGoodsId(qs) {
  601. return /(?:^|&)(goodsId|id)=/i.test('&' + String(qs || '') + '&');
  602. }
  603. function getRawMergedQueryForAppOpen() {
  604. var rawSearch =
  605. location.search && location.search.length > 1 ? location.search.slice(1) : '';
  606. var hash0 = location.hash || '';
  607. var hqi0 = hash0.indexOf('?');
  608. var rawHashQ = hqi0 >= 0 ? hash0.slice(hqi0 + 1) : '';
  609. if (!rawSearch && !rawHashQ) return '';
  610. if (rawHashQ && rawSearch) {
  611. if (rawQueryHasGoodsId(rawHashQ)) return rawHashQ;
  612. if (rawQueryHasGoodsId(rawSearch)) return rawSearch;
  613. return rawHashQ;
  614. }
  615. return rawHashQ || rawSearch;
  616. }
  617. /** 本 HTML 仅为不可用商品落地页,唤起路径固定为登录(不依赖 URL 是否带 goodsUnavailable,避免旧链/丢参) */
  618. function getAppUniPathForShareUndefined() {
  619. return 'pages/index/login';
  620. }
  621. function buildAppOpenQueryStringMerged() {
  622. var rawQs = getRawMergedQueryForAppOpen();
  623. if (rawQs) {
  624. return '?' + rawQs;
  625. }
  626. var params = mergeSearchAndHashParams();
  627. var gid = params.get('goodsId') || params.get('id') || '';
  628. if (gid && !params.has('goodsId')) {
  629. params.set('goodsId', gid);
  630. }
  631. if (gid && !params.has('id')) {
  632. params.set('id', gid);
  633. }
  634. var sid = params.get('storeId') || '';
  635. if (sid && !params.has('storeId')) {
  636. params.set('storeId', sid);
  637. }
  638. var qsOut = params.toString();
  639. return qsOut ? ('?' + qsOut) : '';
  640. }
  641. /**
  642. * 微信 extinfo 专用 query:禁止透传整段原始 query(易超 1024 或含封面/描述等大字段导致 launch:fail)。
  643. * 与 secondShareGoods / shareDynamic 一致,仅保留 App 登录页解析所需字段。
  644. */
  645. function buildWxLaunchQueryParams() {
  646. var params = mergeSearchAndHashParams();
  647. var mini = new URLSearchParams();
  648. mini.set('goodsUnavailable', '1');
  649. var gs = params.get('goodsStatus');
  650. if (gs != null && String(gs).trim() !== '') {
  651. mini.set('goodsStatus', String(gs).trim());
  652. }
  653. var goodsId = params.get('goodsId') || params.get('id') || '';
  654. if (goodsId) {
  655. mini.set('goodsId', String(goodsId).trim());
  656. mini.set('id', String(goodsId).trim());
  657. }
  658. var userId = params.get('userId');
  659. if (userId != null && String(userId).trim() !== '') {
  660. mini.set('userId', String(userId).trim());
  661. }
  662. var sid = params.get('storeId');
  663. if (sid != null && String(sid).trim() !== '') {
  664. mini.set('storeId', String(sid).trim());
  665. }
  666. var lon =
  667. params.get('longitude') ||
  668. params.get('lon') ||
  669. params.get('lng') ||
  670. params.get('jingdu') ||
  671. '';
  672. if (lon !== '' && !isNaN(Number(lon))) {
  673. mini.set('longitude', String(lon));
  674. }
  675. var lat =
  676. params.get('latitude') ||
  677. params.get('lat') ||
  678. params.get('weidu') ||
  679. '';
  680. if (lat !== '' && !isNaN(Number(lat))) {
  681. mini.set('latitude', String(lat));
  682. }
  683. var city = params.get('userCity') || params.get('city');
  684. if (city != null && String(city).trim() !== '') {
  685. mini.set('userCity', String(city).trim());
  686. }
  687. return mini;
  688. }
  689. /** Uni 路由串(无 shopro://),供 wx-open-launch-app extinfo */
  690. function buildAppUniPageLaunchUrl() {
  691. var path = getAppUniPathForShareUndefined().replace(/^\//, '');
  692. var qs = buildWxLaunchQueryParams().toString();
  693. return qs ? path + '?' + qs : path;
  694. }
  695. /**
  696. * wx-open-launch-app extinfo:pages/index/login?…(与 shareIndex 关店唤起一致)
  697. */
  698. function buildWeChatLaunchExtinfo(useBarePathOnly) {
  699. var path = getAppUniPathForShareUndefined().replace(/^\//, '');
  700. if (useBarePathOnly) return path;
  701. var mini = buildWxLaunchQueryParams();
  702. var goodsId = mini.get('goodsId') || mini.get('id') || '';
  703. if (goodsId) {
  704. mini.set('goodsId', goodsId);
  705. mini.set('id', goodsId);
  706. }
  707. var qs = mini.toString();
  708. var uniPage = qs ? path + '?' + qs : path;
  709. if (uniPage.length <= 1024) return uniPage;
  710. var shortKeys = ['goodsUnavailable', 'goodsStatus', 'goodsId', 'id', 'userId'];
  711. var shortMini = new URLSearchParams();
  712. shortKeys.forEach(function (key) {
  713. var val = mini.get(key);
  714. if (val != null && String(val).trim() !== '') {
  715. shortMini.set(key, String(val).trim());
  716. }
  717. });
  718. var shortPage = shortMini.toString() ? path + '?' + shortMini.toString() : path;
  719. return shortPage.length <= 1024 ? shortPage : path;
  720. }
  721. /** 供 App 内嵌 WebView:uni 路由到登录页,query 与深链一致 */
  722. function buildUniLoginPageUrl() {
  723. var tail = buildAppOpenQueryStringMerged();
  724. var u = '/pages/index/login' + (tail || '');
  725. return u.length > 1800 ? '/pages/index/login' : u;
  726. }
  727. function buildAppDeepLink() {
  728. var path = getAppUniPathForShareUndefined().replace(/^\//, '');
  729. var s = buildAppOpenQueryStringMerged();
  730. var root = APP_IOS_URL_SCHEME.replace(/\/$/, '');
  731. if (!s) {
  732. return root + '/' + path;
  733. }
  734. return root + '/' + path + s;
  735. }
  736. function isWeChatInAppBrowser() {
  737. return /MicroMessenger/i.test(navigator.userAgent || '');
  738. }
  739. function readQueryParam(name) {
  740. return q(name);
  741. }
  742. function isWxDebugOn() {
  743. return readQueryParam('wxDebug') === '1';
  744. }
  745. function isWxForceDebug() {
  746. return readQueryParam('wxForce') === '1';
  747. }
  748. function isWxConfigOnClickDebug() {
  749. return readQueryParam('wxConfigOnClick') === '1';
  750. }
  751. function isWxPcAutoDebugHost() {
  752. var h = (location.hostname || '').toLowerCase();
  753. if (h === 'localhost' || h === '127.0.0.1') return true;
  754. for (var i = 0; i < WECHAT_JS_SAFE_HOSTS.length; i++) {
  755. if (WECHAT_JS_SAFE_HOSTS[i] === h) return true;
  756. }
  757. return false;
  758. }
  759. function isWxPcBrowser() {
  760. return !isWeChatInAppBrowser();
  761. }
  762. function shouldInitWeChatJssdkOnLoad() {
  763. if (isWeChatInAppBrowser()) return true;
  764. return isWxForceDebug() || isWxPcAutoDebugHost();
  765. }
  766. function shouldFetchWxConfig(fromUserClick) {
  767. if (isWeChatInAppBrowser()) return true;
  768. if (fromUserClick) return true;
  769. return isWxForceDebug() || isWxPcAutoDebugHost();
  770. }
  771. function getWxHtmlUrl() {
  772. var forced = String(q('wxSignUrl') || '').trim();
  773. if (forced) return forced.split('#')[0];
  774. return String(location.href || '').split('#')[0];
  775. }
  776. function getWxSignPageUrlForApi() {
  777. var htmlUrl = getWxHtmlUrl();
  778. if (htmlUrl && /^https?:\/\//i.test(htmlUrl)) return htmlUrl;
  779. return WX_GET_CONFIG_SIGN_URL;
  780. }
  781. function getWxHtmlUrlBase() {
  782. var htmlUrl = getWxSignPageUrlForApi();
  783. try {
  784. var u = new URL(htmlUrl);
  785. return u.origin + u.pathname;
  786. } catch (eU) {
  787. return WX_GET_CONFIG_SIGN_URL;
  788. }
  789. }
  790. function getWxConfigSignUrl() {
  791. if (String(q('wxSignBaseOnly') || '') === '1') return getWxHtmlUrlBase();
  792. return getWxSignPageUrlForApi();
  793. }
  794. function getWxGetConfigApiUrl() {
  795. return API_BASE.replace(/\/$/, '') + WECHAT_GET_WX_CONFIG_PATH;
  796. }
  797. function buildWxGetConfigRequestBody(htmlUrl) {
  798. return {
  799. url: String(htmlUrl || '').split('#')[0].trim()
  800. };
  801. }
  802. function resolveWxConfigAppIdFromSignData(d) {
  803. if (!d || typeof d !== 'object') return '';
  804. var mp =
  805. d.mpAppId ||
  806. d.mpAppid ||
  807. d.officialAppId ||
  808. d.gzhAppId ||
  809. d.serviceAppId;
  810. if (mp != null && String(mp).trim() !== '') return String(mp).trim();
  811. var fromQuery = String(q('wxMpAppId') || WECHAT_MP_APP_ID || '').trim();
  812. if (fromQuery) return fromQuery;
  813. var raw = d.appId || d.appid || d.wxAppId;
  814. return raw != null && String(raw).trim() !== '' ? String(raw).trim() : '';
  815. }
  816. function normalizeWxJssdkSignPayload(res, signUrlUsed) {
  817. if (!res || typeof res !== 'object') return null;
  818. var d = res.data != null && typeof res.data === 'object' ? res.data : res;
  819. if (!d || typeof d !== 'object') return null;
  820. var appId = resolveWxConfigAppIdFromSignData(d);
  821. var timestamp = d.timestamp != null ? d.timestamp : d.timeStamp;
  822. var nonceStr =
  823. d.nonceStr != null && String(d.nonceStr) !== ''
  824. ? d.nonceStr
  825. : d.noncestr != null && String(d.noncestr) !== ''
  826. ? d.noncestr
  827. : d.nonce;
  828. var signature = d.signature || d.sign;
  829. if (!appId || timestamp == null || nonceStr == null || nonceStr === '' || !signature) {
  830. return null;
  831. }
  832. return {
  833. appId: String(appId),
  834. timestamp: Number(timestamp),
  835. nonceStr: String(nonceStr),
  836. signature: String(signature),
  837. signUrl: String(signUrlUsed || '')
  838. .split('#')[0]
  839. .trim()
  840. };
  841. }
  842. function getWxErrMsg(err) {
  843. if (!err) return '';
  844. if (err.errMsg) return String(err.errMsg);
  845. if (typeof err === 'string') return err;
  846. try {
  847. return JSON.stringify(err);
  848. } catch (e) {
  849. return String(err);
  850. }
  851. }
  852. function formatWxConfigErrorTip(err, signPageUrl) {
  853. var errMsg = getWxErrMsg(err);
  854. var tip = '微信 JSSDK 配置失败';
  855. if (/invalid signature/i.test(errMsg)) {
  856. return (
  857. tip +
  858. ':签名无效。请核对:①后端用与前端相同的 url 签名;②url=' +
  859. (signPageUrl || getWxHtmlUrl()) +
  860. ';③nonceStr/timestamp 与接口返回一致;④appId=' +
  861. WECHAT_MP_APP_ID
  862. );
  863. }
  864. if (/require\s*subscribe/i.test(errMsg)) {
  865. return tip + ':' + errMsg + '(服务号需用户已关注)';
  866. }
  867. return errMsg ? tip + ':' + errMsg : tip;
  868. }
  869. function setWxInitError(msg) {
  870. wxInitLastError = String(msg || '').trim();
  871. if (wxInitLastError) console.warn('[wx]', wxInitLastError);
  872. }
  873. function requestWeChatJssdkSignAndConfig(htmlUrlOptional) {
  874. var htmlUrl = String(
  875. htmlUrlOptional != null ? htmlUrlOptional : getWxConfigSignUrl()
  876. )
  877. .split('#')[0]
  878. .trim();
  879. if (!htmlUrl || !/^https?:\/\//i.test(htmlUrl)) {
  880. htmlUrl = WX_GET_CONFIG_SIGN_URL;
  881. }
  882. if (isWxDebugOn()) {
  883. try {
  884. window.alert('htmlUrl(签名用):\n' + htmlUrl);
  885. } catch (eDbg) {}
  886. }
  887. var requestUrl = getWxGetConfigApiUrl();
  888. var requestBody = buildWxGetConfigRequestBody(htmlUrl);
  889. console.log('[wx] htmlUrl=', htmlUrl);
  890. console.log('[wx] POST getWxConfig →', requestUrl, requestBody);
  891. return fetch(requestUrl, {
  892. method: 'POST',
  893. mode: 'cors',
  894. credentials: 'omit',
  895. headers: {
  896. Accept: 'application/json',
  897. 'Content-Type': 'application/json;charset=UTF-8'
  898. },
  899. body: JSON.stringify(requestBody)
  900. })
  901. .then(function (r) {
  902. if (r.ok) return r.json();
  903. return r
  904. .text()
  905. .catch(function () {
  906. return '';
  907. })
  908. .then(function (text) {
  909. var hint = '';
  910. try {
  911. var j = JSON.parse(text);
  912. hint = j.msg || j.message || '';
  913. } catch (eP) {
  914. if (text) hint = text.slice(0, 120);
  915. }
  916. throw new Error('getWxConfig HTTP ' + r.status + (hint ? ':' + hint : ''));
  917. });
  918. })
  919. .then(function (res) {
  920. if (res && res.code != null) {
  921. var c = Number(res.code);
  922. if (c !== 200 && c !== 0 && res.success !== true) {
  923. throw new Error(res.msg || res.message || 'getWxConfig code ' + c);
  924. }
  925. }
  926. var sign = normalizeWxJssdkSignPayload(res, htmlUrl);
  927. if (!sign) {
  928. console.warn('[wx] getWxConfig 响应字段不全', res, 'htmlUrl=', htmlUrl);
  929. throw new Error(
  930. 'getWxConfig 缺少 appId/timestamp/nonceStr/signature(见控制台)'
  931. );
  932. }
  933. if (sign.appId !== WECHAT_MP_APP_ID) {
  934. console.warn(
  935. '[wx] 后端 appId=' + sign.appId + ',期望服务号 ' + WECHAT_MP_APP_ID
  936. );
  937. }
  938. if (typeof wx === 'undefined') {
  939. if (isWxPcBrowser()) {
  940. console.log('[wx] PC getWxConfig 成功(无 jweixin)', sign);
  941. return true;
  942. }
  943. setWxInitError('jweixin.js 未加载');
  944. return false;
  945. }
  946. return applyWxConfigFromSign(sign, htmlUrl);
  947. });
  948. }
  949. function applyWxConfigFromSign(sign, htmlUrl) {
  950. var wxConfigParams = {
  951. debug: isWxDebugOn(),
  952. appId: String(sign.appId),
  953. timestamp: sign.timestamp,
  954. nonceStr: String(sign.nonceStr),
  955. signature: String(sign.signature),
  956. jsApiList: [],
  957. openTagList: ['wx-open-launch-app']
  958. };
  959. return new Promise(function (resolve) {
  960. wx.config(wxConfigParams);
  961. wx.ready(function () {
  962. weChatJssdkConfigured = true;
  963. document.body.classList.add('wx-jssdk-ready');
  964. refreshWxLaunchTagAttrs();
  965. console.log('[wx.config] ready, htmlUrl=', htmlUrl);
  966. resolve(true);
  967. });
  968. wx.error(function (err) {
  969. weChatJssdkConfigured = false;
  970. document.body.classList.remove('wx-jssdk-ready');
  971. wxJssdkInitPromise = null;
  972. var errMsg = getWxErrMsg(err);
  973. setWxInitError(formatWxConfigErrorTip(err, htmlUrl));
  974. if (isWxDebugOn()) window.alert(wxInitLastError);
  975. console.warn('[wx.config]', errMsg, 'htmlUrl=', htmlUrl);
  976. var baseUrl = getWxHtmlUrlBase();
  977. var fullUrl = getWxSignPageUrlForApi();
  978. if (
  979. !/invalid signature/i.test(errMsg) ||
  980. wxConfigSignRetriedBaseUrl ||
  981. baseUrl === fullUrl ||
  982. htmlUrl === baseUrl
  983. ) {
  984. resolve(false);
  985. return;
  986. }
  987. wxConfigSignRetriedBaseUrl = true;
  988. requestWeChatJssdkSignAndConfig(baseUrl).then(resolve);
  989. });
  990. });
  991. }
  992. function refreshWxLaunchTagAttrs(useBarePathOnly) {
  993. var tag = document.getElementById('launch-btn');
  994. if (!tag) return;
  995. try {
  996. tag.setAttribute('appid', WECHAT_OPEN_APP_ID);
  997. tag.setAttribute('extinfo', buildWeChatLaunchExtinfo(!!useBarePathOnly));
  998. console.log('[wx-open-launch-app] extinfo=', tag.getAttribute('extinfo'));
  999. } catch (eA) {}
  1000. }
  1001. function bindWeChatLaunchTagEvents() {
  1002. var tag = document.getElementById('launch-btn');
  1003. if (!tag || tag._wxLaunchBound) return;
  1004. tag._wxLaunchBound = true;
  1005. tag._wxLaunchBareRetried = false;
  1006. refreshWxLaunchTagAttrs(false);
  1007. tag.addEventListener('launch', function () {
  1008. tag._wxLaunchBareRetried = false;
  1009. console.log('[wx-open-launch-app] launch ok');
  1010. showFabToast('正在打开 U店在哪…');
  1011. });
  1012. tag.addEventListener('error', function (e) {
  1013. var detail = e && e.detail;
  1014. var errMsg =
  1015. detail && detail.errMsg
  1016. ? String(detail.errMsg)
  1017. : detail && detail.errmsg
  1018. ? String(detail.errmsg)
  1019. : '';
  1020. console.warn('[wx-open-launch-app]', detail, 'extinfo=', tag.getAttribute('extinfo'));
  1021. if (/launch:fail_check/i.test(errMsg)) {
  1022. showAppOpenFailTip(
  1023. '未能唤起 App:' +
  1024. errMsg +
  1025. '。请确认公众号已关联移动应用「U店在哪」,且 JS 安全域名与当前页一致。'
  1026. );
  1027. return;
  1028. }
  1029. if (
  1030. /launch:fail/i.test(errMsg) &&
  1031. !tag._wxLaunchBareRetried &&
  1032. tag.getAttribute('extinfo') !== buildWeChatLaunchExtinfo(true)
  1033. ) {
  1034. tag._wxLaunchBareRetried = true;
  1035. refreshWxLaunchTagAttrs(true);
  1036. showFabToast('请再点一次「APP内打开」');
  1037. return;
  1038. }
  1039. showAppOpenFailTip(
  1040. errMsg
  1041. ? '未能唤起 App:' + errMsg + '。请确认已安装最新版「U店在哪」。'
  1042. : '未能唤起 App,请确认已安装 U店在哪,且开放平台已绑定服务号与移动应用。'
  1043. );
  1044. });
  1045. }
  1046. function initWeChatOpenLaunchApp(fromUserClick) {
  1047. if (!shouldFetchWxConfig(!!fromUserClick)) {
  1048. console.log('[wx] 未调用 getWxConfig');
  1049. return Promise.resolve(false);
  1050. }
  1051. if (isWxPcBrowser()) {
  1052. console.warn(
  1053. '[wx] PC:请求 getWxConfig' + (fromUserClick ? '(按钮)' : '(进页)')
  1054. );
  1055. }
  1056. if (wxJssdkInitPromise && !fromUserClick) return wxJssdkInitPromise;
  1057. wxConfigSignRetriedBaseUrl = false;
  1058. wxInitLastError = '';
  1059. var htmlUrl = getWxConfigSignUrl();
  1060. bindWeChatLaunchTagEvents();
  1061. wxJssdkInitPromise = requestWeChatJssdkSignAndConfig(htmlUrl)
  1062. .then(function (ok) {
  1063. if (ok === true) return true;
  1064. if (!wxInitLastError) {
  1065. setWxInitError('wx.config 失败,可加 ?wxDebug=1 查看 htmlUrl');
  1066. }
  1067. return false;
  1068. })
  1069. .catch(function (e) {
  1070. var msg = e && e.message ? e.message : 'getWxConfig 请求失败';
  1071. setWxInitError(msg);
  1072. console.warn('[wx] requestWeChatJssdkSignAndConfig failed', msg, 'htmlUrl=', htmlUrl);
  1073. if (isWeChatInAppBrowser() && isWxDebugOn()) window.alert(msg);
  1074. return false;
  1075. })
  1076. .finally(function () {
  1077. if (!weChatJssdkConfigured) wxJssdkInitPromise = null;
  1078. });
  1079. return wxJssdkInitPromise;
  1080. }
  1081. /** 进页即尝试拉签名;jweixin 晚到时自动重试 */
  1082. function scheduleWeChatJssdkBootstrap() {
  1083. if (!shouldInitWeChatJssdkOnLoad()) return;
  1084. var attempts = 0;
  1085. function tick() {
  1086. attempts += 1;
  1087. if (weChatJssdkConfigured) return;
  1088. initWeChatOpenLaunchApp();
  1089. if (!weChatJssdkConfigured && attempts < 8 && typeof wx === 'undefined') {
  1090. setTimeout(tick, 400);
  1091. }
  1092. }
  1093. tick();
  1094. }
  1095. function showFabToast(msg, ms) {
  1096. var tip = String(msg || '').trim();
  1097. if (!tip) return;
  1098. var el = document.getElementById('openAppToast');
  1099. if (el) {
  1100. el.textContent = tip;
  1101. el.style.display = 'block';
  1102. if (showFabToast._t) clearTimeout(showFabToast._t);
  1103. showFabToast._t = setTimeout(function () {
  1104. el.style.display = 'none';
  1105. }, ms || 2800);
  1106. }
  1107. console.log('[openApp]', tip);
  1108. }
  1109. function showAppOpenFailTip(msg) {
  1110. var tip = msg || '未能打开 App,请确认已安装最新版「U店在哪」。';
  1111. if (typeof uni !== 'undefined' && typeof uni.showToast === 'function') {
  1112. uni.showToast({ title: tip, icon: 'none', duration: 2800 });
  1113. } else if (isWeChatInAppBrowser()) {
  1114. window.alert(tip);
  1115. } else {
  1116. console.warn('[openApp]', tip);
  1117. }
  1118. }
  1119. function tryFetchWxConfigOnPcClick() {
  1120. if (!isWxPcBrowser()) return Promise.resolve(false);
  1121. showFabToast('正在请求 getWxConfig…');
  1122. wxJssdkInitPromise = null;
  1123. return initWeChatOpenLaunchApp(true).then(function (ok) {
  1124. if (ok) {
  1125. showFabToast(
  1126. weChatJssdkConfigured
  1127. ? 'getWxConfig 成功,wx.config 已就绪'
  1128. : 'getWxConfig 成功'
  1129. );
  1130. } else {
  1131. showFabToast(wxInitLastError || 'getWxConfig 失败');
  1132. }
  1133. return ok;
  1134. });
  1135. }
  1136. function launchAppDeepLink(deepLink) {
  1137. try {
  1138. var a = document.createElement('a');
  1139. a.href = deepLink;
  1140. a.setAttribute('target', '_self');
  1141. document.body.appendChild(a);
  1142. a.click();
  1143. document.body.removeChild(a);
  1144. } catch (e1) {}
  1145. try {
  1146. window.location.href = deepLink;
  1147. } catch (e2) {}
  1148. }
  1149. function tryOpenUShopApp() {
  1150. /* 微信内须直接点击 wx-open-launch-app,scheme 会被拦截 */
  1151. if (isWeChatInAppBrowser()) return;
  1152. tryFetchWxConfigOnPcClick().then(function () {
  1153. if (isWxConfigOnClickDebug() && !isWxForceDebug() && !isWxPcAutoDebugHost()) {
  1154. return;
  1155. }
  1156. tryOpenUShopAppViaScheme();
  1157. });
  1158. }
  1159. function tryOpenUShopAppViaScheme() {
  1160. function openBySchemeOrPlus() {
  1161. showFabToast('正在打开 U店在哪…');
  1162. var deepLink = buildAppDeepLink();
  1163. if (typeof plus !== 'undefined' && plus.runtime) {
  1164. var installed = null;
  1165. try {
  1166. if (typeof plus.runtime.isApplicationExist === 'function') {
  1167. installed = plus.runtime.isApplicationExist({
  1168. pname: APP_ANDROID_PACKAGE,
  1169. action: APP_IOS_URL_SCHEME
  1170. });
  1171. }
  1172. } catch (e) {
  1173. console.warn(e);
  1174. }
  1175. if (installed === false) {
  1176. showDownloadTip();
  1177. return;
  1178. }
  1179. try {
  1180. plus.runtime.openURL(deepLink);
  1181. } catch (e2) {
  1182. console.warn(e2);
  1183. showDownloadTip();
  1184. }
  1185. return;
  1186. }
  1187. var done = false;
  1188. function finish() {
  1189. if (done) return;
  1190. done = true;
  1191. document.removeEventListener('visibilitychange', onVis);
  1192. window.removeEventListener('pagehide', onHide);
  1193. }
  1194. function onVis() {
  1195. if (document.visibilityState === 'hidden') finish();
  1196. }
  1197. function onHide() {
  1198. finish();
  1199. }
  1200. document.addEventListener('visibilitychange', onVis);
  1201. window.addEventListener('pagehide', onHide);
  1202. try {
  1203. launchAppDeepLink(deepLink);
  1204. } catch (e3) {
  1205. finish();
  1206. showDownloadTip();
  1207. return;
  1208. }
  1209. window.setTimeout(function () {
  1210. finish();
  1211. }, 2600);
  1212. }
  1213. if (typeof uni !== 'undefined' && typeof uni.navigateTo === 'function') {
  1214. var loginUrl = buildUniLoginPageUrl();
  1215. try {
  1216. uni.navigateTo({
  1217. url: loginUrl,
  1218. fail: function () {
  1219. if (typeof uni.reLaunch === 'function') {
  1220. try {
  1221. uni.reLaunch({
  1222. url: loginUrl.length > 1800 ? '/pages/index/login' : loginUrl,
  1223. fail: function () {
  1224. openBySchemeOrPlus();
  1225. }
  1226. });
  1227. return;
  1228. } catch (eRl) {}
  1229. }
  1230. openBySchemeOrPlus();
  1231. }
  1232. });
  1233. return;
  1234. } catch (eUni) {
  1235. openBySchemeOrPlus();
  1236. return;
  1237. }
  1238. }
  1239. openBySchemeOrPlus();
  1240. }
  1241. function showErr(msg) {
  1242. var el = document.getElementById('pageError');
  1243. el.textContent = msg;
  1244. el.style.display = 'block';
  1245. }
  1246. function getStoreId() {
  1247. return q('id') || q('storeId');
  1248. }
  1249. function apiFetch(path) {
  1250. return fetch(API_BASE + path, {
  1251. method: 'GET',
  1252. mode: 'cors',
  1253. credentials: 'omit',
  1254. headers: { Accept: 'application/json' }
  1255. }).then(function (res) {
  1256. if (!res.ok) throw new Error('HTTP ' + res.status);
  1257. return res.json();
  1258. });
  1259. }
  1260. function isApiOk(res) {
  1261. if (!res || typeof res !== 'object') return false;
  1262. if (res.success === false) return false;
  1263. var c = res.code;
  1264. return c === 200 || c === '200' || Number(c) === 200;
  1265. }
  1266. function fetchSecondGlobalRecommend() {
  1267. var userIdRaw = q('userId').trim();
  1268. var userId =
  1269. userIdRaw !== '' && !isNaN(Number(userIdRaw)) ? Number(userIdRaw) : null;
  1270. var latRaw = (q('userLat') || q('latitude') || q('lat') || q('weidu')).trim();
  1271. var lngRaw = (q('userLng') || q('longitude') || q('lon') || q('jingdu')).trim();
  1272. var userLat =
  1273. latRaw !== '' && !isNaN(Number(latRaw)) ? Number(latRaw) : DEFAULT_REC_USER_LAT;
  1274. var userLng =
  1275. lngRaw !== '' && !isNaN(Number(lngRaw)) ? Number(lngRaw) : DEFAULT_REC_USER_LNG;
  1276. var rkRaw = q('radiusKm').trim();
  1277. var radiusKm =
  1278. rkRaw !== '' && !isNaN(Number(rkRaw)) ? Number(rkRaw) : DEFAULT_REC_RADIUS_KM;
  1279. var page = parseInt(q('page') || '1', 10);
  1280. var pageSize = parseInt(q('pageSize') || '20', 10);
  1281. if (isNaN(page) || page < 1) page = 1;
  1282. if (isNaN(pageSize) || pageSize < 1) pageSize = 20;
  1283. var c1Raw = q('categoryOneId').trim();
  1284. var c2Raw = q('categoryTwoId').trim();
  1285. var categoryOneId =
  1286. c1Raw === '' || c1Raw.toLowerCase() === 'null'
  1287. ? null
  1288. : isNaN(Number(c1Raw))
  1289. ? null
  1290. : Number(c1Raw);
  1291. var categoryTwoId =
  1292. c2Raw === '' || c2Raw.toLowerCase() === 'null'
  1293. ? null
  1294. : isNaN(Number(c2Raw))
  1295. ? null
  1296. : Number(c2Raw);
  1297. var body = {
  1298. categoryOneId: categoryOneId,
  1299. categoryTwoId: categoryTwoId,
  1300. page: page,
  1301. pageSize: pageSize,
  1302. radiusKm: radiusKm,
  1303. userLat: userLat,
  1304. userLng: userLng,
  1305. userId: userId
  1306. };
  1307. return fetch(API_LIFE_AI_BASE + SECOND_GLOBAL_RECOMMEND_PATH, {
  1308. method: 'POST',
  1309. mode: 'cors',
  1310. credentials: 'omit',
  1311. headers: {
  1312. Accept: 'application/json',
  1313. 'Content-Type': 'application/json;charset=UTF-8'
  1314. },
  1315. body: JSON.stringify(body)
  1316. }).then(function (res) {
  1317. if (!res.ok) throw new Error('HTTP ' + res.status);
  1318. return res.json();
  1319. });
  1320. }
  1321. function normalizeGlobalRecommendList(res) {
  1322. if (!res || typeof res !== 'object') return [];
  1323. var raw = null;
  1324. if (isApiOk(res)) {
  1325. raw = res.data != null ? res.data : res.result;
  1326. }
  1327. if (Array.isArray(raw)) return raw;
  1328. if (raw && typeof raw === 'object') {
  1329. if (Array.isArray(raw.list)) return raw.list;
  1330. if (Array.isArray(raw.records)) return raw.records;
  1331. if (Array.isArray(raw.rows)) return raw.rows;
  1332. if (Array.isArray(raw.content)) return raw.content;
  1333. }
  1334. return [];
  1335. }
  1336. function buildHeroSlides(urls) {
  1337. var track = document.getElementById('heroTrack');
  1338. var dotsWrap = document.getElementById('heroDots');
  1339. track.innerHTML = '';
  1340. dotsWrap.innerHTML = '';
  1341. var list = (urls || []).filter(Boolean);
  1342. if (!list.length) {
  1343. var slide = document.createElement('div');
  1344. slide.className = 'hero__slide';
  1345. var img = document.createElement('img');
  1346. img.src = 'images/hero.png';
  1347. img.alt = '店铺';
  1348. slide.appendChild(img);
  1349. track.appendChild(slide);
  1350. var dot = document.createElement('span');
  1351. dot.className = 'hero__dot is-active';
  1352. dotsWrap.appendChild(dot);
  1353. return initHeroCarousel(1);
  1354. }
  1355. list.forEach(function (url, d) {
  1356. var slide = document.createElement('div');
  1357. slide.className = 'hero__slide';
  1358. var img = document.createElement('img');
  1359. img.src = url;
  1360. img.alt = '店铺图';
  1361. slide.appendChild(img);
  1362. track.appendChild(slide);
  1363. var dot = document.createElement('span');
  1364. dot.className = 'hero__dot' + (d === 0 ? ' is-active' : '');
  1365. dotsWrap.appendChild(dot);
  1366. });
  1367. initHeroCarousel(list.length);
  1368. }
  1369. var heroI = 0;
  1370. var heroTimer = null;
  1371. function initHeroCarousel(slides) {
  1372. var track = document.getElementById('heroTrack');
  1373. var dotsWrap = document.getElementById('heroDots');
  1374. var dots = dotsWrap.querySelectorAll('.hero__dot');
  1375. if (slides < 2) return;
  1376. function go(n) {
  1377. heroI = (n + slides) % slides;
  1378. track.style.transform = 'translateX(' + (-heroI * 100) + '%)';
  1379. dots.forEach(function (el, idx) {
  1380. el.classList.toggle('is-active', idx === heroI);
  1381. });
  1382. }
  1383. if (heroTimer) clearInterval(heroTimer);
  1384. heroTimer = setInterval(function () { go(heroI + 1); }, 4000);
  1385. var hero = document.getElementById('hero');
  1386. var startX = 0;
  1387. hero.addEventListener('touchstart', function (e) {
  1388. startX = e.changedTouches[0].clientX;
  1389. }, { passive: true });
  1390. hero.addEventListener('touchend', function (e) {
  1391. var dx = e.changedTouches[0].clientX - startX;
  1392. if (Math.abs(dx) > 40) go(dx < 0 ? heroI + 1 : heroI - 1);
  1393. }, { passive: true });
  1394. }
  1395. function timeToMinutes(t) {
  1396. var parts = String(t || '').trim().split(':');
  1397. var h = parseInt(parts[0], 10) || 0;
  1398. var m = parseInt(parts[1], 10) || 0;
  1399. return h * 60 + m;
  1400. }
  1401. function isTimeInRange(startTime, endTime) {
  1402. var s = String(startTime || '').trim();
  1403. var e = String(endTime || '').trim();
  1404. if (s === '00:00' && e === '00:00') return true;
  1405. if (s === '00:00' && e === '23:59') return true;
  1406. var cur = new Date().getHours() * 60 + new Date().getMinutes();
  1407. var sm = timeToMinutes(s);
  1408. var em = timeToMinutes(e);
  1409. if (em < sm) {
  1410. return cur >= sm || cur <= em;
  1411. }
  1412. return cur >= sm && cur <= em;
  1413. }
  1414. function parseHolidayDate(str) {
  1415. if (!str) return null;
  1416. var d = new Date(String(str).trim().replace(/-/g, '/'));
  1417. return isNaN(d.getTime()) ? null : d;
  1418. }
  1419. function isTodayInHolidayRange(holidayInfo) {
  1420. if (!holidayInfo) return false;
  1421. var hi = holidayInfo;
  1422. if (typeof hi === 'string') {
  1423. try {
  1424. hi = JSON.parse(hi);
  1425. } catch (err) {
  1426. return false;
  1427. }
  1428. }
  1429. var start = hi.startDate || hi.holidayStartDate || hi.beginDate || hi.start || hi.holidayStart;
  1430. var end = hi.endDate || hi.holidayEndDate || hi.finishDate || hi.end || hi.holidayEnd;
  1431. if (!start || !end) return false;
  1432. var startD = parseHolidayDate(start);
  1433. var endD = parseHolidayDate(end);
  1434. if (!startD || !endD) return false;
  1435. var today = new Date();
  1436. today.setHours(0, 0, 0, 0);
  1437. startD.setHours(0, 0, 0, 0);
  1438. endD.setHours(0, 0, 0, 0);
  1439. return today >= startD && today <= endD;
  1440. }
  1441. function findNormalBusinessInfo(list) {
  1442. var wdJs = new Date().getDay();
  1443. var i;
  1444. var x;
  1445. var w;
  1446. for (i = 0; i < list.length; i++) {
  1447. x = list[i];
  1448. if (!x || x.holidayInfo) continue;
  1449. w = x.weekDay != null ? x.weekDay : x.week;
  1450. if (w === undefined || w === null) continue;
  1451. if (Number(w) === wdJs) return x;
  1452. }
  1453. var wdMap = wdJs === 0 ? 7 : wdJs;
  1454. for (i = 0; i < list.length; i++) {
  1455. x = list[i];
  1456. if (!x || x.holidayInfo) continue;
  1457. w = x.weekDay != null ? x.weekDay : x.week;
  1458. if (w === undefined || w === null) continue;
  1459. if (Number(w) === wdMap) return x;
  1460. }
  1461. for (i = 0; i < list.length; i++) {
  1462. x = list[i];
  1463. if (x && !x.holidayInfo && (x.startTime || x.endTime)) return x;
  1464. }
  1465. return null;
  1466. }
  1467. /** 营业状态:暂停营业 | 商家暂未配置营业时间 | 休息中 | 营业中 xx:xx至xx:xx | 营业中 全天营业 */
  1468. function computeBusinessStatusDisplay(d) {
  1469. if (!d) return { text: '—', isOpen: false };
  1470. if (Number(d.businessStatus) === 1) {
  1471. return { text: '暂停营业', isOpen: false };
  1472. }
  1473. var list = d.storeBusinessInfoVos || d.storeBusinessInfos || [];
  1474. if (!list.length) {
  1475. return { text: '商家暂未配置营业时间', isOpen: false };
  1476. }
  1477. var holidayList = Array.isArray(d.holidayBusinessInfoList) && d.holidayBusinessInfoList.length
  1478. ? d.holidayBusinessInfoList
  1479. : list.filter(function (item) { return item && item.holidayInfo; });
  1480. var todayHolidayItem = holidayList.find(function (item) {
  1481. return isTodayInHolidayRange(item.holidayInfo);
  1482. });
  1483. var normal = d.normalBusinessInfo || d.normalBusinessInfoVo || findNormalBusinessInfo(list);
  1484. var isOpen = false;
  1485. var currentItem = null;
  1486. if (todayHolidayItem) {
  1487. isOpen = isTimeInRange(todayHolidayItem.startTime, todayHolidayItem.endTime);
  1488. currentItem = todayHolidayItem;
  1489. } else if (normal) {
  1490. isOpen = isTimeInRange(normal.startTime, normal.endTime);
  1491. currentItem = normal;
  1492. }
  1493. if (!currentItem) return { text: '休息中', isOpen: false };
  1494. if (!isOpen) return { text: '休息中', isOpen: false };
  1495. var st = String(currentItem.startTime || '').trim();
  1496. var et = String(currentItem.endTime || '').trim();
  1497. if (st === '00:00' && et === '00:00') return { text: '营业中 全天营业', isOpen: true };
  1498. if (st === '00:00' && et === '23:59') return { text: '营业中 全天营业', isOpen: true };
  1499. var needNextDay = timeToMinutes(et) < timeToMinutes(st);
  1500. var suffix = (needNextDay ? '次日' : '') + et;
  1501. return { text: ('营业中 ' + st + ' 至 ' + suffix).trim(), isOpen: true };
  1502. }
  1503. function renderDetail(d) {
  1504. if (!d) return;
  1505. document.getElementById('storeName').textContent = d.storeName || '—';
  1506. var score = d.scoreAvg != null ? Number(d.scoreAvg) : NaN;
  1507. document.getElementById('scoreAvg').textContent = !isNaN(score) ? score.toFixed(1) : '—';
  1508. document.getElementById('commitCount').textContent = d.commitCount != null ? String(d.commitCount) : '0';
  1509. var bizDisp = computeBusinessStatusDisplay(d);
  1510. var bizEl = document.getElementById('bizStatus');
  1511. bizEl.textContent = bizDisp.text;
  1512. bizEl.className = 'status' + (bizDisp.isOpen ? ' is-open' : '');
  1513. document.getElementById('hoursText').textContent = '';
  1514. document.getElementById('storeAddr').textContent = d.queryAddress || d.storeAddress || '—';
  1515. if (d.distance != null) {
  1516. document.getElementById('metaDistance').style.display = 'flex';
  1517. document.getElementById('distanceText').textContent =
  1518. '距您' + (Number(d.distance) > 1 ? d.distance + '千米' : Math.round(Number(d.distance) * 1000) + '米');
  1519. }
  1520. if (d.subwayName && d.distance2 != null) {
  1521. document.getElementById('metaSubway').style.display = 'flex';
  1522. document.getElementById('subwayText').textContent =
  1523. '距' + d.subwayName + '步行' + (Number(d.distance2) >= 1000
  1524. ? (Number(d.distance2) / 1000).toFixed(1) + 'km'
  1525. : Math.round(Number(d.distance2)) + 'm');
  1526. }
  1527. var imgs = [];
  1528. if (Array.isArray(d.storeAlbumUrlList) && d.storeAlbumUrlList.length) imgs = d.storeAlbumUrlList.slice();
  1529. else if (d.entranceImage) imgs = [d.entranceImage];
  1530. buildHeroSlides(imgs);
  1531. }
  1532. function formatRecDist(m) {
  1533. if (m == null || m === '') return '';
  1534. var n = Number(m);
  1535. if (isNaN(n)) return String(m);
  1536. return n >= 1000 ? (n / 1000).toFixed(1) + 'km' : Math.round(n) + 'm';
  1537. }
  1538. function escHtml(s) {
  1539. return String(s == null ? '' : s)
  1540. .replace(/&/g, '&amp;')
  1541. .replace(/</g, '&lt;')
  1542. .replace(/>/g, '&gt;')
  1543. .replace(/"/g, '&quot;');
  1544. }
  1545. /** global-recommend records:homeImage、title、position、dist、price、amount、likeCount、collectCount、userName、userImage */
  1546. function renderRecommended(list) {
  1547. var wrap = document.getElementById('recList');
  1548. var empty = document.getElementById('recEmpty');
  1549. wrap.querySelectorAll('.rec-card').forEach(function (n) {
  1550. n.remove();
  1551. });
  1552. if (!list || !list.length) {
  1553. empty.style.display = 'block';
  1554. return;
  1555. }
  1556. empty.style.display = 'none';
  1557. list.forEach(function (item) {
  1558. if (!item || typeof item !== 'object') return;
  1559. var card = document.createElement('article');
  1560. card.className = 'rec-card';
  1561. var home = item.homeImage != null ? String(item.homeImage).trim() : '';
  1562. if (home && /\.mp4(\?|#|$)/i.test(home)) {
  1563. var vf = item.videoFirstFrame != null ? String(item.videoFirstFrame).trim() : '';
  1564. if (vf) home = vf;
  1565. }
  1566. var imgUrl =
  1567. home ||
  1568. (item.coverUrl != null ? String(item.coverUrl).trim() : '') ||
  1569. (item.mainImage != null ? String(item.mainImage).trim() : '') ||
  1570. (item.goodsImage != null ? String(item.goodsImage).trim() : '') ||
  1571. (Array.isArray(item.goodsImageList) && item.goodsImageList[0]) ||
  1572. (Array.isArray(item.imageList) && item.imageList[0]) ||
  1573. 'images/hero.png';
  1574. var name = item.title != null && String(item.title).trim() !== ''
  1575. ? String(item.title).replace(/\r?\n/g, ' ').replace(/\s+/g, ' ').trim()
  1576. : (item.goodsName ||
  1577. item.secondGoodsTitle ||
  1578. item.name ||
  1579. '商品');
  1580. var dist = '';
  1581. if (item.position != null && String(item.position).trim() !== '') {
  1582. dist = String(item.position).trim();
  1583. } else if (item.dist != null && item.dist !== '') {
  1584. var dn = Number(item.dist);
  1585. if (!isNaN(dn)) {
  1586. dist = dn.toFixed(dn % 1 === 0 ? 0 : 2) + 'km';
  1587. }
  1588. } else if (item.distance != null && item.distance !== '') {
  1589. var d2 = Number(item.distance);
  1590. dist = !isNaN(d2) ? d2.toFixed(d2 % 1 === 0 ? 0 : 2) + 'km' : String(item.distance);
  1591. }
  1592. var priceStr = '';
  1593. if (item.price != null && String(item.price).trim() !== '') {
  1594. var ps = String(item.price).trim();
  1595. var pNum = parseFloat(ps.replace(/[^\d.]/g, ''));
  1596. priceStr = !isNaN(pNum) ? pNum.toFixed(2) : ps;
  1597. } else if (item.amount != null && item.amount !== '') {
  1598. var an = Number(item.amount);
  1599. priceStr = !isNaN(an) ? an.toFixed(2) : String(item.amount);
  1600. } else {
  1601. priceStr = '—';
  1602. }
  1603. var seller =
  1604. item.userName != null && String(item.userName).trim() !== ''
  1605. ? String(item.userName).trim()
  1606. : '';
  1607. var userImg =
  1608. item.userImage != null && String(item.userImage).trim() !== ''
  1609. ? String(item.userImage).trim()
  1610. : '';
  1611. var likeN = item.likeCount != null ? Number(item.likeCount) : NaN;
  1612. var colN = item.collectCount != null ? Number(item.collectCount) : NaN;
  1613. var metaBits = [];
  1614. // if (!isNaN(likeN)) metaBits.push(likeN + '赞');
  1615. // if (!isNaN(colN)) metaBits.push(colN + '想要');
  1616. var metaRight = metaBits.join(' · ');
  1617. var showSellerRow = !!(seller || userImg);
  1618. card.innerHTML =
  1619. '<div class="rec-card__img"><img class="rec-card__cover" src="" alt=""></div>' +
  1620. '<div class="rec-card__body">' +
  1621. '<div class="rec-card__top">' +
  1622. '<span class="rec-card__name">' + escHtml(name) + '</span>' +
  1623. (dist ? '<span class="rec-card__dist">' + escHtml(dist) + '</span>' : '') +
  1624. '</div>' +
  1625. '<div class="rec-card__rating">' +
  1626. '<span class="rec-meta" style="color:#E62E2E;font-weight:600;">¥' + escHtml(priceStr) + '</span>' +
  1627. (metaRight
  1628. ? '<span class="rec-meta">' + escHtml(metaRight) + '</span>'
  1629. : '') +
  1630. '</div>' +
  1631. (showSellerRow
  1632. ? '<div class="rec-card__seller">' +
  1633. '<img class="rec-card__avatar" src="" alt="" width="22" height="22" decoding="async">' +
  1634. (seller ? '<span class="rec-card__seller-name">' + escHtml(seller) + '</span>' : '') +
  1635. '</div>'
  1636. : '') +
  1637. '</div>';
  1638. var coverIm = card.querySelector('img.rec-card__cover');
  1639. if (coverIm) {
  1640. coverIm.src = imgUrl;
  1641. coverIm.onerror = function () {
  1642. this.onerror = null;
  1643. this.src = 'images/hero.png';
  1644. };
  1645. }
  1646. var avIm = card.querySelector('img.rec-card__avatar');
  1647. if (avIm) {
  1648. avIm.src = userImg || 'images/demouser.png';
  1649. avIm.onerror = function () {
  1650. this.onerror = null;
  1651. this.src = 'images/demouser.png';
  1652. };
  1653. }
  1654. wrap.appendChild(card);
  1655. });
  1656. }
  1657. function run() {
  1658. fetchSecondGlobalRecommend()
  1659. .then(function (res) {
  1660. var list = normalizeGlobalRecommendList(res);
  1661. if (!list.length && res && res.msg) {
  1662. console.warn('[global-recommend]', res.msg);
  1663. }
  1664. renderRecommended(list);
  1665. })
  1666. .catch(function (e) {
  1667. console.error(e);
  1668. renderRecommended([]);
  1669. });
  1670. }
  1671. function boot() {
  1672. var launchTag = document.getElementById('launch-btn');
  1673. if (launchTag) launchTag.setAttribute('appid', WECHAT_OPEN_APP_ID);
  1674. bindWeChatLaunchTagEvents();
  1675. if (shouldInitWeChatJssdkOnLoad()) {
  1676. if (isWeChatInAppBrowser()) document.body.classList.add('is-wechat');
  1677. if (isWxPcBrowser() && (isWxForceDebug() || isWxPcAutoDebugHost())) {
  1678. document.body.classList.add('wx-pc-debug');
  1679. }
  1680. scheduleWeChatJssdkBootstrap();
  1681. }
  1682. run();
  1683. if (isWeChatInAppBrowser()) {
  1684. var openBtnWx = document.getElementById('openApp');
  1685. if (openBtnWx) {
  1686. openBtnWx.addEventListener('click', function () {
  1687. if (!weChatJssdkConfigured) {
  1688. showFabToast(
  1689. wxInitLastError || '微信 SDK 初始化中,请稍候再点底部按钮'
  1690. );
  1691. }
  1692. });
  1693. }
  1694. } else {
  1695. var openBtn = document.getElementById('openApp');
  1696. if (openBtn) {
  1697. openBtn.addEventListener('click', tryOpenUShopApp);
  1698. }
  1699. }
  1700. }
  1701. if (document.readyState === 'complete') {
  1702. boot();
  1703. } else {
  1704. window.onload = boot;
  1705. }
  1706. })();
  1707. </script>
  1708. </body>
  1709. </html>