index.html 95 KB

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