index.html 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652
  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">
  6. <title>搜索评估 · 案例总览</title>
  7. <style>
  8. :root {
  9. --ink: #24211d;
  10. --muted: #6f6961;
  11. --line: #ded8ce;
  12. --paper: #fbfaf7;
  13. --panel: #ffffff;
  14. --mint: #1f8a70;
  15. --rose: #b24b63;
  16. --amber: #b87918;
  17. --cyan: #2a6f8f;
  18. --soft-mint: #e9f5f0;
  19. --soft-rose: #f8e9ee;
  20. --soft-amber: #fff2d9;
  21. --soft-cyan: #e7f2f7;
  22. --shadow: 0 18px 45px rgba(41, 35, 28, .08);
  23. }
  24. * {
  25. box-sizing: border-box;
  26. }
  27. body {
  28. margin: 0;
  29. color: var(--ink);
  30. background: var(--paper);
  31. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  32. line-height: 1.55;
  33. }
  34. header {
  35. padding: 40px 32px 22px;
  36. border-bottom: 1px solid var(--line);
  37. background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  38. }
  39. .wrap {
  40. max-width: 1220px;
  41. margin: 0 auto;
  42. }
  43. .eyebrow {
  44. display: flex;
  45. gap: 8px;
  46. align-items: center;
  47. color: var(--mint);
  48. font-size: 13px;
  49. font-weight: 700;
  50. text-transform: uppercase;
  51. letter-spacing: 0;
  52. }
  53. h1 {
  54. margin: 10px 0 10px;
  55. font-size: clamp(32px, 5vw, 58px);
  56. line-height: 1.06;
  57. letter-spacing: 0;
  58. }
  59. .lede {
  60. max-width: 860px;
  61. margin: 0;
  62. color: var(--muted);
  63. font-size: 17px;
  64. }
  65. .stats {
  66. display: grid;
  67. grid-template-columns: repeat(4, minmax(0, 1fr));
  68. gap: 12px;
  69. margin-top: 24px;
  70. }
  71. .stat {
  72. background: var(--panel);
  73. border: 1px solid var(--line);
  74. border-radius: 8px;
  75. padding: 14px;
  76. box-shadow: var(--shadow);
  77. min-height: 86px;
  78. }
  79. .stat strong {
  80. display: block;
  81. font-size: 26px;
  82. line-height: 1.1;
  83. }
  84. .stat span {
  85. color: var(--muted);
  86. font-size: 13px;
  87. }
  88. main {
  89. padding: 24px 32px 48px;
  90. }
  91. .toolbar {
  92. display: flex;
  93. gap: 10px;
  94. align-items: center;
  95. justify-content: space-between;
  96. margin-bottom: 18px;
  97. flex-wrap: wrap;
  98. }
  99. .filters {
  100. display: flex;
  101. gap: 8px;
  102. flex-wrap: wrap;
  103. }
  104. button,
  105. select {
  106. border: 1px solid var(--line);
  107. background: #fff;
  108. color: var(--ink);
  109. border-radius: 8px;
  110. padding: 9px 12px;
  111. font: inherit;
  112. }
  113. button {
  114. cursor: pointer;
  115. }
  116. button.active {
  117. color: #fff;
  118. background: var(--ink);
  119. border-color: var(--ink);
  120. }
  121. select {
  122. min-width: 190px;
  123. }
  124. .grid {
  125. display: grid;
  126. grid-template-columns: repeat(3, minmax(0, 1fr));
  127. gap: 16px;
  128. }
  129. .result {
  130. min-height: 500px;
  131. background: var(--panel);
  132. border: 1px solid var(--line);
  133. border-radius: 8px;
  134. overflow: hidden;
  135. box-shadow: var(--shadow);
  136. display: flex;
  137. flex-direction: column;
  138. position: relative;
  139. transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.25s ease;
  140. }
  141. .result:hover {
  142. transform: translateY(-2px);
  143. box-shadow: 0 22px 50px rgba(41, 35, 28, .12);
  144. }
  145. .result.discard {
  146. border-color: rgba(178, 75, 99, 0.15);
  147. }
  148. .discard-overlay {
  149. position: absolute;
  150. top: 0;
  151. left: 0;
  152. right: 0;
  153. bottom: 0;
  154. background: rgba(251, 250, 247, 0.85);
  155. backdrop-filter: blur(5px);
  156. -webkit-backdrop-filter: blur(5px);
  157. display: flex;
  158. flex-direction: column;
  159. align-items: center;
  160. justify-content: center;
  161. padding: 20px;
  162. text-align: center;
  163. z-index: 5;
  164. opacity: 1;
  165. transition: opacity 0.25s ease;
  166. pointer-events: none;
  167. }
  168. .result.discard:hover .discard-overlay {
  169. opacity: 0;
  170. }
  171. .discard-badge {
  172. background: var(--soft-rose);
  173. color: var(--rose);
  174. border: 1px solid rgba(178, 75, 99, 0.25);
  175. padding: 6px 16px;
  176. border-radius: 999px;
  177. font-size: 13px;
  178. font-weight: 700;
  179. text-transform: uppercase;
  180. letter-spacing: 1px;
  181. margin-bottom: 12px;
  182. box-shadow: 0 2px 8px rgba(178, 75, 99, 0.1);
  183. }
  184. .discard-reason {
  185. color: var(--muted);
  186. font-size: 13px;
  187. line-height: 1.6;
  188. max-width: 90%;
  189. margin: 0 auto;
  190. display: -webkit-box;
  191. -webkit-line-clamp: 6;
  192. -webkit-box-orient: vertical;
  193. overflow: hidden;
  194. font-weight: 500;
  195. }
  196. .thumbs {
  197. display: grid;
  198. grid-template-columns: repeat(3, 1fr);
  199. gap: 2px;
  200. height: 150px;
  201. background: #eee7dc;
  202. overflow: hidden;
  203. }
  204. .thumbs img {
  205. width: 100%;
  206. height: 100%;
  207. object-fit: cover;
  208. display: block;
  209. background: #eee7dc;
  210. }
  211. .thumbs img:first-child:nth-last-child(1) {
  212. grid-column: 1 / -1;
  213. }
  214. .body {
  215. padding: 15px;
  216. flex: 1;
  217. display: flex;
  218. flex-direction: column;
  219. }
  220. .meta {
  221. display: flex;
  222. justify-content: space-between;
  223. gap: 10px;
  224. color: var(--muted);
  225. font-size: 12px;
  226. margin-bottom: 8px;
  227. }
  228. .platform {
  229. color: #fff;
  230. border-radius: 999px;
  231. padding: 2px 8px;
  232. font-weight: 700;
  233. white-space: nowrap;
  234. }
  235. .p-xhs {
  236. background: var(--rose);
  237. }
  238. .p-gzh {
  239. background: var(--mint);
  240. }
  241. .p-x {
  242. background: var(--cyan);
  243. }
  244. h2 {
  245. margin: 0 0 8px;
  246. font-size: 18px;
  247. line-height: 1.25;
  248. letter-spacing: 0;
  249. }
  250. .excerpt {
  251. color: var(--muted);
  252. font-size: 13px;
  253. display: -webkit-box;
  254. -webkit-line-clamp: 5;
  255. -webkit-box-orient: vertical;
  256. overflow: hidden;
  257. }
  258. .tags {
  259. display: flex;
  260. flex-wrap: wrap;
  261. gap: 6px;
  262. margin: 12px 0;
  263. }
  264. .tag {
  265. background: #f2eee7;
  266. border-radius: 999px;
  267. padding: 3px 8px;
  268. font-size: 12px;
  269. color: #514a42;
  270. }
  271. .scorebar {
  272. margin-top: auto;
  273. }
  274. .overall {
  275. display: flex;
  276. align-items: end;
  277. justify-content: space-between;
  278. border-top: 1px solid var(--line);
  279. padding-top: 12px;
  280. }
  281. .score {
  282. font-size: 36px;
  283. line-height: .9;
  284. font-weight: 800;
  285. }
  286. .decision {
  287. color: var(--mint);
  288. font-weight: 800;
  289. }
  290. .decision.discard {
  291. color: var(--amber);
  292. }
  293. .mini-bars {
  294. display: grid;
  295. grid-template-columns: repeat(5, 1fr);
  296. gap: 4px;
  297. margin-top: 10px;
  298. }
  299. .mini-bars span {
  300. height: 7px;
  301. border-radius: 999px;
  302. background: #eee;
  303. overflow: hidden;
  304. position: relative;
  305. }
  306. .mini-bars span .fill {
  307. display: block;
  308. height: 100%;
  309. background: var(--mint);
  310. border-radius: 999px;
  311. }
  312. .group-snapshot {
  313. display: grid;
  314. grid-template-columns: repeat(4, minmax(0, 1fr));
  315. gap: 5px;
  316. margin-top: 10px;
  317. }
  318. .mini-bars.new-schema {
  319. grid-template-columns: repeat(2, 1fr) !important;
  320. }
  321. .group-snapshot.new-schema {
  322. grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  323. }
  324. .group-pill {
  325. border: 1px solid var(--line);
  326. border-radius: 8px;
  327. padding: 5px 6px;
  328. background: #fff;
  329. min-width: 0;
  330. }
  331. .group-pill span {
  332. display: block;
  333. color: var(--muted);
  334. font-size: 11px;
  335. white-space: nowrap;
  336. overflow: hidden;
  337. text-overflow: ellipsis;
  338. }
  339. .group-pill strong {
  340. display: block;
  341. font-size: 14px;
  342. line-height: 1.1;
  343. }
  344. .actions {
  345. display: flex;
  346. gap: 8px;
  347. margin-top: 12px;
  348. }
  349. .actions a,
  350. .actions button {
  351. flex: 1;
  352. text-align: center;
  353. text-decoration: none;
  354. color: var(--ink);
  355. background: #fff;
  356. border: 1px solid var(--line);
  357. border-radius: 8px;
  358. padding: 8px 10px;
  359. font-size: 13px;
  360. }
  361. dialog {
  362. width: min(980px, calc(100vw - 28px));
  363. max-height: calc(100vh - 32px);
  364. border: 1px solid var(--line);
  365. border-radius: 8px;
  366. padding: 0;
  367. box-shadow: 0 28px 90px rgba(0, 0, 0, .25);
  368. }
  369. /* 全屏模式: 占满视口 + 改用 flex 列布局, 让内容面板/工序 iframe 撑满 */
  370. dialog.fullscreen {
  371. width: 100vw;
  372. height: 100vh;
  373. max-width: none;
  374. max-height: none;
  375. border: none;
  376. border-radius: 0;
  377. display: flex;
  378. flex-direction: column;
  379. }
  380. dialog.fullscreen .modal-head,
  381. dialog.fullscreen .modal-tabs {
  382. flex: 0 0 auto; /* 头部/标签固定高, 不被压缩 */
  383. }
  384. dialog.fullscreen .modal-content,
  385. dialog.fullscreen #modalContentProcedure {
  386. flex: 1 1 auto; /* 只有内容面板撑满剩余高度 */
  387. min-height: 0;
  388. overflow: auto;
  389. }
  390. dialog.fullscreen #modalContentProcedure {
  391. height: auto !important; /* 覆盖内联的固定 600px, 改由 flex 撑满 */
  392. }
  393. dialog::backdrop {
  394. background: rgba(38, 33, 27, .42);
  395. }
  396. .modal-head {
  397. position: sticky;
  398. top: 0;
  399. background: #fff;
  400. border-bottom: 1px solid var(--line);
  401. padding: 16px;
  402. z-index: 2;
  403. display: flex;
  404. justify-content: space-between;
  405. gap: 14px;
  406. align-items: start;
  407. }
  408. .modal-head h3 {
  409. margin: 0;
  410. font-size: 20px;
  411. line-height: 1.25;
  412. }
  413. .modal-content {
  414. display: grid;
  415. grid-template-columns: 1.1fr .9fr;
  416. gap: 18px;
  417. padding: 16px;
  418. }
  419. .modal-content > section,
  420. .modal-content > aside {
  421. min-width: 0;
  422. }
  423. .section-title {
  424. margin: 18px 0 8px;
  425. font-weight: 800;
  426. }
  427. .raw {
  428. white-space: pre-wrap;
  429. background: #faf7f1;
  430. border: 1px solid var(--line);
  431. border-radius: 8px;
  432. padding: 12px;
  433. max-height: 330px;
  434. overflow: auto;
  435. color: #3d3831;
  436. font-size: 13px;
  437. }
  438. .images {
  439. display: grid;
  440. grid-template-columns: repeat(2, minmax(0, 1fr));
  441. gap: 8px;
  442. }
  443. .images img {
  444. width: 100%;
  445. max-height: 260px;
  446. object-fit: contain;
  447. border: 1px solid var(--line);
  448. border-radius: 8px;
  449. background: #f1ece4;
  450. }
  451. .scores {
  452. display: grid;
  453. gap: 12px;
  454. }
  455. .score-group {
  456. border: 1px solid var(--line);
  457. border-radius: 8px;
  458. background: #fff;
  459. overflow: hidden;
  460. }
  461. .score-group-head {
  462. display: flex;
  463. justify-content: space-between;
  464. gap: 10px;
  465. align-items: center;
  466. padding: 10px 11px;
  467. background: #faf7f1;
  468. border-bottom: 1px solid var(--line);
  469. font-size: 13px;
  470. font-weight: 800;
  471. }
  472. .score-group-head small {
  473. color: var(--muted);
  474. font-weight: 700;
  475. white-space: nowrap;
  476. }
  477. .score-group-body {
  478. display: grid;
  479. gap: 8px;
  480. padding: 10px;
  481. }
  482. .score-row {
  483. display: grid;
  484. grid-template-columns: 128px 1fr 34px;
  485. gap: 10px;
  486. align-items: center;
  487. font-size: 13px;
  488. }
  489. .score-row.missing {
  490. color: #a39b91;
  491. }
  492. .score-row.missing .meter span {
  493. display: none;
  494. }
  495. .meter {
  496. height: 9px;
  497. border-radius: 999px;
  498. background: #eee7dc;
  499. overflow: hidden;
  500. }
  501. .meter span {
  502. display: block;
  503. height: 100%;
  504. width: calc(var(--v) * 20%);
  505. background: var(--rose);
  506. }
  507. .rubric-note {
  508. background: var(--soft-cyan);
  509. border-left: 4px solid var(--cyan);
  510. padding: 10px 12px;
  511. color: #254c5d;
  512. border-radius: 4px;
  513. font-size: 13px;
  514. }
  515. @media (max-width: 980px) {
  516. .grid {
  517. grid-template-columns: repeat(2, minmax(0, 1fr));
  518. }
  519. .stats {
  520. grid-template-columns: repeat(2, minmax(0, 1fr));
  521. }
  522. .modal-content {
  523. grid-template-columns: 1fr;
  524. }
  525. }
  526. @media (max-width: 640px) {
  527. header,
  528. main {
  529. padding-left: 16px;
  530. padding-right: 16px;
  531. }
  532. .grid,
  533. .stats {
  534. grid-template-columns: 1fr;
  535. }
  536. .toolbar {
  537. align-items: stretch;
  538. }
  539. select {
  540. width: 100%;
  541. }
  542. .result {
  543. min-height: auto;
  544. }
  545. .group-snapshot {
  546. grid-template-columns: repeat(2, minmax(0, 1fr));
  547. }
  548. }
  549. /* Extra styles for interactive navigation & matrix */
  550. .stats {
  551. display: grid;
  552. grid-template-columns: repeat(5, 1fr);
  553. gap: 12px;
  554. }
  555. .stats .stat {
  556. min-width: 0;
  557. }
  558. .p-zhihu {
  559. background: #2a6f8f;
  560. }
  561. .p-x {
  562. background: #2a6f8f;
  563. }
  564. .p-bili {
  565. background: #b24b63;
  566. }
  567. .p-douyin {
  568. background: #24211d;
  569. }
  570. .p-sph {
  571. background: #07c160;
  572. }
  573. .p-youtube {
  574. background: #c4302b;
  575. }
  576. .p-github {
  577. background: #24292e;
  578. }
  579. .p-toutiao {
  580. background: #f04142;
  581. }
  582. .p-weibo {
  583. background: #e6162d;
  584. }
  585. .nav {
  586. display: flex;
  587. flex-direction: column;
  588. gap: 8px;
  589. margin-bottom: 14px;
  590. }
  591. .navrow {
  592. display: flex;
  593. gap: 8px;
  594. align-items: center;
  595. flex-wrap: wrap;
  596. }
  597. .navlab {
  598. width: 54px;
  599. flex: 0 0 54px;
  600. color: var(--muted);
  601. font-size: 12px;
  602. font-weight: 700;
  603. text-transform: uppercase;
  604. }
  605. .navrow .tab {
  606. border: 1px solid var(--line);
  607. background: #fff;
  608. color: var(--ink);
  609. border-radius: 999px;
  610. padding: 6px 14px;
  611. font-size: 13px;
  612. cursor: pointer;
  613. }
  614. .navrow .tab.on {
  615. background: var(--ink);
  616. color: #fff;
  617. border-color: var(--ink);
  618. }
  619. .navrow .tab .q {
  620. font-family: ui-monospace, Menlo, monospace;
  621. }
  622. .navrow .tab small {
  623. color: var(--muted);
  624. margin-left: 4px;
  625. }
  626. .navrow .tab.on small {
  627. color: #cfd8dc;
  628. }
  629. #navQ .qtab {
  630. max-width: 100%;
  631. white-space: normal;
  632. text-align: left;
  633. line-height: 1.4;
  634. }
  635. .navrow .tab {
  636. white-space: normal;
  637. }
  638. #refresh {
  639. cursor: pointer;
  640. }
  641. /* 1:1 Morandi Matrix Replicated Style Rules */
  642. .btn {
  643. padding: 3px 10px;
  644. border-radius: 14px;
  645. border: 1px solid #d1d5db;
  646. background: #fff;
  647. cursor: pointer;
  648. font-size: .74rem;
  649. color: #444;
  650. }
  651. .g-form .btn.on {
  652. background: #4f46e5;
  653. border-color: #4f46e5;
  654. color: #fff;
  655. }
  656. .g-lens .btn.on {
  657. background: #be185d;
  658. border-color: #be185d;
  659. color: #fff;
  660. }
  661. .g-mod .btn.on {
  662. background: #2e7d32;
  663. border-color: #2e7d32;
  664. color: #fff;
  665. }
  666. .g-tool .btn.on {
  667. background: #c2410c;
  668. border-color: #c2410c;
  669. color: #fff;
  670. }
  671. .g-tier .btn.on {
  672. background: #374151;
  673. border-color: #374151;
  674. color: #fff;
  675. }
  676. .g-mxview .btn.on {
  677. background: var(--mint);
  678. border-color: var(--mint);
  679. color: #fff;
  680. }
  681. .mxwrap {
  682. max-height: 55vh;
  683. overflow: auto;
  684. border: 1px solid var(--line);
  685. border-radius: 0 0 8px 8px;
  686. margin-bottom: 12px;
  687. background: #fff;
  688. position: relative;
  689. }
  690. table#comboMx {
  691. border-collapse: separate;
  692. border-spacing: 0;
  693. background: #fff;
  694. font-size: .65rem;
  695. width: 100%;
  696. }
  697. table#comboMx th,
  698. table#comboMx td {
  699. border-right: 1px solid #f0f1f5;
  700. border-bottom: 1px solid #f0f1f5;
  701. text-align: center;
  702. }
  703. table#comboMx thead th {
  704. position: sticky;
  705. background: #fff;
  706. }
  707. table#comboMx thead tr.l1 th {
  708. top: 0;
  709. z-index: 11;
  710. background: #eef2ff;
  711. color: #4338ca;
  712. font-weight: 700;
  713. font-size: .72rem;
  714. height: 20px;
  715. border-bottom: 1px solid #c7d2fe;
  716. }
  717. table#comboMx thead tr.l2 th {
  718. top: 20px;
  719. z-index: 11;
  720. background: #f5f7ff;
  721. color: #6366f1;
  722. font-weight: 600;
  723. font-size: .66rem;
  724. height: 18px;
  725. border-bottom: 1px solid #e0e7ff;
  726. }
  727. table#comboMx thead tr.leaf th {
  728. top: 38px;
  729. z-index: 9;
  730. background: #fff;
  731. color: #1f2937;
  732. font-size: .66rem;
  733. min-width: 120px;
  734. max-width: 120px;
  735. height: 24px;
  736. padding: 3px;
  737. }
  738. table#comboMx thead .corner {
  739. left: 0;
  740. top: 0;
  741. z-index: 13;
  742. background: #fff;
  743. min-width: 96px;
  744. }
  745. .l1div {
  746. border-left: 3px solid #818cf8 !important;
  747. }
  748. .l2div {
  749. border-left: 1.5px solid #cbd5e8 !important;
  750. }
  751. table#comboMx tbody th.rh {
  752. position: sticky;
  753. left: 0;
  754. z-index: 8;
  755. background: #fffaf0;
  756. color: #92580c;
  757. text-align: left;
  758. padding: 4px 8px;
  759. font-weight: 600;
  760. white-space: nowrap;
  761. min-width: 96px;
  762. border-right: 1px solid #e6e8ef;
  763. }
  764. table#comboMx tbody tr.l1row td {
  765. background: #eef2ff;
  766. color: #4338ca;
  767. font-weight: 700;
  768. font-size: .7rem;
  769. text-align: left;
  770. padding: 3px 8px;
  771. position: sticky;
  772. left: 0;
  773. }
  774. td.cell {
  775. min-width: 120px;
  776. max-width: 120px;
  777. height: 30px;
  778. padding: 2px 5px;
  779. cursor: pointer;
  780. font-family: ui-monospace, Menlo, monospace;
  781. font-size: .65rem;
  782. color: #1f2937;
  783. text-align: left;
  784. line-height: 1.25;
  785. border-left: 4px solid transparent;
  786. overflow: hidden;
  787. position: relative;
  788. }
  789. td.cell:hover {
  790. box-shadow: inset 0 0 0 2px #f59e0b;
  791. }
  792. td.cell.t0 {
  793. border-left-color: #e5e7eb;
  794. background: #fbfbfc;
  795. color: #aeb3bd;
  796. }
  797. td.cell.t1 {
  798. border-left-color: #bbf7d0;
  799. }
  800. td.cell.t2 {
  801. border-left-color: #4ade80;
  802. background: #f3fdf6;
  803. }
  804. td.cell.t3 {
  805. border-left-color: #15803d;
  806. background: #ecfdf3;
  807. }
  808. td.cell.tNA {
  809. border-left-color: #fcd34d;
  810. background: repeating-linear-gradient(45deg, #fff, #fff 4px, #fef9ec 4px, #fef9ec 8px);
  811. color: #b6bac4;
  812. }
  813. td.cell.gq-cell {
  814. color: #15803d;
  815. font-weight: 600;
  816. }
  817. td.cell.rowdim {
  818. opacity: .26;
  819. }
  820. td.cell.hide {
  821. visibility: hidden;
  822. }
  823. td.cell.sel {
  824. outline: 2px solid var(--ink);
  825. outline-offset: -2px;
  826. font-weight: bold;
  827. }
  828. td.cell.rowsel,
  829. td.cell.colsel {
  830. box-shadow: inset 0 0 0 999px rgba(255, 193, 7, .12);
  831. }
  832. td.cell.rowsel.colsel {
  833. box-shadow: inset 0 0 0 999px rgba(255, 193, 7, .22);
  834. }
  835. th.rh.rowsel {
  836. background: rgba(255, 193, 7, .22);
  837. color: var(--ink);
  838. font-weight: 700;
  839. }
  840. thead th.colsel {
  841. background: rgba(255, 193, 7, .22);
  842. color: var(--ink);
  843. font-weight: 700;
  844. }
  845. /* Database hit badge inside matrix cells */
  846. td.cell .hit-badge {
  847. position: absolute;
  848. right: 2px;
  849. top: 2px;
  850. background: #10b981;
  851. color: #fff;
  852. font-size: 9px;
  853. font-weight: bold;
  854. border-radius: 3px;
  855. padding: 0 3px;
  856. line-height: 1.2;
  857. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  858. }
  859. /* Pop-up floating panel styling */
  860. .pop {
  861. position: fixed;
  862. background: #fff;
  863. border: 1px solid #d1d5db;
  864. border-radius: 9px;
  865. box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  866. padding: 13px 15px;
  867. max-width: 450px;
  868. z-index: 200;
  869. display: none;
  870. font-size: .82rem;
  871. line-height: 1.5;
  872. }
  873. .pop .pt {
  874. font-weight: 700;
  875. color: #1f2937;
  876. margin-bottom: 7px;
  877. display: flex;
  878. gap: 6px;
  879. align-items: center;
  880. flex-wrap: wrap;
  881. padding-right: 18px;
  882. }
  883. .pop .path {
  884. font-size: .66rem;
  885. padding: 1px 6px;
  886. border-radius: 3px;
  887. }
  888. .pop .path.a {
  889. background: #eef2ff;
  890. color: #4338ca;
  891. }
  892. .pop .path.t {
  893. background: #fef3c7;
  894. color: #92400e;
  895. }
  896. .pop .tier {
  897. font-size: .64rem;
  898. padding: 1px 7px;
  899. border-radius: 3px;
  900. font-weight: 600;
  901. }
  902. .tb0 {
  903. background: #e5e7eb;
  904. color: #6b7280;
  905. }
  906. .tb1 {
  907. background: #dcfce7;
  908. color: #166534;
  909. }
  910. .tb2 {
  911. background: #bbf7d0;
  912. color: #14532d;
  913. }
  914. .tb3 {
  915. background: #15803d;
  916. color: #fff;
  917. }
  918. .tbNA {
  919. background: #fef3c7;
  920. color: #92400e;
  921. }
  922. .pop .reason {
  923. background: #fffbeb;
  924. border-left: 3px solid #f59e0b;
  925. padding: 7px 11px;
  926. border-radius: 3px;
  927. color: #78350f;
  928. margin: 7px 0;
  929. font-size: .8rem;
  930. }
  931. .pop .reason.inv {
  932. background: #fef2f2;
  933. border-left-color: #ef4444;
  934. color: #991b1b;
  935. }
  936. .pop .gq {
  937. background: #ecfdf3;
  938. border: 1px solid #a7f3d0;
  939. border-radius: 6px;
  940. padding: 7px 11px;
  941. margin: 7px 0;
  942. font-family: ui-monospace, Menlo, monospace;
  943. font-size: .84rem;
  944. color: #15803d;
  945. }
  946. .pop .gq .t {
  947. font-family: inherit;
  948. font-size: .64rem;
  949. color: #6b7280;
  950. display: block;
  951. margin-bottom: 2px;
  952. }
  953. .pop .small {
  954. font-size: .7rem;
  955. color: #9aa0ad;
  956. margin: 4px 0;
  957. }
  958. .pop .lbl {
  959. font-size: .66rem;
  960. color: #6b7280;
  961. font-weight: 600;
  962. margin: 9px 0 3px;
  963. }
  964. .pop ul {
  965. margin: 0;
  966. padding: 0;
  967. list-style: none;
  968. }
  969. .pop li {
  970. padding: 3px 8px;
  971. background: #f9fafb;
  972. border-radius: 4px;
  973. margin-bottom: 3px;
  974. font-family: ui-monospace, Menlo, monospace;
  975. font-size: .78rem;
  976. color: #1f2937;
  977. }
  978. .pop li.gen {
  979. background: #eef0ff;
  980. color: #3730a3;
  981. }
  982. .pop li.cur {
  983. box-shadow: inset 0 0 0 2px #818cf8;
  984. }
  985. .pop li .fm {
  986. font-size: .62rem;
  987. color: #4f46e5;
  988. margin-right: 6px;
  989. }
  990. .pop .note {
  991. font-size: .7rem;
  992. color: #2e7d32;
  993. margin-top: 6px;
  994. }
  995. .pop .close {
  996. position: absolute;
  997. top: 6px;
  998. right: 9px;
  999. cursor: pointer;
  1000. color: #9ca3af;
  1001. font-size: 1.15rem;
  1002. }
  1003. .fac {
  1004. border: 1px solid var(--line);
  1005. background: #fff;
  1006. border-radius: 999px;
  1007. padding: 4px 11px;
  1008. font-size: 12px;
  1009. cursor: pointer;
  1010. color: var(--ink);
  1011. }
  1012. .fac.on {
  1013. background: var(--mint);
  1014. color: #fff;
  1015. border-color: var(--mint);
  1016. }
  1017. .fac small {
  1018. opacity: .65;
  1019. margin-left: 3px;
  1020. }
  1021. #navQ .qtab .hit {
  1022. display: inline-block;
  1023. margin-left: 7px;
  1024. background: var(--soft-mint);
  1025. color: var(--mint);
  1026. border-radius: 999px;
  1027. padding: 0 8px;
  1028. font-size: 11px;
  1029. font-weight: 700;
  1030. }
  1031. #navQ .qtab.on .hit {
  1032. background: rgba(255, 255, 255, .22);
  1033. color: #fff;
  1034. }
  1035. .modal-tabs {
  1036. display: flex;
  1037. gap: 4px;
  1038. padding: 0 16px;
  1039. border-bottom: 1px solid var(--line);
  1040. background: #faf7f1;
  1041. }
  1042. .modal-tab {
  1043. background: transparent;
  1044. border: none;
  1045. border-bottom: 3px solid transparent;
  1046. border-radius: 0;
  1047. padding: 10px 16px;
  1048. font-size: 14px;
  1049. font-weight: 600;
  1050. color: var(--muted);
  1051. cursor: pointer;
  1052. transition: all 0.2s ease;
  1053. }
  1054. .modal-tab:hover {
  1055. color: var(--ink);
  1056. background: rgba(0, 0, 0, 0.02);
  1057. }
  1058. .modal-tab.active {
  1059. color: var(--mint);
  1060. border-bottom-color: var(--mint);
  1061. }
  1062. /* 新版评估分数卡片可视化样式 */
  1063. .sc-card {
  1064. background: #fff;
  1065. border: 1px solid var(--line);
  1066. border-radius: 12px;
  1067. padding: 16px 20px;
  1068. margin-bottom: 16px;
  1069. box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  1070. }
  1071. .sc-card-head {
  1072. display: flex;
  1073. justify-content: space-between;
  1074. align-items: center;
  1075. margin-bottom: 14px;
  1076. border-bottom: 1px solid #f3f0ea;
  1077. padding-bottom: 10px;
  1078. }
  1079. .sc-card-head .title {
  1080. font-size: 16px;
  1081. font-weight: 700;
  1082. display: flex;
  1083. align-items: center;
  1084. gap: 8px;
  1085. }
  1086. .sc-card-head .badge {
  1087. background: #eef2ff;
  1088. color: #2563eb;
  1089. font-size: 11px;
  1090. padding: 2px 6px;
  1091. border-radius: 4px;
  1092. font-weight: 700;
  1093. }
  1094. .sc-card-head .avg-score {
  1095. font-size: 14px;
  1096. color: var(--muted);
  1097. font-weight: 600;
  1098. }
  1099. .sc-card-head .avg-score strong {
  1100. font-size: 26px;
  1101. color: #2563eb;
  1102. font-weight: 800;
  1103. margin-left: 6px;
  1104. }
  1105. .sc-sub-header {
  1106. font-size: 12px;
  1107. color: var(--muted);
  1108. font-weight: 700;
  1109. margin: 14px 0 8px;
  1110. border-bottom: 1px dashed #f0ebd8;
  1111. padding-bottom: 4px;
  1112. text-transform: uppercase;
  1113. letter-spacing: 0.5px;
  1114. }
  1115. .sc-row {
  1116. display: flex;
  1117. justify-content: space-between;
  1118. align-items: center;
  1119. padding: 6px 0;
  1120. font-size: 13.5px;
  1121. gap: 10px;
  1122. }
  1123. .sc-row .label {
  1124. color: var(--ink);
  1125. font-weight: 500;
  1126. flex: 1;
  1127. min-width: 100px;
  1128. word-break: break-all;
  1129. }
  1130. .sc-row .bar-wrap {
  1131. display: flex;
  1132. align-items: center;
  1133. gap: 10px;
  1134. width: 170px;
  1135. flex-shrink: 0;
  1136. }
  1137. .sc-row .bar {
  1138. height: 6px;
  1139. background: #eee7dc;
  1140. border-radius: 999px;
  1141. flex: 1;
  1142. overflow: hidden;
  1143. }
  1144. .sc-row .bar-fill {
  1145. height: 100%;
  1146. background: #2563eb;
  1147. border-radius: 999px;
  1148. width: calc(var(--v) * 10%);
  1149. }
  1150. .sc-row .value {
  1151. font-weight: 700;
  1152. font-size: 13.5px;
  1153. width: 20px;
  1154. text-align: right;
  1155. }
  1156. .sc-row .info-icon {
  1157. cursor: pointer;
  1158. color: #9ca3af;
  1159. transition: color 0.15s ease;
  1160. font-size: 13px;
  1161. user-select: none;
  1162. }
  1163. .sc-row .info-icon:hover {
  1164. color: #3b82f6;
  1165. }
  1166. </style>
  1167. </head>
  1168. <body>
  1169. <header>
  1170. <div class="wrap">
  1171. <div class="eyebrow">Content Search · runs/ 实时 · query → 形式 → 渠道</div>
  1172. <h1>搜索评估 · 案例总览</h1>
  1173. <p class="lede" id="lede" style="margin:0">加载中…</p>
  1174. <div class="stats" id="stats"></div>
  1175. </div>
  1176. </header>
  1177. <main>
  1178. <div class="wrap">
  1179. <div class="nav">
  1180. <div class="navrow" style="margin-bottom:4px;">
  1181. <span class="navlab">组合矩阵</span>
  1182. <span style="color:var(--muted);font-size:12px;flex:1">行=类型 列=动作 格子色=评分,角标=帖子数/工序数。点击选组合且弹出详情。</span>
  1183. <span class="g-mxview" style="display:inline-flex;gap:4px;margin-right:12px;align-items:center;">
  1184. <button class="btn on" id="btnMxFull" onclick="setMatrixView('full')">完整矩阵</button>
  1185. <button class="btn" id="btnMxHits" onclick="setMatrixView('hits')">只看帖子命中</button>
  1186. <button class="btn" id="btnMxProcedures" onclick="setMatrixView('procedures')">只看工序</button>
  1187. </span>
  1188. <button id="refresh" onclick="loadData(true)">↻ 刷新 runs</button>
  1189. </div>
  1190. <div class="mx-header"
  1191. style="background:#fff; border: 1px solid var(--line); border-radius: 8px 8px 0 0; padding:12px 16px 8px; border-bottom: none;">
  1192. <h4
  1193. style="margin:0 0 4px; font-size:13px; color:#1f2937; display:flex; justify-content:space-between; align-items:center; font-weight:700;">
  1194. <span>动作 × 类型 · 组合矩阵 <span style="font-weight:400;font-size:11px;color:#9aa0ad">基于 <b
  1195. id="gm">gemini-3.1-flash-lite</b></span></span>
  1196. <span class="legend" style="display:flex;gap:9px;align-items:center;color:#6b7280;font-size:11px;">
  1197. <span><span class="sw"
  1198. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#15803d;vertical-align:middle;margin-right:3px;"></span>高
  1199. · <b id="s3" style="color:#15803d;">0</b></span>
  1200. <span><span class="sw"
  1201. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#4ade80;vertical-align:middle;margin-right:3px;"></span>中
  1202. · <b id="s2" style="color:#4ade80;">0</b></span>
  1203. <span><span class="sw"
  1204. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#bbf7d0;vertical-align:middle;margin-right:3px;"></span>低
  1205. · <b id="s1" style="color:#10b981;">0</b></span>
  1206. <span><span class="sw"
  1207. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#e5e7eb;vertical-align:middle;margin-right:3px;"></span>无效
  1208. · <b id="s0" style="color:#9ca3af;">0</b></span>
  1209. <span><span class="sw"
  1210. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#fcd34d;vertical-align:middle;margin-right:3px;"></span>未判
  1211. · <b id="sna" style="color:#b87918;">0</b></span>
  1212. </span>
  1213. </h4>
  1214. <div class="sub" style="font-size:11px;color:#6b7280;margin-bottom:8px;">
  1215. 共 1350 格 · 形式①原词不替换 · ②句子套模板 · ③同义池替换。
  1216. </div>
  1217. <div class="ctl"
  1218. style="display:flex;gap:6px;flex-wrap:wrap;align-items:center;font-size:11px;border-top:1px solid #f3f4f6;padding-top:8px;">
  1219. <span class="lab" style="color:#9aa0ad;font-weight:600;">query生成方式</span>
  1220. <span class="g-form">
  1221. <button class="btn on" data-k="form" data-v="A">①原词</button>
  1222. <button class="btn" data-k="form" data-v="B">②句子</button>
  1223. <button class="btn" data-k="form" data-v="C">③同义</button>
  1224. </span>
  1225. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">知识类型</span>
  1226. <span class="g-lens">
  1227. <button class="btn on" data-k="lens" data-v="工序">工序</button>
  1228. <button class="btn" data-k="lens" data-v="工具">工具</button>
  1229. <button class="btn" data-k="lens" data-v="能力">能力</button>
  1230. </span>
  1231. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">约束·工具类型</span>
  1232. <span class="g-tool">
  1233. <button class="btn on" data-k="tool" data-v="">无</button>
  1234. <span id="toolBtns"></span>
  1235. </span>
  1236. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">搜索优先级</span>
  1237. <span class="g-tier">
  1238. <button class="btn on" data-k="tier" data-v="0">全部</button>
  1239. <button class="btn" data-k="tier" data-v="2">≥中</button>
  1240. <button class="btn" data-k="tier" data-v="3">仅高</button>
  1241. </span>
  1242. </div>
  1243. </div>
  1244. <div class="mxwrap"
  1245. style="max-height:55vh; overflow:auto; border:1px solid var(--line); border-radius: 0 0 8px 8px; margin-bottom:12px; background:#fff; position:relative;">
  1246. <table id="comboMx"></table>
  1247. </div>
  1248. <div class="pop" id="pop"></div>
  1249. <div class="navrow"><span class="navlab">渠道</span>
  1250. <div id="navC" style="display:flex;gap:8px;flex-wrap:wrap"></div>
  1251. </div>
  1252. </div>
  1253. <div class="toolbar">
  1254. <div class="filters"></div>
  1255. <!-- 动态相关性过滤阈值 -->
  1256. <div class="threshold-control" style="display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 4px 12px; font-size: 13px; font-weight: 600; box-shadow: var(--shadow);">
  1257. <span style="color: var(--muted); font-size: 12px; font-weight: 700;">相关性过滤阈值:</span>
  1258. <input type="number" id="relThreshold" min="0" max="10" step="0.5" value="4.0"
  1259. oninput="renderGrid(); renderHead();"
  1260. style="width: 55px; border: 1px solid #d1d5db; border-radius: 4px; padding: 2px 6px; font-weight: 700; text-align: center; color: #2563eb; outline: none; transition: border-color 0.2s;"
  1261. onfocus="this.style.borderColor='#2563eb'" onblur="this.style.borderColor='#d1d5db'">
  1262. </div>
  1263. <button id="reevalBtn" onclick="reevalCurrentQuery()" title="只对当前 query 的所有 form/帖子复评(不重新搜索)">♻️ 重评当前
  1264. query</button>
  1265. <select id="sort">
  1266. <option value="score">按综合分排序</option>
  1267. <option value="date">按发布时间排序</option>
  1268. <option value="platform">按平台排序</option>
  1269. </select>
  1270. </div>
  1271. <div class="grid" id="grid"></div>
  1272. </div>
  1273. </main>
  1274. <dialog id="detailDialog">
  1275. <div class="modal-head">
  1276. <div>
  1277. <div id="modalMeta" class="meta"></div>
  1278. <h3 id="modalTitle"></h3>
  1279. </div>
  1280. <div style="display: flex; gap: 8px; flex-shrink: 0;">
  1281. <button id="fullscreenBtn" onclick="toggleFullscreen()">全屏</button>
  1282. <button onclick="detailDialog.close()">关闭</button>
  1283. </div>
  1284. </div>
  1285. <div class="modal-tabs" id="modalTabs" style="display: none;">
  1286. <button class="modal-tab active" onclick="switchModalTab('detail')" id="tabDetailBtn">帖子详情</button>
  1287. <button class="modal-tab" onclick="switchModalTab('procedure')" id="tabProcedureBtn">对应工序</button>
  1288. </div>
  1289. <div class="modal-content" id="modalContentDetail">
  1290. <section>
  1291. <div class="rubric-note" id="modalReason"></div>
  1292. <div class="section-title">抓取文本节选</div>
  1293. <div class="raw" id="modalText"></div>
  1294. <div class="section-title">图片预览</div>
  1295. <div class="images" id="modalImages"></div>
  1296. </section>
  1297. <aside>
  1298. <div class="section-title" style="display: flex; justify-content: space-between; align-items: center;">
  1299. <span>评分详情</span>
  1300. <span id="modalOverallScore" style="font-size: 13.5px; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: 4px; background: #faf7f1; border: 1px solid var(--line); padding: 3px 10px; border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.01);">
  1301. 综合评分 <strong style="font-size: 19px; color: #2563eb; font-weight: 900; line-height: 1;" id="modalOverallScoreVal">—</strong>
  1302. </span>
  1303. </div>
  1304. <div class="scores" id="modalScores"></div>
  1305. <div class="section-title">类型 / 命中 query</div>
  1306. <div class="tags" id="modalTags"></div>
  1307. </aside>
  1308. </div>
  1309. <div id="modalContentProcedure" style="display: none; height: 600px;">
  1310. <iframe id="procedureIframe" style="width: 100%; height: 100%; border: none; background: #fff;" referrerpolicy="no-referrer"></iframe>
  1311. </div>
  1312. </dialog>
  1313. <script>
  1314. let DATA = { queries: [], actions: [], types: [], matrix: [] }, st = { form: 'A', lens: '工序', tools: [], tier: 0, qi: 0, fi: 0, channel: "all", matrixView: 'full' }, VIEW = [];
  1315. function esc(s) { return (s === undefined || s === null ? "" : String(s)).replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#039;"); }
  1316. const ACTIONS = [{ "name": "检索", "l1": "获取", "l2": "搜索" }, { "name": "下载", "l1": "获取", "l2": "搜索" }, { "name": "调取", "l1": "获取", "l2": "查询" }, { "name": "上传", "l1": "获取", "l2": "录入" }, { "name": "拍摄", "l1": "获取", "l2": "录入" }, { "name": "录音", "l1": "获取", "l2": "录入" }, { "name": "键入", "l1": "获取", "l2": "录入" }, { "name": "选取", "l1": "获取", "l2": "引用" }, { "name": "裁切", "l1": "提取", "l2": "物理提取" }, { "name": "抠取", "l1": "提取", "l2": "物理提取" }, { "name": "抽帧", "l1": "提取", "l2": "物理提取" }, { "name": "识别", "l1": "提取", "l2": "化学提取" }, { "name": "反推", "l1": "提取", "l2": "化学提取" }, { "name": "解构", "l1": "提取", "l2": "化学提取" }, { "name": "元素生成", "l1": "生成", "l2": "元素生成" }, { "name": "数组生成", "l1": "生成", "l2": "关系生成" }, { "name": "结构生成", "l1": "生成", "l2": "关系生成" }, { "name": "添加", "l1": "修改", "l2": "增" }, { "name": "叠加", "l1": "修改", "l2": "增" }, { "name": "抹除", "l1": "修改", "l2": "删" }, { "name": "剪除", "l1": "修改", "l2": "删" }, { "name": "重述", "l1": "修改", "l2": "变" }, { "name": "风格化", "l1": "修改", "l2": "变" }, { "name": "转换", "l1": "修改", "l2": "变" }, { "name": "替换", "l1": "修改", "l2": "变" }, { "name": "调整", "l1": "修改", "l2": "变" }, { "name": "增强", "l1": "修改", "l2": "变" }];
  1317. const TYPES = [{ "name": "提示词", "l1": "程序控制类型", "l2": "指令" }, { "name": "负向提示词", "l1": "程序控制类型", "l2": "指令" }, { "name": "描述", "l1": "程序控制类型", "l2": "指令" }, { "name": "生成参数", "l1": "程序控制类型", "l2": "参数" }, { "name": "规格参数", "l1": "程序控制类型", "l2": "参数" }, { "name": "模型权重", "l1": "程序控制类型", "l2": "参数" }, { "name": "评分", "l1": "程序控制类型", "l2": "评估" }, { "name": "评语", "l1": "程序控制类型", "l2": "评估" }, { "name": "工作流", "l1": "程序控制类型", "l2": "流程" }, { "name": "批处理", "l1": "程序控制类型", "l2": "流程" }, { "name": "数字人", "l1": "数据复用类型", "l2": "原子" }, { "name": "版式", "l1": "数据复用类型", "l2": "原子" }, { "name": "模板", "l1": "数据复用类型", "l2": "序列" }, { "name": "参考图", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "参考视频", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "参考音频", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "对标内容", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "分镜图", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "转场", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "蒙版", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "控制图", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "运动轨迹", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "滤镜", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "构图布局", "l1": "内容类型", "l2": "素材/化学变化" }, { "name": "截图", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "视频片段", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "转场片段", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "关键帧", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "音效", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "特效", "l1": "内容类型", "l2": "素材/物理变化" }, { "name": "大纲", "l1": "内容类型", "l2": "半成品/序列" }, { "name": "脚本", "l1": "内容类型", "l2": "半成品/序列" }, { "name": "分镜脚本", "l1": "内容类型", "l2": "半成品/序列" }, { "name": "剪辑脚本", "l1": "内容类型", "l2": "半成品/序列" }, { "name": "配音文案", "l1": "内容类型", "l2": "半成品/序列" }, { "name": "底图", "l1": "内容类型", "l2": "半成品/原子" }, { "name": "样图", "l1": "内容类型", "l2": "半成品/原子" }, { "name": "分镜视频", "l1": "内容类型", "l2": "半成品/原子" }, { "name": "图层组合", "l1": "内容类型", "l2": "半成品/组合" }, { "name": "拼图", "l1": "内容类型", "l2": "半成品/组合" }, { "name": "歌词", "l1": "内容类型", "l2": "准成品" }, { "name": "配音", "l1": "内容类型", "l2": "准成品" }, { "name": "BGM", "l1": "内容类型", "l2": "准成品" }, { "name": "字幕", "l1": "内容类型", "l2": "准成品" }, { "name": "标题", "l1": "内容类型", "l2": "准成品" }, { "name": "正文", "l1": "内容类型", "l2": "准成品" }, { "name": "成品图", "l1": "内容类型", "l2": "成品" }, { "name": "视频成品", "l1": "内容类型", "l2": "成品" }, { "name": "合成图", "l1": "内容类型", "l2": "成品" }, { "name": "知识库", "l1": "知识类型", "l2": "知识库" }];
  1318. const POOLS = { "action_leaves": { "检索": ["找", "搜", "哪里找", "在哪找", "搜索"], "下载": ["下载", "怎么下载", "获取", "导入"], "调取": ["复用", "调用", "套用", "加载"], "上传": ["上传", "导入", "怎么导入", "用自己的"], "拍摄": ["拍", "拍摄", "录制", "录屏", "怎么拍"], "录音": ["录音", "录", "怎么录", "录制"], "键入": ["写", "输入", "怎么写", "编写"], "选取": ["挑选", "怎么选", "筛选", "选"], "裁切": ["裁剪", "截取", "怎么裁", "切片"], "抠取": ["抠图", "抠", "分割", "怎么抠"], "抽帧": ["抽帧", "提取帧", "怎么抽帧", "导出帧"], "识别": ["识别", "检测", "OCR", "提取文字", "转录"], "反推": ["反推", "分析", "推断", "怎么反推"], "解构": ["拆解", "解构", "分析结构"], "元素生成": ["生成", "制作", "怎么做", "做", "创作"], "数组生成": ["批量生成", "生成多张", "怎么批量", "批量做"], "结构生成": ["生成", "搭建", "怎么生成", "构建"], "添加": ["添加", "加", "怎么加", "加上"], "叠加": ["叠加", "合成", "叠", "加"], "抹除": ["去除", "去掉", "怎么去掉", "抹除", "消除"], "剪除": ["剪掉", "删掉", "怎么剪", "截短"], "重述": ["改写", "润色", "怎么改", "重写"], "风格化": ["风格化", "转风格", "风格迁移", "怎么转风格"], "转换": ["转换", "转", "怎么转", "转格式"], "替换": ["替换", "换", "怎么换", "替换成"], "调整": ["调整", "调", "怎么调", "优化"], "增强": ["增强", "提升画质", "怎么增强", "修复", "超分"] }, "types": { "提示词": ["提示词", "prompt", "咒语"], "负向提示词": ["负向提示词", "反向提示词", "negative prompt"], "描述": ["描述", "描述词", "提示描述"], "生成参数": ["参数", "出图参数", "生成参数", "seed"], "规格参数": ["尺寸", "分辨率", "画幅", "规格"], "模型权重": ["模型", "LoRA", "底模", "checkpoint"], "评分": ["评分", "打分", "评级"], "评语": ["评语", "点评", "反馈", "修改意见"], "工作流": ["工作流", "workflow", "流程图", "节点"], "批处理": ["批处理", "批量", "batch"], "数字人": ["数字人", "虚拟人", "数字分身", "AI分身"], "版式": ["版式", "排版", "版面", "layout"], "模板": ["模板", "template", "套版"], "参考图": ["参考图", "参考", "垫图", "ref"], "参考视频": ["参考视频", "参考片", "参考素材"], "参考音频": ["参考音频", "参考音色", "音色样本"], "对标内容": ["对标", "爆款参考", "竞品", "标杆案例"], "分镜图": ["分镜图", "分镜", "故事板", "storyboard"], "转场": ["转场", "转场效果", "transition"], "蒙版": ["蒙版", "抠像", "遮罩", "mask"], "控制图": ["控制图", "ControlNet", "结构图", "线稿"], "运动轨迹": ["运镜", "运动轨迹", "运动笔刷", "motion brush"], "滤镜": ["滤镜", "filter", "调色", "LUT"], "构图布局": ["构图", "布局", "构图布局"], "截图": ["截图", "屏幕截图", "截屏"], "视频片段": ["视频片段", "片段", "素材", "clip"], "转场片段": ["转场片段", "转场素材"], "关键帧": ["关键帧", "帧", "视频帧"], "音效": ["音效", "声音", "SFX", "音效素材"], "特效": ["特效", "视频特效", "VFX", "effect"], "大纲": ["大纲", "内容大纲", "提纲"], "脚本": ["脚本", "文案脚本", "剧本"], "分镜脚本": ["分镜脚本", "分镜表", "分镜"], "剪辑脚本": ["剪辑脚本", "剪辑表", "卡点表", "时间轴"], "配音文案": ["配音文案", "口播文案", "旁白文案"], "底图": ["底图", "背景图", "打底图"], "样图": ["样图", "效果图", "候选图", "draft"], "分镜视频": ["分镜视频", "分镜片段"], "图层组合": ["图层组合", "图层", "图层合成"], "拼图": ["拼图", "九宫格", "长图", "对比图"], "歌词": ["歌词", "词", "lyrics"], "配音": ["配音", "旁白", "解说", "人声"], "BGM": ["BGM", "背景音乐", "配乐"], "字幕": ["字幕", "视频字幕", "字幕条"], "标题": ["标题", "文案标题", "爆款标题"], "正文": ["正文", "文案", "内容正文"], "成品图": ["成品图", "出图", "图", "海报"], "视频成品": ["视频成品", "成片", "视频"], "合成图": ["合成图", "拼合图", "融合图", "合成"], "知识库": ["知识库", "资料库", "knowledge base"] }, "knowledge": { "工序": { "单步": ["教程", "流程", "步骤", "怎么做", "方法", "教学"], "全程": ["完整流程", "全流程", "pipeline", "SOP"] }, "能力": { "标记": ["一键", "自动", "直出", "秒出"], "达成": ["同款", "复刻", "效果"], "载体": ["提示词", "参数", "预设", "公式"] }, "工具": { "发现": ["用什么软件", "用什么工具", "工具推荐", "哪个好用", "有哪些工具"] } }, "tool_type": { "AI 模型": ["AI"], "桌面 APP": ["软件", "电脑端"], "云端 Web": ["在线", "网页版"], "API·CLI": ["代码", "命令行"], "插件扩展": ["插件"] } };
  1319. const TOOL_TYPES = ["AI 模型", "桌面 APP", "云端 Web", "API·CLI", "插件扩展"];
  1320. const GMODEL = "gemini-3.1-flash-lite";
  1321. const AL = POOLS.action_leaves, TP = POOLS.types, KN = POOLS.knowledge, TQ = POOLS.tool_type;
  1322. function aPool(a) { return AL[a] || [a]; }
  1323. function tPool(t) { return TP[t] || [t]; }
  1324. function pick(arr, i) { return arr[Math.min(i, arr.length - 1)]; }
  1325. function toolPrefix(lens) { return (st.tools.length && lens !== '工具') ? st.tools.map(t => TQ[t][0]).join('/') + ' ' : ''; }
  1326. function genForms(leaf, ty, lens, tq) {
  1327. tq = tq || ''; const aP = aPool(leaf), tP = tPool(ty);
  1328. const aNat = aP[0], tNat = tP[0], aSyn = pick(aP, 1), tSyn = pick(tP, 1), K = KN[lens];
  1329. if (lens === '工序') {
  1330. const s = K['单步'];
  1331. return [['①原词', `${tq}${leaf} ${ty} 流程`], ['②句子', `${tq}怎么${aNat}${tNat}`], ['③同义', `${tq}${aSyn} ${tSyn} ${pick(s, 2)}`]];
  1332. }
  1333. if (lens === '能力') {
  1334. const mk = K['标记'];
  1335. return [['①原词', `${tq}${leaf} ${ty} 技巧`], ['②句子', `${tq}有没有能${mk[0]}${aNat}${tNat}的功能`], ['③同义', `${tq}${pick(mk, 1)} ${aSyn}${tSyn}`]];
  1336. }
  1337. const fd = K['发现'];
  1338. return [['①原词', `${leaf} ${ty} 工具`], ['②句子', `${aNat}${tNat}用什么软件好`], ['③同义', `${aSyn} ${tSyn} ${pick(fd, 2)}`]];
  1339. }
  1340. const FIDX = { A: 0, B: 1, C: 2 };
  1341. function genQ(leaf, ty) { return genForms(leaf, ty, st.lens, toolPrefix(st.lens))[FIDX[st.form]][1]; }
  1342. // 兼容老版 1-5 维度的英文和中文对应标签
  1343. const commonLabels = { relevance: "相关性", result_quality: "成品质量", credibility: "可信度", novelty_coverage: "新增覆盖", concrete_use_case: "具体用例", completeness: "流程完整", step_structure: "步骤结构", step_reproducibility: "可复现性", capability_definition: "能力定义", implementation_depth: "实现深度", boundary_failure_eval: "边界/踩坑", generality: "通用性", capability_coverage: "工具覆盖", effective_comparison: "有效对比", param_specificity: "参数具体", worked_example: "示例完整", version_limits: "限制说明" };
  1344. const filterLabels = { production_relevance: "制作相关性", recency_hard: "发布时效", overall: "综合均分" };
  1345. const filterMax = { production_relevance: 3, recency_hard: 3, overall: 5 };
  1346. // 新版 0-10 分数维度的中文标签
  1347. const newLabels = {
  1348. relevance_production: "和内容制作知识相关",
  1349. relevance_query: "和 query 相关",
  1350. recency: "时效性",
  1351. popularity: "热度性",
  1352. feedback: "评论反馈",
  1353. realism: "真实感 (非AI)",
  1354. expressiveness: "表现力",
  1355. procedure_completeness: "流程完整性",
  1356. procedure_input: "输入完整性",
  1357. procedure_implementation: "实现完整性",
  1358. procedure_output: "输出完整性",
  1359. procedure_generality: "泛化性",
  1360. step_input: "输入完整性",
  1361. step_implementation: "实现完整性",
  1362. step_output: "输出完整性",
  1363. step_generality: "泛化性",
  1364. tool_boundary: "能力边界覆盖",
  1365. tool_comparison: "有效比较",
  1366. tool_specificity: "参数/接口具体性",
  1367. tool_example: "实操示例",
  1368. tool_limits: "版本&限制"
  1369. };
  1370. const scoreGroupsOld = [
  1371. { id: "filter", title: "过滤指标", short: "过滤", hint: "独立于通用维度·过滤逻辑待定", topLevelKeys: ["production_relevance", "recency_hard", "overall"] },
  1372. { id: "common", title: "通用维度", short: "通用", keys: ["relevance", "result_quality", "credibility", "novelty_coverage", "concrete_use_case"] },
  1373. { id: "procedure", title: "工序维度", short: "工序", keys: ["completeness", "step_structure", "step_reproducibility"] },
  1374. { id: "step", title: "步骤维度", short: "步骤", keys: ["capability_definition", "implementation_depth", "boundary_failure_eval", "generality"] },
  1375. { id: "tool", title: "工具维度", short: "工具", keys: ["capability_coverage", "effective_comparison", "param_specificity", "worked_example", "version_limits"] }
  1376. ];
  1377. const scoreGroupsNew = [
  1378. { id: "relevance", title: "相关性", short: "相关", keys: ["relevance_production", "relevance_query"] },
  1379. { id: "fixed", title: "固定维度", short: "固定", keys: ["recency", "popularity", "feedback"] },
  1380. { id: "usecase", title: "用例维度", short: "用例", keys: ["realism", "expressiveness"] },
  1381. { id: "dynamic", title: "动态维度", short: "动态", keys: [] }
  1382. ];
  1383. function makeRow(label, scoreKey, it) {
  1384. const rawV = it.scores[scoreKey];
  1385. const v = (rawV !== undefined && rawV !== null) ? parseFloat(rawV) : NaN;
  1386. const hasScore = !isNaN(v);
  1387. const valStr = hasScore ? (Number.isInteger(v) ? v : v.toFixed(1)) : '-';
  1388. const barV = hasScore ? v : 0;
  1389. const reason = it.score_reasons ? it.score_reasons[scoreKey] : '';
  1390. const infoIcon = reason ? `<span class="info-icon" onclick="pinScoreReason(this, '${esc(label)}', '${esc(scoreKey)}')" title="点击定格查看评判理由" style="margin-left: 5px; cursor: pointer; color: var(--muted); opacity: 0.7; font-size: 13px; font-weight: normal; user-select: none;">ⓘ</span>` : '';
  1391. return `
  1392. <div class="sc-row ${!hasScore ? 'missing' : ''}">
  1393. <span class="label">${esc(label)}</span>
  1394. <div class="bar-wrap">
  1395. <div class="bar">
  1396. <div class="bar-fill" style="--v: ${barV}"></div>
  1397. </div>
  1398. <span class="value">${valStr}</span>
  1399. ${infoIcon}
  1400. </div>
  1401. </div>
  1402. `;
  1403. }
  1404. function getQualityAverage(it) {
  1405. if (!it.scores) return null;
  1406. const keys = ["recency", "popularity", "feedback", "realism", "expressiveness"];
  1407. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1408. keys.push("procedure_completeness", "procedure_input", "procedure_implementation", "procedure_output", "procedure_generality");
  1409. }
  1410. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1411. keys.push("step_input", "step_implementation", "step_output", "step_generality");
  1412. }
  1413. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1414. keys.push("tool_boundary", "tool_comparison", "tool_specificity", "tool_example", "tool_limits");
  1415. }
  1416. const vs = keys.map(k => parseFloat(it.scores[k])).filter(v => !isNaN(v));
  1417. return vs.length ? vs.reduce((a, b) => a + b, 0) / vs.length : null;
  1418. }
  1419. function renderNewScores(it) {
  1420. // 1. Relevance Card
  1421. const relAvg = groupAverage(it, scoreGroupsNew[0], true);
  1422. const relAvgStr = relAvg !== null ? relAvg.toFixed(1) : 'N/A';
  1423. let relevanceHtml = `
  1424. <div class="sc-card">
  1425. <div class="sc-card-head">
  1426. <div class="title"><span class="badge">01</span>相关性</div>
  1427. <div class="avg-score">avg <strong>${relAvgStr}</strong><span style="font-size: 13px; color: #9ca3af; font-weight: 500;">/10</span></div>
  1428. </div>
  1429. <div class="sc-card-body">
  1430. ${makeRow("和内容制作知识相关", "relevance_production", it)}
  1431. ${makeRow("和 query 相关", "relevance_query", it)}
  1432. </div>
  1433. </div>
  1434. `;
  1435. // 2. Quality Card
  1436. const qualAvg = getQualityAverage(it);
  1437. const qualAvgStr = qualAvg !== null ? qualAvg.toFixed(1) : 'N/A';
  1438. let qualityHtml = `
  1439. <div class="sc-card">
  1440. <div class="sc-card-head">
  1441. <div class="title"><span class="badge">02</span>质量</div>
  1442. <div class="avg-score">avg <strong>${qualAvgStr}</strong><span style="font-size: 13px; color: #9ca3af; font-weight: 500;">/10</span></div>
  1443. </div>
  1444. <div class="sc-card-body">
  1445. <div class="sc-sub-header">固定维度</div>
  1446. ${makeRow("时效性", "recency", it)}
  1447. ${makeRow("热度性", "popularity", it)}
  1448. ${makeRow("评论反馈", "feedback", it)}
  1449. <div class="sc-sub-header">用例</div>
  1450. ${makeRow("真实感 (非AI)", "realism", it)}
  1451. ${makeRow("表现力", "expressiveness", it)}
  1452. `;
  1453. // Dynamic Dimensions
  1454. let dynamicHtml = '';
  1455. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1456. dynamicHtml += `
  1457. <div class="sc-sub-header">工序</div>
  1458. ${makeRow("流程完整性", "procedure_completeness", it)}
  1459. ${makeRow("输入完整性", "procedure_input", it)}
  1460. ${makeRow("实现完整性", "procedure_implementation", it)}
  1461. ${makeRow("输出完整性", "procedure_output", it)}
  1462. ${makeRow("泛化性", "procedure_generality", it)}
  1463. `;
  1464. }
  1465. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1466. dynamicHtml += `
  1467. <div class="sc-sub-header">能力</div>
  1468. ${makeRow("输入完整性", "step_input", it)}
  1469. ${makeRow("实现完整性", "step_implementation", it)}
  1470. ${makeRow("输出完整性", "step_output", it)}
  1471. ${makeRow("泛化性", "step_generality", it)}
  1472. `;
  1473. }
  1474. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1475. dynamicHtml += `
  1476. <div class="sc-sub-header">工具</div>
  1477. ${makeRow("能力边界覆盖", "tool_boundary", it)}
  1478. ${makeRow("有效比较", "tool_comparison", it)}
  1479. ${makeRow("参数/接口具体性", "tool_specificity", it)}
  1480. ${makeRow("实操示例", "tool_example", it)}
  1481. ${makeRow("版本&限制", "tool_limits", it)}
  1482. `;
  1483. }
  1484. qualityHtml += dynamicHtml + `
  1485. </div>
  1486. </div>
  1487. `;
  1488. return relevanceHtml + qualityHtml;
  1489. }
  1490. function isItemDiscarded(it) {
  1491. if (it.anomaly) return false;
  1492. const input = document.getElementById("relThreshold");
  1493. const userThreshold = input ? parseFloat(input.value) : NaN;
  1494. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  1495. let isDiscard = false;
  1496. // 1. Relevance check
  1497. const relVal = it.production_relevance !== null && it.production_relevance !== undefined ? parseFloat(it.production_relevance) : null;
  1498. if (relVal !== null && !isNaN(relVal)) {
  1499. const activeThreshold = !isNaN(userThreshold) ? userThreshold : (isNewSchema ? 4.0 : 2.0);
  1500. if (relVal < activeThreshold) {
  1501. isDiscard = true;
  1502. }
  1503. }
  1504. // 2. Recency check
  1505. if (it.recency_hard !== null && it.recency_hard !== undefined && it.recency_hard < 2) {
  1506. isDiscard = true;
  1507. }
  1508. // 3. Overall average check
  1509. if (it.overall !== null && it.overall !== undefined) {
  1510. const threshold_ov = isNewSchema ? 6.0 : 3.0;
  1511. if (it.overall < threshold_ov) {
  1512. isDiscard = true;
  1513. }
  1514. }
  1515. return isDiscard;
  1516. }
  1517. function updateThresholdLimits() {
  1518. const f = curForm();
  1519. const input = document.getElementById("relThreshold");
  1520. if (!f || !f.results || f.results.length === 0 || !input) return;
  1521. const isNew = f.results.some(r => r.scores && (r.scores.relevance_production !== undefined || r.scores.relevance_query !== undefined));
  1522. const schemaKey = isNew ? "new" : "old";
  1523. if (input.dataset.schema !== schemaKey) {
  1524. input.dataset.schema = schemaKey;
  1525. input.max = isNew ? "10" : "5";
  1526. input.value = isNew ? "4.0" : "2.0";
  1527. input.step = isNew ? "0.5" : "1";
  1528. }
  1529. }
  1530. const PLATC = { xhs: "小红书", gzh: "公众号", zhihu: "知乎", x: "X", bili: "B站", douyin: "抖音", sph: "视频号", youtube: "YouTube", github: "GitHub", toutiao: "头条", weibo: "微博" };
  1531. const FN = { A: "原词", B: "句子", C: "同义" };
  1532. const NOIMG = "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Crect width='600' height='400' fill='%23eee7dc'/%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' fill='%236f6961' font-size='28'%3ENo image%3C/text%3E%3C/svg%3E";
  1533. function curForm() { return st.qi === -1 ? null : (DATA.queries[st.qi] ? DATA.queries[st.qi].forms[st.fi] : null); }
  1534. function groupAverage(it, g, isNewSchema) {
  1535. if (!it.scores) return null;
  1536. let keys = g.keys;
  1537. if (isNewSchema && g.id === "dynamic") {
  1538. keys = [];
  1539. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1540. keys.push("procedure_completeness", "procedure_input", "procedure_implementation", "procedure_output", "procedure_generality");
  1541. }
  1542. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1543. keys.push("step_input", "step_implementation", "step_output", "step_generality");
  1544. }
  1545. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1546. keys.push("tool_boundary", "tool_comparison", "tool_specificity", "tool_example", "tool_limits");
  1547. }
  1548. }
  1549. const vs = keys.map(k => parseFloat(it.scores[k])).filter(v => !isNaN(v));
  1550. return vs.length ? vs.reduce((a, b) => a + b, 0) / vs.length : null;
  1551. }
  1552. function fmt(v) { return v === null ? "N/A" : v.toFixed(1); }
  1553. function groupSnapshot(it) {
  1554. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  1555. if (isNewSchema) {
  1556. const relAvg = groupAverage(it, scoreGroupsNew[0], true);
  1557. const qualAvg = getQualityAverage(it);
  1558. return `
  1559. <div class="group-pill"><span>相关</span><strong>${fmt(relAvg)}</strong></div>
  1560. <div class="group-pill"><span>质量</span><strong>${fmt(qualAvg)}</strong></div>
  1561. `;
  1562. }
  1563. const groups = scoreGroupsOld;
  1564. return groups.map(g => {
  1565. if (!isNewSchema && g.id === 'filter') {
  1566. const pr = it.production_relevance, rh = it.recency_hard, ov = it.overall;
  1567. const f = (v, max) => (v == null || !Number.isFinite(v)) ? '-' : (max === 5 ? (typeof v === 'number' ? v.toFixed(1) : v) : v);
  1568. return `<div class="group-pill" title="${g.hint || ''}"><span>${g.short}</span><strong style="font-size:12px;">${f(pr, 3)}·${f(rh, 3)}·${f(ov, 5)}</strong></div>`;
  1569. }
  1570. const a = groupAverage(it, g, isNewSchema);
  1571. return `<div class="group-pill"><span>${g.short}</span><strong>${fmt(a)}</strong></div>`;
  1572. }).join("");
  1573. }
  1574. // filter 组:数据从 it 顶层、量程按 filterMax 归一化到 5 量程(meter 的 --v*20% 公式不动)
  1575. function renderScoreGroup(it, g) {
  1576. const isFilter = g.id === 'filter';
  1577. const keys = g.topLevelKeys || g.keys;
  1578. const src = isFilter ? it : it.scores;
  1579. if (!src) return '';
  1580. const labels = isFilter ? filterLabels : commonLabels;
  1581. const rows = keys.map(k => {
  1582. const v = src[k];
  1583. const m = !Number.isFinite(v);
  1584. const max = isFilter ? (filterMax[k] || 5) : 5;
  1585. const meterV = m ? 0 : (v * 5 / max);
  1586. const suffix = isFilter && max !== 5 ? `/${max}` : '';
  1587. const valStr = m ? '-' : (typeof v === 'number' ? (Number.isInteger(v) ? v : v.toFixed(1)) : v);
  1588. const reason = (it.score_reasons) ? it.score_reasons[k] : '';
  1589. const infoIcon = reason ? `<span class="info-icon" onclick="pinScoreReason(this, '${esc(labels[k] || k)}', '${esc(k)}')" title="点击定格查看评判理由" style="margin-left: 5px; cursor: pointer; color: var(--muted); opacity: 0.7; font-size: 11px; font-weight: normal; user-select: none;">ⓘ</span>` : '';
  1590. return `<div class="score-row ${m ? 'missing' : ''}"><span>${labels[k] || k}</span><div class="meter" style="--v:${meterV}"><span></span></div><strong style="display: inline-flex; align-items: center;">${valStr}${suffix}${infoIcon}</strong></div>`;
  1591. }).join("");
  1592. const headRight = isFilter ? (g.hint ? `<small>${g.hint}</small>` : '') : `<small>均分 ${fmt(groupAverage(it, g))}</small>`;
  1593. return `<section class="score-group"><div class="score-group-head"><span>${g.title}</span>${headRight}</div><div class="score-group-body">${rows}</div></section>`;
  1594. }
  1595. function curDims() {
  1596. if (st.qi === -1) { if (openCell) { const ai = +openCell.dataset.ai, ti = +openCell.dataset.ti; return { type: TYPES[ti].name, action: ACTIONS[ai].name }; } return {}; }
  1597. const q = DATA.queries[st.qi]; return (q && q.dims) ? q.dims : {};
  1598. }
  1599. function spans(arr, key) { const o = []; let cur = null, s = 0; arr.forEach((x, i) => { if (x[key] !== cur) { if (cur !== null) o.push([cur, s, i - s]); cur = x[key]; s = i; } }); o.push([cur, s, arr.length - s]); return o; }
  1600. const l1sp = spans(ACTIONS, 'l1'), l2sp = spans(ACTIONS, 'l2');
  1601. const l1Start = new Set(l1sp.map(s => s[1])), l2Start = new Set(l2sp.map(s => s[1]));
  1602. function detectLens(q) {
  1603. const text = (q.original_q || (q.forms && q.forms[0] && q.forms[0].query) || "").toLowerCase();
  1604. if (/流程|步骤|教程|方法|教学|SOP|pipeline|工序/.test(text)) return '工序';
  1605. if (/一键|自动|直出|秒出|同款|复刻|效果|技巧|能力/.test(text)) return '能力';
  1606. if (/用什么|软件|工具|推荐|哪个好用|有哪些/.test(text)) return '工具';
  1607. return '工序';
  1608. }
  1609. function findQuery(aName, tName, lens, tool) {
  1610. const matches = DATA.queries.filter(q => {
  1611. if (!q.dims || q.dims.action !== aName || q.dims.type !== tName) return false;
  1612. const qLens = detectLens(q);
  1613. if (qLens !== lens) return false;
  1614. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  1615. if (tool) {
  1616. if (!hasToolConstraint || q.dims.constraint.value !== tool) return false;
  1617. }
  1618. return true;
  1619. });
  1620. if (matches.length > 0) {
  1621. matches.sort((x, y) => {
  1622. if (!tool) {
  1623. const hasX = x.dims.constraint && x.dims.constraint.kind === "工具类型";
  1624. const hasY = y.dims.constraint && y.dims.constraint.kind === "工具类型";
  1625. if (hasX !== hasY) return hasX ? 1 : -1;
  1626. }
  1627. return (y.hits || 0) - (x.hits || 0);
  1628. });
  1629. return matches[0];
  1630. }
  1631. return null;
  1632. }
  1633. function selectQueryByActiveCellAndControls(aName, tName) {
  1634. const activeTool = st.tools[0] || null;
  1635. let match = findQuery(aName, tName, st.lens, activeTool);
  1636. const isProcedureView = st.matrixView === 'procedures';
  1637. const isHitsView = st.matrixView === 'hits';
  1638. const hasContent = q => {
  1639. if (isProcedureView) return getFormProcedureCount(q) > 0;
  1640. if (isHitsView) return getFormReportCount(q) > 0;
  1641. return q.hits > 0;
  1642. };
  1643. if (match) {
  1644. st.qi = DATA.queries.indexOf(match);
  1645. const fi = match.forms.findIndex(f => f.form === st.form);
  1646. st.fi = fi >= 0 ? fi : 0;
  1647. st.selectedAction = aName;
  1648. st.selectedType = tName;
  1649. } else {
  1650. // Fallback: search for any query matching active lens & tool constraint with hits
  1651. const matches = DATA.queries.filter(q => {
  1652. if (!q.dims || !q.dims.action || !q.dims.type) return false;
  1653. const qLens = detectLens(q);
  1654. if (qLens !== st.lens) return false;
  1655. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  1656. if (activeTool) {
  1657. if (!hasToolConstraint || q.dims.constraint.value !== activeTool) return false;
  1658. } else {
  1659. if (hasToolConstraint) return false;
  1660. }
  1661. return hasContent(q);
  1662. });
  1663. if (matches.length > 0) {
  1664. matches.sort((x, y) => {
  1665. if (!activeTool) {
  1666. const hasX = x.dims.constraint && x.dims.constraint.kind === "工具类型";
  1667. const hasY = y.dims.constraint && y.dims.constraint.kind === "工具类型";
  1668. if (hasX !== hasY) return hasX ? 1 : -1;
  1669. }
  1670. const countX = isProcedureView ? getFormProcedureCount(x) : (isHitsView ? getFormReportCount(x) : x.hits);
  1671. const countY = isProcedureView ? getFormProcedureCount(y) : (isHitsView ? getFormReportCount(y) : y.hits);
  1672. return countY - countX;
  1673. });
  1674. const anyMatch = matches[0];
  1675. st.qi = DATA.queries.indexOf(anyMatch);
  1676. const fi = anyMatch.forms.findIndex(f => f.form === st.form);
  1677. st.fi = fi >= 0 ? fi : 0;
  1678. st.selectedAction = anyMatch.dims.action;
  1679. st.selectedType = anyMatch.dims.type;
  1680. } else {
  1681. st.qi = -1;
  1682. st.fi = 0;
  1683. }
  1684. }
  1685. }
  1686. function getFormReportCount(q) {
  1687. const f = q.forms && q.forms.find(x => x.form === st.form);
  1688. if (!f || !f.results) return 0;
  1689. return f.results.filter(r => !r.anomaly && !isItemDiscarded(r)).length;
  1690. }
  1691. function getFormProcedureCount(q) {
  1692. const f = q.forms && q.forms.find(x => x.form === st.form);
  1693. if (!f || !f.results) return 0;
  1694. return f.results.filter(r => !r.anomaly && !isItemDiscarded(r) && r.procedure_html).length;
  1695. }
  1696. function getFilteredHitsMap() {
  1697. const cm = {};
  1698. const activeTool = st.tools[0] || null;
  1699. const isProcedureView = st.matrixView === 'procedures';
  1700. DATA.queries.forEach((q, i) => {
  1701. const d = q.dims;
  1702. if (!d || !d.type || !d.action) return;
  1703. // Filter by lens
  1704. if (detectLens(q) !== st.lens) return;
  1705. // Filter by active tool constraint
  1706. const hasToolConstraint = d.constraint && d.constraint.kind === "工具类型";
  1707. if (activeTool) {
  1708. if (!hasToolConstraint || d.constraint.value !== activeTool) return;
  1709. } else {
  1710. if (hasToolConstraint) return;
  1711. }
  1712. const k = d.type + '|' + d.action;
  1713. const h = isProcedureView ? getFormProcedureCount(q) : getFormReportCount(q);
  1714. if (!cm[k] || h > cm[k].hits) {
  1715. cm[k] = { i, hits: h };
  1716. }
  1717. });
  1718. return cm;
  1719. }
  1720. function renderMatrix() {
  1721. const viewMode = st.matrixView || 'full';
  1722. const showFull = viewMode === 'full';
  1723. const cm = getFilteredHitsMap();
  1724. const activeActions = showFull ? ACTIONS : ACTIONS.filter(a => TYPES.some(t => {
  1725. const c = cm[t.name + '|' + a.name];
  1726. return c && c.hits > 0;
  1727. }));
  1728. const activeTypes = showFull ? TYPES : TYPES.filter(t => ACTIONS.some(a => {
  1729. const c = cm[t.name + '|' + a.name];
  1730. return c && c.hits > 0;
  1731. }));
  1732. const displayActions = activeActions.length ? activeActions : ACTIONS;
  1733. const displayTypes = activeTypes.length ? activeTypes : TYPES;
  1734. const l1sp = spans(displayActions, 'l1'), l2sp = spans(displayActions, 'l2');
  1735. const l1Start = new Set(l1sp.map(s => s[1])), l2Start = new Set(l2sp.map(s => s[1]));
  1736. let h = '<thead><tr class="l1"><th class="corner" rowspan="3">类型 \ 动作</th>' + l1sp.map(([v, s, c]) => `<th colspan="${c}" class="l1div">${v}</th>`).join('') + '</tr>';
  1737. h += '<tr class="l2">' + l2sp.map(([v, s, c]) => `<th colspan="${c}" class="${l1Start.has(s) ? 'l1div' : 'l2div'}">${v}</th>`).join('') + '</tr>';
  1738. h += '<tr class="leaf">' + displayActions.map((a, i) => `<th data-ai="${ACTIONS.indexOf(a)}" class="${l1Start.has(i) ? 'l1div' : (l2Start.has(i) ? 'l2div' : '')}">${a.name}</th>`).join('') + '</tr></thead><tbody>';
  1739. const typeCategories = ['程序控制类型', '数据复用类型', '内容类型', '知识类型'];
  1740. typeCategories.forEach(l1 => {
  1741. const catTypes = displayTypes.filter(t => t.l1 === l1);
  1742. if (catTypes.length === 0) return;
  1743. h += `<tr class="l1row"><td colspan="${displayActions.length + 1}">${l1}</td></tr>`;
  1744. catTypes.forEach((t) => {
  1745. h += `<tr data-type="${t.name}"><th class="rh" data-ti="${TYPES.indexOf(t)}">${t.name}</th>` + displayActions.map((a) => {
  1746. const ai = ACTIONS.indexOf(a);
  1747. const ti = TYPES.indexOf(t);
  1748. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  1749. const s = cell.tier !== undefined ? cell.tier : cell.s;
  1750. const cls = (s === null || s === undefined) ? 'tNA' : ('t' + s);
  1751. const isSel = (st.selectedAction === a.name && st.selectedType === t.name) ? ' sel' : '';
  1752. return `<td class="cell ${cls}${isSel}" data-ai="${ai}" data-ti="${ti}"></td>`;
  1753. }).join('') + '</tr>';
  1754. });
  1755. });
  1756. document.getElementById('comboMx').innerHTML = h + '</tbody>';
  1757. refresh();
  1758. applyCrosshair();
  1759. }
  1760. // 点中 cell 时浅高亮整行整列(含 row/col 表头),方便定位
  1761. function applyCrosshair() {
  1762. document.querySelectorAll('.rowsel,.colsel').forEach(el => el.classList.remove('rowsel', 'colsel'));
  1763. const ai = st.selectedAction ? ACTIONS.findIndex(a => a.name === st.selectedAction) : -1;
  1764. const ti = st.selectedType ? TYPES.findIndex(t => t.name === st.selectedType) : -1;
  1765. if (ai < 0 && ti < 0) return;
  1766. document.querySelectorAll(`#comboMx [data-ai="${ai}"]`).forEach(el => el.classList.add('colsel'));
  1767. document.querySelectorAll(`#comboMx [data-ti="${ti}"]`).forEach(el => el.classList.add('rowsel'));
  1768. }
  1769. function refresh() {
  1770. const cm = getFilteredHitsMap();
  1771. document.querySelectorAll('tr[data-type]').forEach(tr => {
  1772. const ty = tr.dataset.type;
  1773. tr.querySelectorAll('td.cell').forEach(td => {
  1774. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai];
  1775. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  1776. const s = cell.tier !== undefined ? cell.tier : cell.s;
  1777. const c = cm[ty + '|' + a.name];
  1778. const hits = c ? c.hits : 0;
  1779. td.textContent = genQ(a.name, ty);
  1780. if (hits > 0) {
  1781. const badge = document.createElement('span');
  1782. badge.className = 'hit-badge';
  1783. badge.textContent = hits;
  1784. td.appendChild(badge);
  1785. }
  1786. td.classList.toggle('hide', (s == null ? 0 : s) < (+st.tier));
  1787. const hitsLabel = st.matrixView === 'procedures' ? '有工序' : '命中';
  1788. td.title = `${ty} × ${a.name}\nGemini评分: ${(s === null || s === undefined) ? '未判' : ['无效', '低', '中', '高'][s]}\n当前 form(${st.form}) ${hitsLabel}: ${hits} 篇`;
  1789. });
  1790. });
  1791. }
  1792. const pop = document.getElementById('pop'); let openCell = null;
  1793. function showPop(td, x, y) {
  1794. openCell = td;
  1795. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai], t = TYPES[ti];
  1796. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  1797. const s = cell.tier !== undefined ? cell.tier : cell.s;
  1798. const tn = (s == null) ? '未判' : ['无效', '低', '中', '高'][s], tb = (s == null) ? 'NA' : s;
  1799. const gen = genForms(a.name, t.name, st.lens, toolPrefix(st.lens));
  1800. // Find matching query in database for this cell
  1801. const activeTool = st.tools[0] || null;
  1802. const matches = DATA.queries.filter(q => {
  1803. if (!q.dims || q.dims.action !== a.name || q.dims.type !== t.name) return false;
  1804. const qLens = detectLens(q);
  1805. if (qLens !== st.lens) return false;
  1806. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  1807. if (activeTool) {
  1808. if (!hasToolConstraint || q.dims.constraint.value !== activeTool) return false;
  1809. } else {
  1810. if (hasToolConstraint) return false;
  1811. }
  1812. return true;
  1813. });
  1814. let dbQuery = null;
  1815. if (matches.length > 0) {
  1816. matches.sort((x, y) => (y.hits || 0) - (x.hits || 0));
  1817. dbQuery = matches[0];
  1818. }
  1819. const dbFormMap = {};
  1820. if (dbQuery) {
  1821. dbQuery.forms.forEach(f => {
  1822. dbFormMap[f.form] = f.query;
  1823. });
  1824. }
  1825. const formKeys = ['A', 'B', 'C'];
  1826. let html = `<span class="close">×</span>
  1827. <div class="pt">
  1828. <span class="path a">${a.l1}›${a.l2}›${a.name}</span>
  1829. <span class="path t">${t.l1}›${t.name}</span>
  1830. <span class="path" style="background: var(--soft-amber); color: var(--amber); font-family: monospace; font-weight: bold; border: 1px solid rgba(184, 121, 24, 0.2);">${dbQuery ? dbQuery.key : '未匹配'}</span>
  1831. <span class="tier tb${tb}">gemini·${tn}</span>
  1832. </div>
  1833. <div class="reason${s === 0 ? ' inv' : ''}">${esc(cell.r || '(模型未给该格评分)')}</div>
  1834. <div class="lbl">系统生成 · 知识类型=${st.lens}${st.tools.length ? ' · 工具类型=' + st.tools.join('/') : ''}</div>
  1835. <ul>` + gen.map(([fName, genQStr], idx) => {
  1836. const formKey = formKeys[idx];
  1837. const actualQ = dbFormMap[formKey];
  1838. const isCurrent = formKey === st.form;
  1839. let content = `<span class="fm">${fName}</span>${esc(genQStr)}`;
  1840. if (actualQ) {
  1841. if (actualQ !== genQStr) {
  1842. content += `<div style="font-size: 13px; margin-top: 6px; color: #047857; font-weight: 600; font-family: ui-monospace, Menlo, Monaco, Consolas, monospace; line-height: 1.45; background: #ecfdf5; border: 1px dashed #34d399; padding: 6px 10px; border-radius: 6px; width: 100%; box-sizing: border-box; display: flex; align-items: center; gap: 4px; box-shadow: inset 0 1px 2px rgba(4, 120, 87, 0.04);">
  1843. <span style="background: #10b981; padding: 2px 6px; border-radius: 4px; font-size: 11px; color: #fff; font-weight: bold; font-family: -apple-system, sans-serif; white-space: nowrap;">实际搜索</span>
  1844. <span style="word-break: break-all; font-family: inherit;">${esc(actualQ)}</span>
  1845. </div>`;
  1846. } else {
  1847. content += `<div style="font-size: 13px; margin-top: 6px; color: #374151; font-weight: 600; font-family: ui-monospace, Menlo, Monaco, Consolas, monospace; line-height: 1.45; background: #f9fafb; border: 1px dashed #d1d5db; padding: 6px 10px; border-radius: 6px; width: 100%; box-sizing: border-box; display: flex; align-items: center; gap: 4px; box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);">
  1848. <span style="background: #9ca3af; padding: 2px 6px; border-radius: 4px; font-size: 11px; color: #fff; font-weight: bold; font-family: -apple-system, sans-serif; white-space: nowrap;">实际搜索</span>
  1849. <span style="font-style: italic; font-family: inherit; color: #6b7280;">(同上)</span>
  1850. </div>`;
  1851. }
  1852. }
  1853. return `<li class="gen${isCurrent ? ' cur' : ''}" style="display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 6px 8px;">${content}</li>`;
  1854. }).join('') + '</ul>';
  1855. pop.innerHTML = html;
  1856. pop.style.display = 'block';
  1857. pop.style.left = Math.max(8, Math.min(x, window.innerWidth - 466)) + 'px';
  1858. pop.style.top = Math.max(8, Math.min(y, window.innerHeight - pop.offsetHeight - 12)) + 'px';
  1859. pop.querySelector('.close').onclick = () => {
  1860. pop.style.display = 'none';
  1861. openCell = null;
  1862. };
  1863. }
  1864. function computeStats() {
  1865. const stat = { "0": 0, "1": 0, "2": 0, "3": 0, "na": 0 };
  1866. if (DATA.matrix) {
  1867. DATA.matrix.forEach(row => row.forEach(cell => {
  1868. const s = cell ? (cell.tier !== undefined ? cell.tier : cell.s) : null;
  1869. if (s === null || s === undefined) stat["na"]++;
  1870. else if (stat[s] !== undefined) stat[s]++;
  1871. }));
  1872. }
  1873. document.getElementById('s3').textContent = stat['3'];
  1874. document.getElementById('s2').textContent = stat['2'];
  1875. document.getElementById('s1').textContent = stat['1'];
  1876. document.getElementById('s0').textContent = stat['0'];
  1877. document.getElementById('sna').textContent = stat['na'];
  1878. }
  1879. function renderFormsChan() {
  1880. const q = st.qi === -1 ? null : DATA.queries[st.qi];
  1881. if (!q) {
  1882. document.getElementById("navC").innerHTML = '';
  1883. return;
  1884. }
  1885. const f = curForm();
  1886. if (!f) {
  1887. document.getElementById("navC").innerHTML = '';
  1888. return;
  1889. }
  1890. const isProcedureView = st.matrixView === 'procedures';
  1891. const resultsFilter = r => {
  1892. if (isProcedureView) {
  1893. return r.procedure_html && r.procedure_html !== "";
  1894. }
  1895. return true;
  1896. };
  1897. const filteredResults = f.results.filter(resultsFilter);
  1898. const chans = ["all", ...f.platforms];
  1899. document.getElementById("navC").innerHTML = chans.map(c => {
  1900. const n = c === "all" ? filteredResults.length : filteredResults.filter(r => r.platformKey === c).length;
  1901. return `<span class="tab ${c === st.channel ? 'on' : ''}" data-c="${c}">${c === "all" ? "全部" : (PLATC[c] || c)} <small>${n}</small></span>`;
  1902. }).join("");
  1903. }
  1904. function renderNav() { renderMatrix(); renderFormsChan(); }
  1905. function renderHead() {
  1906. const f = curForm();
  1907. if (!f) return;
  1908. const q = DATA.queries[st.qi];
  1909. if (q) {
  1910. document.getElementById("lede").innerHTML = `当前选中 Query ID: <span style="font-family: monospace; font-weight: 700; background: var(--soft-amber); color: var(--amber); padding: 2px 8px; border-radius: 4px; font-size: 15px; border: 1px solid rgba(184, 121, 24, 0.2);">${esc(q.key)}</span> · 检索语句: <span style="font-weight: 600; color: var(--ink);">${esc(q.original_q)}</span>`;
  1911. } else {
  1912. document.getElementById("lede").textContent = "";
  1913. }
  1914. let it = f.results;
  1915. if (st.matrixView === 'procedures') {
  1916. it = it.filter(r => r.procedure_html && r.procedure_html !== "");
  1917. }
  1918. if (st.channel !== "all") it = it.filter(r => r.platformKey === st.channel);
  1919. const valid = it.filter(r => !r.anomaly);
  1920. const rep = valid.filter(r => !isItemDiscarded(r)).length;
  1921. const dis = valid.filter(r => isItemDiscarded(r)).length;
  1922. const anom = it.filter(r => r.anomaly).length;
  1923. const avg = (valid.reduce((s, r) => s + r.overall, 0) / (valid.length || 1)).toFixed(1);
  1924. const lab = st.channel === "all" ? "该形式结果数" : (PLATC[st.channel] || st.channel) + " 结果数";
  1925. document.getElementById("stats").innerHTML = [[it.length, lab], [rep, "建议上报"], [avg, "平均综合分 / 5"], [dis, "丢弃"], [anom, "异常"]].map(([n, l]) => `<div class="stat"><strong>${n}</strong><span>${l}</span></div>`).join("");
  1926. }
  1927. // POST /api/reeval —— 后台只对当前 query 的所有 form 文件复评(不重新搜索);
  1928. // server.py 立即返回 {status:'started', pid, log},前端只显示状态、不轮询,刷新页面看新数据。
  1929. function reevalCurrentQuery() {
  1930. if (st.qi === -1 || !DATA.queries[st.qi]) { alert('请先选一个 query 再重评'); return; }
  1931. const q = DATA.queries[st.qi].key;
  1932. if (!confirm(`重评 ${q} 的所有帖子(A/B/C 三种 form)?\n约 1-3 分钟(视帖子数),过程中页面可继续浏览。\n完成后刷新页面看新数据。`)) return;
  1933. const btn = document.getElementById('reevalBtn');
  1934. const oldText = btn.textContent;
  1935. btn.disabled = true; btn.textContent = '♻️ 提交中…';
  1936. fetch('/api/reeval', {
  1937. method: 'POST', headers: { 'Content-Type': 'application/json' },
  1938. body: JSON.stringify({ q }),
  1939. }).then(r => r.json().then(d => ({ ok: r.ok, d }))).then(({ ok, d }) => {
  1940. if (ok && d.status === 'started') {
  1941. btn.textContent = `♻️ 重评中 ${q} (PID ${d.pid}) · 完成后刷新页面`;
  1942. // 不自动恢复 —— 让按钮停留在"重评中"状态直到用户主动刷新;日志见 runs/${q}/_reeval.log
  1943. } else {
  1944. btn.disabled = false; btn.textContent = oldText;
  1945. alert('启动失败:' + (d.error || JSON.stringify(d)));
  1946. }
  1947. }).catch(e => {
  1948. btn.disabled = false; btn.textContent = oldText;
  1949. alert('请求失败:' + e);
  1950. });
  1951. }
  1952. function sortedItems() {
  1953. const f = curForm();
  1954. if (!f) return [];
  1955. let it = f.results.slice();
  1956. if (st.matrixView === 'procedures') {
  1957. it = it.filter(r => r.procedure_html && r.procedure_html !== "");
  1958. }
  1959. if (st.channel !== "all") it = it.filter(r => r.platformKey === st.channel);
  1960. const s = document.getElementById("sort").value;
  1961. const decWeight = r => (r.anomaly ? 2 : (isItemDiscarded(r) ? 1 : 0));
  1962. it.sort((a, b) => {
  1963. const wA = decWeight(a), wB = decWeight(b);
  1964. if (wA !== wB) return wA - wB;
  1965. if (s === "score") return b.overall - a.overall;
  1966. if (s === "date") return (b.date || "").localeCompare(b.date || "");
  1967. if (s === "platform") return (a.platform || "").localeCompare(b.platform || "", "zh-Hans") || b.overall - a.overall;
  1968. return 0;
  1969. });
  1970. return it;
  1971. }
  1972. function renderGrid() {
  1973. VIEW = sortedItems();
  1974. document.getElementById("grid").innerHTML = VIEW.map((it, idx) => {
  1975. const imgs = it.images.length ? it.images.slice(0, 3).map(s => `<img src="${esc(s)}" referrerpolicy="no-referrer" loading="lazy" onerror="this.src='${NOIMG}'">`).join("") : `<img src="${NOIMG}">`;
  1976. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  1977. let bars = "";
  1978. if (isNewSchema) {
  1979. const relAvg = groupAverage(it, scoreGroupsNew[0], true) || 0;
  1980. const qualAvg = getQualityAverage(it) || 0;
  1981. const newBars = [
  1982. { label: "相关性评分 (均分)", v: relAvg },
  1983. { label: "质量评分 (均分)", v: qualAvg }
  1984. ];
  1985. bars = newBars.map(b => {
  1986. const w = b.v * 10;
  1987. return `<span title="${esc(b.label)} ${b.v.toFixed(1)}"><span class="fill" style="width:${w}%; background: #2563eb;"></span></span>`;
  1988. }).join("");
  1989. } else {
  1990. const oldKeys = ["relevance", "result_quality", "credibility", "novelty_coverage", "concrete_use_case"];
  1991. bars = oldKeys.map(k => {
  1992. const val = it.scores[k] !== undefined ? parseFloat(it.scores[k]) : 0;
  1993. const w = val * 20;
  1994. return `<span title="${esc(commonLabels[k] || k)} ${val}"><span class="fill" style="width:${w}%;"></span></span>`;
  1995. }).join("");
  1996. }
  1997. const isDiscard = isItemDiscarded(it);
  1998. let discardReason = it.reason || '未提供过滤原因';
  1999. if (it.production_relevance !== null && it.production_relevance !== undefined) {
  2000. const input = document.getElementById("relThreshold");
  2001. const threshold = input ? parseFloat(input.value) : (isNewSchema ? 4.0 : 2.0);
  2002. const relVal = parseFloat(it.production_relevance);
  2003. if (!isNaN(relVal) && relVal < threshold) {
  2004. discardReason = `相关性得分 (${relVal}) 低于过滤阈值 (${threshold})`;
  2005. }
  2006. }
  2007. const discardOverlayHtml = isDiscard ? `
  2008. <div class="discard-overlay">
  2009. <div class="discard-badge">Discarded</div>
  2010. <div class="discard-reason">${esc(discardReason)}</div>
  2011. </div>
  2012. ` : '';
  2013. return `<article class="result ${isDiscard ? 'discard' : ''}">
  2014. ${discardOverlayHtml}
  2015. <div class="thumbs">${imgs}</div>
  2016. <div class="body">
  2017. <div class="meta"><span class="platform p-${esc(it.platformKey)}">${esc(it.platform)}</span><span>${esc(it.date)} · ${esc(it.engagement)}</span></div>
  2018. <h2>${esc(it.title)}</h2>
  2019. <div class="excerpt">${esc(it.text)}</div>
  2020. <div class="tags">${it.tools.slice(0, 4).map(t => `<span class="tag">${esc(t)}</span>`).join("")}</div>
  2021. <div class="scorebar">
  2022. <div class="overall">
  2023. <div>
  2024. <div class="score">${it.anomaly ? '—' : it.overall.toFixed(1)}</div>
  2025. <small>综合分</small>
  2026. </div>
  2027. <div class="decision ${it.anomaly ? '' : it.decision}">${it.anomaly ? '异常' : esc(it.decision)}</div>
  2028. </div>
  2029. <div class="mini-bars ${isNewSchema ? 'new-schema' : ''}">${bars}</div>
  2030. <div class="group-snapshot ${isNewSchema ? 'new-schema' : ''}">${groupSnapshot(it)}</div>
  2031. <div class="actions">
  2032. <button onclick="openDetail(${idx})">查看详情</button>
  2033. <a href="${esc(it.url)}" target="_blank" rel="noreferrer">原链接</a>
  2034. </div>
  2035. </div>
  2036. </div>
  2037. </article>`;
  2038. }).join("") || (st.qi === -1 ? '<p style="color:var(--muted);padding: 20px 0;text-align:center;grid-column: 1 / -1;">该组合暂无数据库扫描结果。</p>' : '<p style="color:var(--muted);grid-column: 1 / -1;">该渠道无结果</p>');
  2039. }
  2040. function switchModalTab(tabName) {
  2041. const detailTab = document.getElementById("tabDetailBtn");
  2042. const procTab = document.getElementById("tabProcedureBtn");
  2043. const detailContent = document.getElementById("modalContentDetail");
  2044. const procContent = document.getElementById("modalContentProcedure");
  2045. if (tabName === 'detail') {
  2046. detailTab.classList.add("active");
  2047. procTab.classList.remove("active");
  2048. detailContent.style.display = "grid";
  2049. procContent.style.display = "none";
  2050. } else {
  2051. detailTab.classList.remove("active");
  2052. procTab.classList.add("active");
  2053. detailContent.style.display = "none";
  2054. procContent.style.display = "block";
  2055. }
  2056. }
  2057. function openDetail(i) {
  2058. const it = VIEW[i];
  2059. detailDialog.dataset.activeIdx = i;
  2060. currentPinnedScoreEl = null;
  2061. document.getElementById("modalMeta").innerHTML = `<span class="platform p-${esc(it.platformKey)}">${esc(it.platform)}</span><span>Query ID: <b style="font-family: monospace; color: var(--amber); background: var(--soft-amber); border: 1px solid rgba(184, 121, 24, 0.2); padding: 1px 6px; border-radius: 3px; font-size: 11px; margin-right: 8px;">${esc(it.run)}</b></span><span>${esc(it.date)} · ${esc(it.engagement)} · 质量 ${esc(it.grade)} ${esc(it.qscore)}</span>`;
  2062. document.getElementById("modalTitle").textContent = it.title;
  2063. document.getElementById("modalReason").textContent = it.reason;
  2064. document.getElementById("modalText").textContent = it.text || "(无正文)";
  2065. document.getElementById("modalImages").innerHTML = it.images.length ? it.images.map(s => `<img src="${esc(s)}" referrerpolicy="no-referrer" loading="lazy" onerror="this.style.opacity=.3">`).join("") : "<p>搜索详情未返回图片。</p>";
  2066. document.getElementById("modalTags").innerHTML = [...(it.knowledge_type || []).map(t => "类型:" + (KTM[t] || t)), ...(it.found_by || []).map(q => "命中:" + q)].map(t => `<span class="tag">${esc(t)}</span>`).join("");
  2067. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  2068. const maxScore = isNewSchema ? '10' : '5';
  2069. const overallVal = it.anomaly ? '—' : it.overall.toFixed(1);
  2070. const scoreColor = isNewSchema ? '#2563eb' : 'var(--mint)';
  2071. const scoreStrong = document.getElementById("modalOverallScoreVal");
  2072. if (scoreStrong) {
  2073. scoreStrong.style.color = scoreColor;
  2074. scoreStrong.innerHTML = `${overallVal}<span style="font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 2px;">/${maxScore}</span>`;
  2075. }
  2076. if (isNewSchema) {
  2077. document.getElementById("modalScores").innerHTML = renderNewScores(it);
  2078. } else {
  2079. document.getElementById("modalScores").innerHTML = scoreGroupsOld.map(g => renderScoreGroup(it, g)).join("");
  2080. }
  2081. const tabs = document.getElementById("modalTabs");
  2082. const iframe = document.getElementById("procedureIframe");
  2083. if (it.procedure_html) {
  2084. tabs.style.display = "flex";
  2085. iframe.src = "/" + it.procedure_html;
  2086. } else {
  2087. tabs.style.display = "none";
  2088. iframe.src = "about:blank";
  2089. }
  2090. switchModalTab('detail');
  2091. applyFullscreenPref(); // 沿用上次的全屏/窗口偏好
  2092. detailDialog.showModal();
  2093. }
  2094. // 全屏开关: 切 .fullscreen class + 记住偏好 (localStorage), 下次开 case 详情沿用
  2095. function applyFullscreenPref() {
  2096. const on = localStorage.getItem("caseDetailFullscreen") === "1";
  2097. detailDialog.classList.toggle("fullscreen", on);
  2098. const btn = document.getElementById("fullscreenBtn");
  2099. if (btn) btn.textContent = on ? "退出全屏" : "全屏";
  2100. }
  2101. function toggleFullscreen() {
  2102. const on = !detailDialog.classList.contains("fullscreen");
  2103. localStorage.setItem("caseDetailFullscreen", on ? "1" : "0");
  2104. applyFullscreenPref();
  2105. }
  2106. let currentPinnedScoreEl = null;
  2107. function pinScoreReason(el, label, k) {
  2108. const activeIdx = detailDialog.dataset.activeIdx;
  2109. const it = VIEW[activeIdx];
  2110. if (!it || !it.score_reasons) return;
  2111. const reason = it.score_reasons[k] || '';
  2112. let tip = document.getElementById('scoreTip');
  2113. if (!tip) {
  2114. tip = document.createElement('div');
  2115. tip.id = 'scoreTip';
  2116. tip.style.cssText = 'position: fixed; background: #ffffff; border: 1px solid #ded8ce; border-radius: 8px; box-shadow: 0 10px 25px rgba(41, 35, 28, 0.15); padding: 12px 14px; max-width: 320px; z-index: 99999; font-size: 13px; line-height: 1.5; color: #4b5563; word-break: break-all; border-left: 4px solid var(--amber); transition: opacity 0.15s ease;';
  2117. detailDialog.appendChild(tip);
  2118. }
  2119. if (currentPinnedScoreEl === el && tip.style.display === 'block') {
  2120. tip.style.display = 'none';
  2121. el.style.color = '';
  2122. currentPinnedScoreEl = null;
  2123. } else {
  2124. if (currentPinnedScoreEl) {
  2125. currentPinnedScoreEl.style.color = '';
  2126. }
  2127. tip.innerHTML = `<strong style="display:block;margin-bottom:6px;color:#b87918;">【指标判定 - ${label}】</strong>${esc(reason)}`;
  2128. tip.style.display = 'block';
  2129. el.style.color = 'var(--amber)';
  2130. currentPinnedScoreEl = el;
  2131. const elRect = el.getBoundingClientRect();
  2132. const tipWidth = tip.offsetWidth || 280;
  2133. const tipHeight = tip.offsetHeight || 80;
  2134. let left = elRect.left + elRect.width / 2 - tipWidth / 2;
  2135. let top = elRect.bottom + 8;
  2136. if (left < 10) left = 10;
  2137. if (left + tipWidth > window.innerWidth - 10) {
  2138. left = window.innerWidth - tipWidth - 10;
  2139. }
  2140. if (top + tipHeight > window.innerHeight - 10) {
  2141. top = elRect.top - tipHeight - 8;
  2142. }
  2143. tip.style.left = left + 'px';
  2144. tip.style.top = top + 'px';
  2145. }
  2146. }
  2147. // Automatically close tooltip when modal is closed
  2148. document.getElementById('detailDialog').addEventListener('close', () => {
  2149. const tip = document.getElementById('scoreTip');
  2150. if (tip) {
  2151. tip.style.display = 'none';
  2152. }
  2153. if (currentPinnedScoreEl) {
  2154. currentPinnedScoreEl.style.color = '';
  2155. currentPinnedScoreEl = null;
  2156. }
  2157. });
  2158. // Close tooltip when dialog scrolls
  2159. document.getElementById('detailDialog').addEventListener('scroll', () => {
  2160. const tip = document.getElementById('scoreTip');
  2161. if (tip) {
  2162. tip.style.display = 'none';
  2163. }
  2164. if (currentPinnedScoreEl) {
  2165. currentPinnedScoreEl.style.color = '';
  2166. currentPinnedScoreEl = null;
  2167. }
  2168. }, true);
  2169. const KTM = { procedure: "工序", step: "步骤", tool: "工具" };
  2170. function rerender(mxClick) {
  2171. updateThresholdLimits();
  2172. if (st.qi === -1) {
  2173. document.getElementById("stats").innerHTML = "";
  2174. document.getElementById("lede").textContent = "未找到对应的数据库 Query,请尝试切换筛选组合。";
  2175. renderFormsChan();
  2176. renderGrid();
  2177. if (!mxClick) {
  2178. document.querySelectorAll('td.cell.sel').forEach(x => x.classList.remove('sel'));
  2179. }
  2180. return;
  2181. }
  2182. if (st.qi >= DATA.queries.length) st.qi = 0;
  2183. if (st.fi >= DATA.queries[st.qi].forms.length) st.fi = 0;
  2184. if (!mxClick) {
  2185. renderMatrix();
  2186. }
  2187. renderFormsChan();
  2188. renderHead();
  2189. renderGrid();
  2190. }
  2191. function setMatrixView(mode) {
  2192. st.matrixView = mode;
  2193. document.querySelectorAll('.g-mxview .btn').forEach(btn => {
  2194. btn.classList.remove('on');
  2195. });
  2196. if (mode === 'full') document.getElementById('btnMxFull').classList.add('on');
  2197. else if (mode === 'hits') document.getElementById('btnMxHits').classList.add('on');
  2198. else if (mode === 'procedures') document.getElementById('btnMxProcedures').classList.add('on');
  2199. if (st.selectedAction && st.selectedType) {
  2200. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  2201. }
  2202. renderMatrix();
  2203. if (openCell) {
  2204. const ai = +openCell.dataset.ai, ti = +openCell.dataset.ti;
  2205. const newCell = document.querySelector(`td.cell[data-ai="${ai}"][data-ti="${ti}"]`);
  2206. if (newCell) {
  2207. showPop(newCell, parseInt(pop.style.left), parseInt(pop.style.top));
  2208. }
  2209. }
  2210. rerender(true);
  2211. }
  2212. function loadData(keep) {
  2213. fetch("/api/data").then(r => r.json()).then(d => {
  2214. DATA = d;
  2215. if (!keep) {
  2216. st = { form: 'A', lens: '工序', tools: [], tier: 0, qi: 0, fi: 0, channel: "all", matrixView: 'full', selectedAction: null, selectedType: null };
  2217. if (DATA.queries.length > 0) {
  2218. const firstQ = DATA.queries[0];
  2219. if (firstQ.dims) {
  2220. st.selectedAction = firstQ.dims.action;
  2221. st.selectedType = firstQ.dims.type;
  2222. st.lens = detectLens(firstQ);
  2223. }
  2224. }
  2225. }
  2226. // Dynamically populate tool type buttons
  2227. document.getElementById('toolBtns').innerHTML = TOOL_TYPES.map(t => `<button class="btn" data-k="tool" data-v="${t}">${t}</button>`).join('');
  2228. // Synchronize buttons states to st
  2229. document.querySelectorAll('.ctl .btn').forEach(btn => {
  2230. const k = btn.dataset.k, v = btn.dataset.v;
  2231. if (MULTI[k]) {
  2232. const ak = MULTI[k];
  2233. btn.classList.toggle('on', v === '' ? st[ak].length === 0 : st[ak].includes(v));
  2234. } else {
  2235. btn.classList.toggle('on', st[k] === v);
  2236. }
  2237. });
  2238. document.querySelectorAll('.g-mxview .btn').forEach(btn => {
  2239. btn.classList.remove('on');
  2240. });
  2241. const mv = st.matrixView || 'full';
  2242. if (mv === 'full') document.getElementById('btnMxFull').classList.add('on');
  2243. else if (mv === 'hits') document.getElementById('btnMxHits').classList.add('on');
  2244. else if (mv === 'procedures') document.getElementById('btnMxProcedures').classList.add('on');
  2245. computeStats();
  2246. if (st.selectedAction && st.selectedType) {
  2247. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  2248. }
  2249. rerender();
  2250. });
  2251. }
  2252. // Matrix click listener (links matrix select to database select + opens pop-up)
  2253. document.getElementById("comboMx").addEventListener("click", e => {
  2254. const td = e.target.closest("td.cell");
  2255. if (!td) return;
  2256. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai], t = TYPES[ti];
  2257. st.selectedAction = a.name;
  2258. st.selectedType = t.name;
  2259. showPop(td, e.clientX, e.clientY);
  2260. // Select the query
  2261. selectQueryByActiveCellAndControls(a.name, t.name);
  2262. document.querySelectorAll('td.cell.sel').forEach(x => x.classList.remove('sel'));
  2263. td.classList.add('sel');
  2264. applyCrosshair();
  2265. rerender(true); // mxClick = true, updates results without redrawing full table
  2266. });
  2267. // Header controls event delegation
  2268. const MULTI = { tool: 'tools' };
  2269. document.querySelector('.ctl').addEventListener('click', e => {
  2270. const b = e.target.closest('.btn');
  2271. if (!b) return;
  2272. const k = b.dataset.k, v = b.dataset.v, grp = document.querySelectorAll(`.ctl .btn[data-k="${k}"]`);
  2273. if (MULTI[k]) {
  2274. const ak = MULTI[k];
  2275. if (v === '') {
  2276. st[ak] = [];
  2277. } else {
  2278. if (st[ak].includes(v)) {
  2279. st[ak] = [];
  2280. } else {
  2281. st[ak] = [v];
  2282. }
  2283. }
  2284. grp.forEach(x => {
  2285. const xv = x.dataset.v;
  2286. x.classList.toggle('on', xv === '' ? st[ak].length === 0 : st[ak].includes(xv));
  2287. });
  2288. } else {
  2289. grp.forEach(x => x.classList.remove('on'));
  2290. b.classList.add('on');
  2291. st[k] = v;
  2292. }
  2293. if (st.selectedAction && st.selectedType) {
  2294. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  2295. }
  2296. renderMatrix();
  2297. if (openCell) {
  2298. const ai = +openCell.dataset.ai, ti = +openCell.dataset.ti;
  2299. const newCell = document.querySelector(`td.cell[data-ai="${ai}"][data-ti="${ti}"]`);
  2300. if (newCell) {
  2301. showPop(newCell, parseInt(pop.style.left), parseInt(pop.style.top));
  2302. }
  2303. }
  2304. rerender(true);
  2305. });
  2306. // Close popups on clicking outside
  2307. document.addEventListener('click', e => {
  2308. if (!e.target.closest('td.cell') && !e.target.closest('.pop') && !e.target.closest('.btn')) {
  2309. pop.style.display = 'none';
  2310. openCell = null;
  2311. }
  2312. const tip = document.getElementById('scoreTip');
  2313. if (tip && !e.target.closest('.info-icon') && !e.target.closest('#scoreTip')) {
  2314. tip.style.display = 'none';
  2315. if (currentPinnedScoreEl) {
  2316. currentPinnedScoreEl.style.color = '';
  2317. currentPinnedScoreEl = null;
  2318. }
  2319. }
  2320. });
  2321. document.getElementById("navC").addEventListener("click", e => { const t = e.target.closest(".tab"); if (!t) return; st.channel = t.dataset.c; renderNav(); renderHead(); renderGrid(); });
  2322. document.getElementById("sort").addEventListener("change", renderGrid);
  2323. loadData();
  2324. </script>
  2325. </body>
  2326. </html>