index.html 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543
  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. #reevalBtn {
  1143. background: #faf7f1;
  1144. color: var(--amber);
  1145. border-color: rgba(184, 121, 24, 0.3);
  1146. height: 38px;
  1147. padding: 0 16px;
  1148. font-size: 13px;
  1149. font-weight: 600;
  1150. border-radius: 8px;
  1151. box-shadow: var(--shadow);
  1152. }
  1153. #reevalBtn:hover {
  1154. background: var(--soft-amber);
  1155. color: var(--amber);
  1156. border-color: var(--amber);
  1157. }
  1158. #editSpecBtn {
  1159. background: #f0f7f6;
  1160. color: var(--cyan);
  1161. border-color: rgba(42, 111, 143, 0.3);
  1162. height: 38px;
  1163. padding: 0 16px;
  1164. font-size: 13px;
  1165. font-weight: 600;
  1166. border-radius: 8px;
  1167. box-shadow: var(--shadow);
  1168. }
  1169. #editSpecBtn:hover {
  1170. background: var(--soft-cyan);
  1171. color: var(--cyan);
  1172. border-color: var(--cyan);
  1173. }
  1174. </style>
  1175. </head>
  1176. <body>
  1177. <header>
  1178. <div class="wrap">
  1179. <div class="eyebrow">Content Search · 固定 query · 同义扩展 + 合并去重 · query → 渠道</div>
  1180. <h1>固定 Query 搜索评估 · 案例总览</h1>
  1181. <p class="lede" id="lede" style="margin:0">加载中…</p>
  1182. <div class="stats" id="stats"></div>
  1183. </div>
  1184. </header>
  1185. <main>
  1186. <div class="wrap">
  1187. <div class="nav">
  1188. <!-- fixed_query_eval:隐藏原正交矩阵导航,改用固定 query 选择条 #navQ。
  1189. 矩阵 DOM 保留(display:none)以免 loadData 里的 getElementById 取空崩脚本。 -->
  1190. <style>#mxRow, .mx-header, .mxwrap, #pop { display: none !important; }</style>
  1191. <div class="navrow" id="navQRow" style="margin-bottom:4px;">
  1192. <span class="navlab">Query</span>
  1193. <div id="navQ" style="display:flex;gap:8px;flex-wrap:wrap;flex:1"></div>
  1194. <button id="refresh2" onclick="loadData(true)">↻ 刷新 runs</button>
  1195. </div>
  1196. <div class="navrow" id="mxRow" style="margin-bottom:4px;">
  1197. <span class="navlab">组合矩阵</span>
  1198. <span style="color:var(--muted);font-size:12px;flex:1">行=类型 列=动作 格子色=评分,角标=帖子数/工序数。点击选组合且弹出详情。</span>
  1199. <span class="g-mxview" style="display:inline-flex;gap:4px;margin-right:12px;align-items:center;">
  1200. <button class="btn on" id="btnMxFull" onclick="setMatrixView('full')">完整矩阵</button>
  1201. <button class="btn" id="btnMxHits" onclick="setMatrixView('hits')">只看帖子命中</button>
  1202. <button class="btn" id="btnMxProcedures" onclick="setMatrixView('procedures')">只看工序</button>
  1203. </span>
  1204. <button id="refresh" onclick="loadData(true)">↻ 刷新 runs</button>
  1205. </div>
  1206. <div class="mx-header"
  1207. style="background:#fff; border: 1px solid var(--line); border-radius: 8px 8px 0 0; padding:12px 16px 8px; border-bottom: none;">
  1208. <h4
  1209. style="margin:0 0 4px; font-size:13px; color:#1f2937; display:flex; justify-content:space-between; align-items:center; font-weight:700;">
  1210. <span>动作 × 类型 · 组合矩阵 <span style="font-weight:400;font-size:11px;color:#9aa0ad">基于 <b
  1211. id="gm">gemini-3.1-flash-lite</b></span></span>
  1212. <span class="legend" style="display:flex;gap:9px;align-items:center;color:#6b7280;font-size:11px;">
  1213. <span><span class="sw"
  1214. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#15803d;vertical-align:middle;margin-right:3px;"></span>高
  1215. · <b id="s3" style="color:#15803d;">0</b></span>
  1216. <span><span class="sw"
  1217. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#4ade80;vertical-align:middle;margin-right:3px;"></span>中
  1218. · <b id="s2" style="color:#4ade80;">0</b></span>
  1219. <span><span class="sw"
  1220. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#bbf7d0;vertical-align:middle;margin-right:3px;"></span>低
  1221. · <b id="s1" style="color:#10b981;">0</b></span>
  1222. <span><span class="sw"
  1223. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#e5e7eb;vertical-align:middle;margin-right:3px;"></span>无效
  1224. · <b id="s0" style="color:#9ca3af;">0</b></span>
  1225. <span><span class="sw"
  1226. style="display:inline-block;width:10px;height:10px;border-radius:2px;background:#fcd34d;vertical-align:middle;margin-right:3px;"></span>未判
  1227. · <b id="sna" style="color:#b87918;">0</b></span>
  1228. </span>
  1229. </h4>
  1230. <div class="sub" style="font-size:11px;color:#6b7280;margin-bottom:8px;">
  1231. 共 1350 格 · 形式①原词不替换 · ②句子套模板 · ③同义池替换。
  1232. </div>
  1233. <div class="ctl"
  1234. style="display:flex;gap:6px;flex-wrap:wrap;align-items:center;font-size:11px;border-top:1px solid #f3f4f6;padding-top:8px;">
  1235. <span class="lab" style="color:#9aa0ad;font-weight:600;">query生成方式</span>
  1236. <span class="g-form">
  1237. <button class="btn on" data-k="form" data-v="A">①原词</button>
  1238. <button class="btn" data-k="form" data-v="B">②句子</button>
  1239. <button class="btn" data-k="form" data-v="C">③同义</button>
  1240. </span>
  1241. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">知识类型</span>
  1242. <span class="g-lens">
  1243. <button class="btn on" data-k="lens" data-v="工序">工序</button>
  1244. <button class="btn" data-k="lens" data-v="工具">工具</button>
  1245. <button class="btn" data-k="lens" data-v="能力">能力</button>
  1246. </span>
  1247. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">约束·工具类型</span>
  1248. <span class="g-tool">
  1249. <button class="btn on" data-k="tool" data-v="">无</button>
  1250. <span id="toolBtns"></span>
  1251. </span>
  1252. <span class="lab" style="color:#9aa0ad;font-weight:600;margin-left:8px;">搜索优先级</span>
  1253. <span class="g-tier">
  1254. <button class="btn on" data-k="tier" data-v="0">全部</button>
  1255. <button class="btn" data-k="tier" data-v="2">≥中</button>
  1256. <button class="btn" data-k="tier" data-v="3">仅高</button>
  1257. </span>
  1258. </div>
  1259. </div>
  1260. <div class="mxwrap"
  1261. style="max-height:55vh; overflow:auto; border:1px solid var(--line); border-radius: 0 0 8px 8px; margin-bottom:12px; background:#fff; position:relative;">
  1262. <table id="comboMx"></table>
  1263. </div>
  1264. <div class="pop" id="pop"></div>
  1265. <div class="navrow"><span class="navlab">渠道</span>
  1266. <div id="navC" style="display:flex;gap:8px;flex-wrap:wrap"></div>
  1267. </div>
  1268. </div>
  1269. <div class="toolbar">
  1270. <div class="filters"></div>
  1271. <!-- 动态相关性过滤阈值 -->
  1272. <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);">
  1273. <span style="color: var(--muted); font-size: 12px; font-weight: 700;">相关性过滤阈值:</span>
  1274. <input type="number" id="relThreshold" min="0" max="10" step="0.5" value="4.0"
  1275. oninput="renderGrid(); renderHead();"
  1276. 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;"
  1277. onfocus="this.style.borderColor='#2563eb'" onblur="this.style.borderColor='#d1d5db'">
  1278. </div>
  1279. <button id="reevalBtn" onclick="reevalCurrentQuery()" title="只对当前 query 的所有 form/帖子复评(不重新搜索)">♻️ 重评当前 query</button>
  1280. <button id="editSpecBtn" onclick="openSpecEditor()" title="查看或修改 spec/ 提示词规范文件">📝 编辑 Spec 提示词</button>
  1281. <select id="sort">
  1282. <option value="score">按综合分排序</option>
  1283. <option value="date">按发布时间排序</option>
  1284. <option value="platform">按平台排序</option>
  1285. </select>
  1286. </div>
  1287. <div class="grid" id="grid"></div>
  1288. </div>
  1289. </main>
  1290. <!-- fixed_query_eval:图片放大灯箱(用 dialog 才能叠在详情 modal 之上)-->
  1291. <style>
  1292. #imgLightbox { border:none; background:transparent; padding:0; width:100vw; height:100vh; max-width:100vw; max-height:100vh; overflow:hidden; }
  1293. #imgLightbox::backdrop { background: rgba(0,0,0,.88); }
  1294. #imgLightbox .lb-stage { width:100%; height:100%; display:flex; align-items:center; justify-content:center; position:relative; }
  1295. #imgLightbox .lb-stage img { max-width:86vw; max-height:90vh; object-fit:contain; border-radius:8px; box-shadow:0 10px 40px rgba(0,0,0,.5); cursor:pointer; display:block; }
  1296. #imgLightbox .lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:50px; height:68px; border:none; border-radius:10px; background:rgba(255,255,255,.16); color:#fff; font-size:36px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; user-select:none; }
  1297. #imgLightbox .lb-nav:hover { background:rgba(255,255,255,.32); }
  1298. #imgLightbox .lb-prev { left:26px; } #imgLightbox .lb-next { right:26px; }
  1299. #imgLightbox .lb-nav.hidden { display:none; }
  1300. #imgLightbox .lb-counter { position:absolute; bottom:22px; left:50%; transform:translateX(-50%); color:#fff; font-size:13px; font-weight:600; background:rgba(0,0,0,.55); padding:5px 14px; border-radius:20px; }
  1301. #imgLightbox .lb-close { position:absolute; top:22px; right:26px; width:38px; height:38px; border:none; border-radius:50%; background:rgba(255,255,255,.16); color:#fff; font-size:18px; cursor:pointer; }
  1302. #imgLightbox .lb-close:hover { background:rgba(255,255,255,.32); }
  1303. /* fixed_query_eval:工具解构表格美化 + 单元格限高展开 */
  1304. .fqe-ttwrap { overflow-x:auto; border:1px solid #e6ded2; border-radius:10px; box-shadow:0 2px 12px rgba(0,0,0,.05); }
  1305. .fqe-tt { border-collapse:separate; border-spacing:0; width:100%; min-width:1180px; background:#fff; font-size:12.5px; }
  1306. .fqe-tt thead th {
  1307. position:sticky; top:0; z-index:2; text-align:left; white-space:nowrap;
  1308. background:linear-gradient(180deg,#2aa79b,#1c8076); color:#fff; font-weight:700;
  1309. padding:10px 12px; letter-spacing:.3px; border-right:1px solid rgba(255,255,255,.18);
  1310. }
  1311. .fqe-tt thead th:last-child { border-right:none; }
  1312. .fqe-tt tbody td { padding:9px 12px; vertical-align:top; line-height:1.6;
  1313. border-bottom:1px solid #f0eae0; border-right:1px solid #f5f0e8; color:#3a3a3a; }
  1314. .fqe-tt tbody td:last-child { border-right:none; }
  1315. /* 两层表头:第二行子表头下移吸顶;group/sub 表头样式 */
  1316. .fqe-tt2 thead tr:first-child th { top:0; }
  1317. .fqe-tt2 thead tr:nth-child(2) th { top:38px; }
  1318. .fqe-tt .th-group { text-align:center; }
  1319. .fqe-tt .th-sub { background:linear-gradient(180deg,#36bdb0,#23897f); font-weight:600; }
  1320. .fqe-tt td.col-case { background:#fafdfc; }
  1321. /* 斑马纹按「工具」分组(rowspan 安全),不用 nth-child */
  1322. .fqe-tt tbody tr.tr-b td { background:#fbfaf6; }
  1323. .fqe-tt tbody tr.tr-b td.col-case { background:#f6fbfa; }
  1324. .fqe-tt tbody td.col-tool { font-weight:700; color:#176d64; white-space:nowrap;
  1325. border-left:3px solid #2aa79b; background:#f3faf8; }
  1326. .fqe-tt tbody tr:hover td.col-tool { background:#e3f4f0; }
  1327. .fqe-tt ul { margin:0; padding-left:17px; }
  1328. .fqe-tt ul li { margin:3px 0; }
  1329. .fqe-tt ul li::marker { color:#2aa79b; }
  1330. .fqe-tt .layer-badge { display:inline-block; font-weight:700; font-size:11px; padding:2px 10px; border-radius:20px; white-space:nowrap; }
  1331. .fqe-tt .layer-badge.make { color:#0e7490; background:#d6f0ee; }
  1332. .fqe-tt .layer-badge.create { color:#b8731a; background:#fef0db; }
  1333. .fqe-tt .dash { color:#c9c2b6; }
  1334. /* 单元格限高 + 渐变蒙版 + 点击展开 */
  1335. .fqe-tt .tcell { position:relative; max-height:7.8em; overflow:hidden; transition:max-height .15s; }
  1336. .fqe-tt .tcell.clamped { cursor:zoom-in; }
  1337. .fqe-tt .tcell.clamped::after { content:'▾ 展开'; position:absolute; left:0; right:0; bottom:0;
  1338. height:2.6em; display:flex; align-items:flex-end; justify-content:center; padding-bottom:2px;
  1339. font-size:11px; font-weight:700; color:#176d64;
  1340. background:linear-gradient(rgba(255,255,255,0), #fff 72%); pointer-events:none; }
  1341. .fqe-tt tbody tr.tr-b .tcell.clamped::after { background:linear-gradient(rgba(251,250,246,0), #fbfaf6 72%); }
  1342. .fqe-tt td.col-case .tcell.clamped::after { background:linear-gradient(rgba(250,253,252,0), #fafdfc 72%); }
  1343. .fqe-tt tbody tr.tr-b td.col-case .tcell.clamped::after { background:linear-gradient(rgba(246,251,250,0), #f6fbfa 72%); }
  1344. .fqe-tt .tcell.open { max-height:none; cursor:zoom-out; }
  1345. .fqe-tt .tcell.open::after { content:''; height:0; }
  1346. </style>
  1347. <dialog id="imgLightbox">
  1348. <div class="lb-stage" onclick="if(event.target===this) imgLightbox.close()">
  1349. <button class="lb-nav lb-prev" onclick="lightboxNav(-1)" aria-label="上一张">‹</button>
  1350. <img id="imgLightboxImg" referrerpolicy="no-referrer" alt="" onclick="lightboxNav(1)" title="点击看下一张">
  1351. <button class="lb-nav lb-next" onclick="lightboxNav(1)" aria-label="下一张">›</button>
  1352. <div class="lb-counter" id="lbCounter"></div>
  1353. <button class="lb-close" onclick="imgLightbox.close()" aria-label="关闭">✕</button>
  1354. </div>
  1355. </dialog>
  1356. <!-- fixed_query_eval:批量工具解构 · 选帖弹层 -->
  1357. <dialog id="toolBatchDialog" style="width: min(720px, 92vw); border:1px solid var(--line); border-radius:12px; padding:0;">
  1358. <div style="padding:16px 20px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center;">
  1359. <div>
  1360. <h3 style="margin:0; font-size:17px;">🔧 工具解构 · 选择帖子</h3>
  1361. <div id="toolBatchSub" style="color:var(--muted); font-size:13px; margin-top:2px;"></div>
  1362. </div>
  1363. <button onclick="toolBatchDialog.close()">关闭</button>
  1364. </div>
  1365. <div style="padding:10px 20px; border-bottom:1px solid var(--line); display:flex; gap:14px; align-items:center;">
  1366. <label style="display:flex; gap:6px; align-items:center; cursor:pointer; font-size:13px;">
  1367. <input type="checkbox" id="toolBatchAll" onchange="toolBatchToggleAll(this.checked)"> 全选
  1368. </label>
  1369. <span id="toolBatchCount" style="color:var(--muted); font-size:12px;"></span>
  1370. <span style="flex:1"></span>
  1371. <span style="color:var(--muted); font-size:12px;">模型:gemini-3.1-flash-lite</span>
  1372. </div>
  1373. <div id="toolBatchList" style="max-height:50vh; overflow-y:auto; padding:4px 20px;"></div>
  1374. <div style="padding:14px 20px; border-top:1px solid var(--line); display:flex; justify-content:flex-end; gap:10px;">
  1375. <button onclick="toolBatchDialog.close()">取消</button>
  1376. <button id="toolBatchConfirm" onclick="confirmToolExtract()" style="background:var(--mint); color:#fff; border-color:var(--mint); padding:8px 20px; font-weight:bold; border-radius:8px; cursor:pointer;">确认解构</button>
  1377. </div>
  1378. </dialog>
  1379. <dialog id="detailDialog">
  1380. <div class="modal-head">
  1381. <div>
  1382. <div id="modalMeta" class="meta"></div>
  1383. <h3 id="modalTitle"></h3>
  1384. </div>
  1385. <button onclick="detailDialog.close()">关闭</button>
  1386. </div>
  1387. <div class="modal-tabs" id="modalTabs" style="display: none;">
  1388. <button class="modal-tab active" onclick="switchModalTab('detail')" id="tabDetailBtn">帖子详情</button>
  1389. <button class="modal-tab" onclick="switchModalTab('procedure')" id="tabProcedureBtn">对应工序</button>
  1390. <button class="modal-tab" onclick="switchModalTab('tools')" id="tabToolsBtn">工具解构</button>
  1391. </div>
  1392. <div class="modal-content" id="modalContentDetail">
  1393. <section>
  1394. <div class="rubric-note" id="modalReason"></div>
  1395. <div class="section-title">抓取文本节选</div>
  1396. <div class="raw" id="modalText"></div>
  1397. <div class="section-title">图片预览</div>
  1398. <div class="images" id="modalImages"></div>
  1399. </section>
  1400. <aside>
  1401. <div class="section-title" style="display: flex; justify-content: space-between; align-items: center;">
  1402. <span>评分详情</span>
  1403. <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);">
  1404. 综合评分 <strong style="font-size: 19px; color: #2563eb; font-weight: 900; line-height: 1;" id="modalOverallScoreVal">—</strong>
  1405. </span>
  1406. </div>
  1407. <div class="scores" id="modalScores"></div>
  1408. <div class="section-title">类型 / 命中 query</div>
  1409. <div class="tags" id="modalTags"></div>
  1410. </aside>
  1411. </div>
  1412. <!-- fixed_query_eval:工具解构 tab 内容(JS 填充)-->
  1413. <div id="modalContentTools" style="display: none; min-height: 400px; max-height: calc(100vh - 180px); overflow-y: auto; padding: 16px; box-sizing: border-box;"></div>
  1414. <div id="modalContentProcedure" style="display: none; min-height: 500px; height: calc(100vh - 180px); max-height: 700px; padding: 16px; box-sizing: border-box; flex-direction: column;">
  1415. <!-- Top Action Bar (inside tab) -->
  1416. <div id="procActionBar" style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); flex-shrink: 0;">
  1417. <div style="font-size: 14px; font-weight: bold; color: var(--ink);" id="procStatusText">工序状态: 检测中...</div>
  1418. <div style="display: flex; gap: 8px;" id="procActionBtns">
  1419. <!-- Dynamically populated buttons (Regenerate, View Logs, etc) -->
  1420. </div>
  1421. </div>
  1422. <!-- Main view container -->
  1423. <div style="flex: 1; min-height: 0; position: relative; display: flex; flex-direction: column;">
  1424. <!-- Configuration / Setup panel (when not generated) -->
  1425. <div id="procSetupPanel" style="display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; padding: 40px 20px;">
  1426. <div style="font-size: 36px; margin-bottom: 16px;">✨</div>
  1427. <h4 style="margin: 0 0 10px; font-size: 18px;">提取本帖工序</h4>
  1428. <p style="color: var(--muted); font-size: 14px; max-width: 500px; margin: 0 0 24px;">该帖子目前尚未生成对应的结构化工序。请在下方选择提取引擎和模型,点击开始提取。</p>
  1429. <div style="display: flex; gap: 16px; margin-bottom: 24px; text-align: left; background: #fff; border: 1px solid var(--line); padding: 16px; border-radius: 8px; box-shadow: var(--shadow);">
  1430. <div>
  1431. <label style="display: block; font-size: 12px; font-weight: bold; margin-bottom: 6px; color: var(--muted);">提取引擎 (Engine)</label>
  1432. <select id="procEngineSelect" style="min-width: 180px; padding: 6px 10px;" onchange="onProcEngineChange()">
  1433. <option value="cyber_runner">Cyber Runner (自研/OpenRouter)</option>
  1434. <option value="claude_sdk">Claude SDK (OAuth)</option>
  1435. </select>
  1436. </div>
  1437. <div>
  1438. <label style="display: block; font-size: 12px; font-weight: bold; margin-bottom: 6px; color: var(--muted);">AI 模型 (Model)</label>
  1439. <select id="procModelSelect" style="min-width: 240px; padding: 6px 10px;">
  1440. <!-- Dynamically populated options -->
  1441. </select>
  1442. </div>
  1443. </div>
  1444. <button id="startProcBtn" onclick="startProcedureExtraction()" style="background: var(--mint); color: #fff; border-color: var(--mint); padding: 10px 24px; font-size: 15px; font-weight: bold; border-radius: 8px; cursor: pointer; transition: all 0.2s;">开始提取工序</button>
  1445. </div>
  1446. <!-- Live Log Terminal View -->
  1447. <div id="procConsolePanel" style="display: none; flex-direction: column; height: 100%; min-height: 0; background: #1e1b18; border: 1px solid #3d352e; border-radius: 8px; overflow: hidden; box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);">
  1448. <!-- Console header -->
  1449. <div style="background: #2b2520; padding: 6px 12px; border-bottom: 1px solid #3d352e; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; font-family: monospace; font-size: 12px; color: #a3968d;">
  1450. <span>TERMINAL CONSOLE</span>
  1451. <span id="procConsoleStatus">idle</span>
  1452. </div>
  1453. <!-- Console log output -->
  1454. <pre id="procConsoleOutput" style="flex: 1; margin: 0; padding: 12px; overflow: auto; font-family: ui-monospace, Menlo, Monaco, Consolas, monospace; font-size: 13px; line-height: 1.45; color: #cbbba9; background: #1e1b18; white-space: pre-wrap; word-break: break-all;"></pre>
  1455. </div>
  1456. <!-- Iframe Panel for completed HTML -->
  1457. <iframe id="procedureIframe" style="display: none; width: 100%; height: 100%; border: 1px solid var(--line); border-radius: 8px; background: #fff;" referrerpolicy="no-referrer"></iframe>
  1458. </div>
  1459. </div>
  1460. </dialog>
  1461. <!-- Spec Editor Dialog -->
  1462. <dialog id="specEditorDialog" style="width: 850px; max-width: 95%; border: 1px solid var(--line); border-radius: 12px; padding: 0; box-shadow: var(--shadow); background: var(--panel);">
  1463. <div style="display: flex; justify-content: space-between; align-items: center; background: #faf7f1; border-bottom: 1px solid var(--line); padding: 16px 20px;">
  1464. <h3 style="margin: 0; font-size: 18px; color: var(--ink); font-weight: 800;">📝 编辑 Spec 提示词规范</h3>
  1465. <button onclick="document.getElementById('specEditorDialog').close()" style="background: none; border: 1px solid var(--line); padding: 5px 14px; border-radius: 8px; cursor: pointer; color: var(--muted); font-weight: 600; font-size: 12px;">关闭</button>
  1466. </div>
  1467. <div style="padding: 20px;">
  1468. <div style="margin-bottom: 16px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;">
  1469. <span style="font-size: 13.5px; font-weight: 700; color: var(--ink);">选择提示词文件:</span>
  1470. <select id="specFileSelect" onchange="loadSpecFileContent()" style="padding: 6px 12px; border-radius: 8px; border: 1px solid #d1d5db; outline: none; min-width: 320px; font-family: monospace; font-size: 13px; font-weight: 600;">
  1471. <!-- Spec files options will be populated -->
  1472. </select>
  1473. <span id="specLoadStatus" style="font-size: 13px; font-weight: 600;"></span>
  1474. </div>
  1475. <div style="position: relative; margin-bottom: 20px;">
  1476. <textarea id="specContentTextarea" style="width: 100%; height: 500px; font-family: ui-monospace, Menlo, Monaco, Consolas, 'Courier New', monospace; font-size: 13.5px; line-height: 1.55; padding: 14px; border: 1px solid #d1d5db; border-radius: 8px; box-sizing: border-box; outline: none; background: #fafaf9; color: #1f2937; resize: vertical; border-left: 4px solid var(--cyan); box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);"></textarea>
  1477. </div>
  1478. <div style="display: flex; justify-content: flex-end; gap: 12px; align-items: center; border-top: 1px solid var(--line); padding-top: 16px;">
  1479. <span id="specSaveStatus" style="font-size: 13.5px; font-weight: 700; margin-right: auto;"></span>
  1480. <button onclick="document.getElementById('specEditorDialog').close()" class="btn" style="background: #f3f4f6; height: 38px; padding: 0 18px; border-radius: 8px; font-weight: 600;">取消</button>
  1481. <button onclick="saveSpecFileContent()" class="btn" style="background: var(--mint); color: #fff; border-color: var(--mint); font-weight: bold; height: 38px; padding: 0 20px; border-radius: 8px; box-shadow: var(--shadow);">💾 保存修改</button>
  1482. </div>
  1483. </div>
  1484. </dialog>
  1485. <script>
  1486. let DATA = { queries: [], actions: [], types: [], matrix: [] }, st = { form: 'A', lens: '工序', tools: [], tier: 0, qi: 0, fi: 0, channel: "all", matrixView: 'full' }, VIEW = [];
  1487. let currentProcTask = null;
  1488. let procPollInterval = null;
  1489. let isLogViewActive = false;
  1490. let reevalPollIntervals = {};
  1491. function startReevalPolling(q) {
  1492. if (reevalPollIntervals[q]) return;
  1493. const btn = document.getElementById('reevalBtn');
  1494. const poll = () => {
  1495. fetch(`/api/reeval_status?q=${q}`)
  1496. .then(r => r.json())
  1497. .then(d => {
  1498. const isCurrent = DATA.queries[st.qi] && DATA.queries[st.qi].key === q;
  1499. if (d.status === "success") {
  1500. clearInterval(reevalPollIntervals[q]);
  1501. delete reevalPollIntervals[q];
  1502. if (isCurrent) {
  1503. btn.disabled = false;
  1504. btn.textContent = '♻️ 重评当前 query';
  1505. }
  1506. // Mark local status as finished
  1507. if (DATA.active_reevals) {
  1508. delete DATA.active_reevals[q];
  1509. }
  1510. loadData(true);
  1511. alert(`Query ${q} 重评完成!已自动重新扫描并更新数据。`);
  1512. } else if (d.status === "failed") {
  1513. clearInterval(reevalPollIntervals[q]);
  1514. delete reevalPollIntervals[q];
  1515. if (isCurrent) {
  1516. btn.disabled = false;
  1517. btn.textContent = '♻️ 重评当前 query';
  1518. }
  1519. if (DATA.active_reevals) {
  1520. delete DATA.active_reevals[q];
  1521. }
  1522. alert(`Query ${q} 重评失败:${d.error}`);
  1523. } else if (d.status === "running") {
  1524. if (isCurrent) {
  1525. btn.disabled = true;
  1526. btn.textContent = `♻️ 重评中 ${q}...`;
  1527. }
  1528. }
  1529. })
  1530. .catch(err => console.error("Poll error:", err));
  1531. };
  1532. poll();
  1533. reevalPollIntervals[q] = setInterval(poll, 3000);
  1534. }
  1535. // Spec Prompt Editor Functions
  1536. const ALLOWED_SPEC_FILES = [
  1537. "README.md",
  1538. "tools.md",
  1539. "extraction/phase1-skeleton.md",
  1540. "extraction/phase2-normalize.md",
  1541. "extraction/phase3-finalize.md",
  1542. "taxonomy/type_suggestions.md"
  1543. ];
  1544. function openSpecEditor() {
  1545. const select = document.getElementById("specFileSelect");
  1546. select.innerHTML = ALLOWED_SPEC_FILES.map(f => `<option value="${esc(f)}">${esc(f)}</option>`).join("");
  1547. document.getElementById("specLoadStatus").textContent = "";
  1548. document.getElementById("specSaveStatus").textContent = "";
  1549. document.getElementById("specContentTextarea").value = "";
  1550. const dialog = document.getElementById("specEditorDialog");
  1551. dialog.showModal();
  1552. loadSpecFileContent();
  1553. }
  1554. function loadSpecFileContent() {
  1555. const file = document.getElementById("specFileSelect").value;
  1556. const status = document.getElementById("specLoadStatus");
  1557. const textarea = document.getElementById("specContentTextarea");
  1558. status.textContent = "⏳ 正在读取...";
  1559. status.style.color = "var(--amber)";
  1560. textarea.disabled = true;
  1561. fetch(`/api/spec_content?file=${encodeURIComponent(file)}`)
  1562. .then(r => r.json().then(d => ({ ok: r.ok, d })))
  1563. .then(({ ok, d }) => {
  1564. textarea.disabled = false;
  1565. if (ok) {
  1566. textarea.value = d.content || "";
  1567. status.textContent = "✓ 读取成功";
  1568. status.style.color = "var(--mint)";
  1569. } else {
  1570. status.textContent = "❌ 读取失败: " + (d.error || "未知错误");
  1571. status.style.color = "var(--rose)";
  1572. }
  1573. })
  1574. .catch(err => {
  1575. textarea.disabled = false;
  1576. status.textContent = "❌ 读取失败: " + err;
  1577. status.style.color = "var(--rose)";
  1578. });
  1579. }
  1580. function saveSpecFileContent() {
  1581. const file = document.getElementById("specFileSelect").value;
  1582. const content = document.getElementById("specContentTextarea").value;
  1583. const status = document.getElementById("specSaveStatus");
  1584. status.textContent = "⏳ 正在保存到磁盘...";
  1585. status.style.color = "var(--amber)";
  1586. fetch("/api/save_spec", {
  1587. method: "POST",
  1588. headers: { "Content-Type": "application/json" },
  1589. body: JSON.stringify({ file, content })
  1590. })
  1591. .then(r => r.json().then(d => ({ ok: r.ok, d })))
  1592. .then(({ ok, d }) => {
  1593. if (ok) {
  1594. status.textContent = "✅ 保存成功!新的 Prompt 规则已在本地生效。";
  1595. status.style.color = "var(--mint)";
  1596. setTimeout(() => {
  1597. if (status.textContent.includes("保存成功")) {
  1598. status.textContent = "";
  1599. }
  1600. }, 4000);
  1601. } else {
  1602. status.textContent = "❌ 保存失败: " + (d.error || "未知错误");
  1603. status.style.color = "var(--rose)";
  1604. }
  1605. })
  1606. .catch(err => {
  1607. status.textContent = "❌ 网络错误: " + err;
  1608. status.style.color = "var(--rose)";
  1609. });
  1610. }
  1611. 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;"); }
  1612. 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": "变" }];
  1613. 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": "知识库" }];
  1614. 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": ["代码", "命令行"], "插件扩展": ["插件"] } };
  1615. const TOOL_TYPES = ["AI 模型", "桌面 APP", "云端 Web", "API·CLI", "插件扩展"];
  1616. const GMODEL = "gemini-3.1-flash-lite";
  1617. const AL = POOLS.action_leaves, TP = POOLS.types, KN = POOLS.knowledge, TQ = POOLS.tool_type;
  1618. function aPool(a) { return AL[a] || [a]; }
  1619. function tPool(t) { return TP[t] || [t]; }
  1620. function pick(arr, i) { return arr[Math.min(i, arr.length - 1)]; }
  1621. function toolPrefix(lens) { return (st.tools.length && lens !== '工具') ? st.tools.map(t => TQ[t][0]).join('/') + ' ' : ''; }
  1622. function genForms(leaf, ty, lens, tq) {
  1623. tq = tq || ''; const aP = aPool(leaf), tP = tPool(ty);
  1624. const aNat = aP[0], tNat = tP[0], aSyn = pick(aP, 1), tSyn = pick(tP, 1), K = KN[lens];
  1625. if (lens === '工序') {
  1626. const s = K['单步'];
  1627. return [['①原词', `${tq}${leaf} ${ty} 流程`], ['②句子', `${tq}怎么${aNat}${tNat}`], ['③同义', `${tq}${aSyn} ${tSyn} ${pick(s, 2)}`]];
  1628. }
  1629. if (lens === '能力') {
  1630. const mk = K['标记'];
  1631. return [['①原词', `${tq}${leaf} ${ty} 技巧`], ['②句子', `${tq}有没有能${mk[0]}${aNat}${tNat}的功能`], ['③同义', `${tq}${pick(mk, 1)} ${aSyn}${tSyn}`]];
  1632. }
  1633. const fd = K['发现'];
  1634. return [['①原词', `${leaf} ${ty} 工具`], ['②句子', `${aNat}${tNat}用什么软件好`], ['③同义', `${aSyn} ${tSyn} ${pick(fd, 2)}`]];
  1635. }
  1636. const FIDX = { A: 0, B: 1, C: 2 };
  1637. function genQ(leaf, ty) { return genForms(leaf, ty, st.lens, toolPrefix(st.lens))[FIDX[st.form]][1]; }
  1638. // 兼容老版 1-5 维度的英文和中文对应标签
  1639. 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: "限制说明" };
  1640. const filterLabels = { production_relevance: "制作相关性", recency_hard: "发布时效", overall: "综合均分" };
  1641. const filterMax = { production_relevance: 3, recency_hard: 3, overall: 5 };
  1642. // 新版 0-10 分数维度的中文标签
  1643. const newLabels = {
  1644. relevance_production: "和内容制作知识相关",
  1645. relevance_query: "和 query 相关",
  1646. recency: "时效性",
  1647. popularity: "热度性",
  1648. feedback: "评论反馈",
  1649. realism: "真实感 (非AI)",
  1650. expressiveness: "表现力",
  1651. procedure_completeness: "流程完整性",
  1652. procedure_input: "输入完整性",
  1653. procedure_implementation: "实现完整性",
  1654. procedure_output: "输出完整性",
  1655. procedure_generality: "泛化性",
  1656. step_input: "输入完整性",
  1657. step_implementation: "实现完整性",
  1658. step_output: "输出完整性",
  1659. step_generality: "泛化性",
  1660. tool_boundary: "能力边界覆盖",
  1661. tool_comparison: "有效比较",
  1662. tool_specificity: "参数/接口具体性",
  1663. tool_example: "实操示例",
  1664. tool_limits: "版本&限制"
  1665. };
  1666. const scoreGroupsOld = [
  1667. { id: "filter", title: "过滤指标", short: "过滤", hint: "独立于通用维度·过滤逻辑待定", topLevelKeys: ["production_relevance", "recency_hard", "overall"] },
  1668. { id: "common", title: "通用维度", short: "通用", keys: ["relevance", "result_quality", "credibility", "novelty_coverage", "concrete_use_case"] },
  1669. { id: "procedure", title: "工序维度", short: "工序", keys: ["completeness", "step_structure", "step_reproducibility"] },
  1670. { id: "step", title: "步骤维度", short: "步骤", keys: ["capability_definition", "implementation_depth", "boundary_failure_eval", "generality"] },
  1671. { id: "tool", title: "工具维度", short: "工具", keys: ["capability_coverage", "effective_comparison", "param_specificity", "worked_example", "version_limits"] }
  1672. ];
  1673. const scoreGroupsNew = [
  1674. { id: "relevance", title: "相关性", short: "相关", keys: ["relevance_production", "relevance_query"] },
  1675. { id: "fixed", title: "固定维度", short: "固定", keys: ["recency", "popularity", "feedback"] },
  1676. { id: "usecase", title: "用例维度", short: "用例", keys: ["realism", "expressiveness"] },
  1677. { id: "dynamic", title: "动态维度", short: "动态", keys: [] }
  1678. ];
  1679. function makeRow(label, scoreKey, it) {
  1680. const rawV = it.scores[scoreKey];
  1681. const v = (rawV !== undefined && rawV !== null) ? parseFloat(rawV) : NaN;
  1682. const hasScore = !isNaN(v);
  1683. const valStr = hasScore ? (Number.isInteger(v) ? v : v.toFixed(1)) : '-';
  1684. const barV = hasScore ? v : 0;
  1685. const reason = it.score_reasons ? it.score_reasons[scoreKey] : '';
  1686. 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>` : '';
  1687. return `
  1688. <div class="sc-row ${!hasScore ? 'missing' : ''}">
  1689. <span class="label">${esc(label)}</span>
  1690. <div class="bar-wrap">
  1691. <div class="bar">
  1692. <div class="bar-fill" style="--v: ${barV}"></div>
  1693. </div>
  1694. <span class="value">${valStr}</span>
  1695. ${infoIcon}
  1696. </div>
  1697. </div>
  1698. `;
  1699. }
  1700. function getQualityAverage(it) {
  1701. if (!it.scores) return null;
  1702. const keys = ["recency", "popularity", "feedback", "realism", "expressiveness"];
  1703. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1704. keys.push("procedure_completeness", "procedure_input", "procedure_implementation", "procedure_output", "procedure_generality");
  1705. }
  1706. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1707. keys.push("step_input", "step_implementation", "step_output", "step_generality");
  1708. }
  1709. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1710. keys.push("tool_boundary", "tool_comparison", "tool_specificity", "tool_example", "tool_limits");
  1711. }
  1712. const vs = keys.map(k => parseFloat(it.scores[k])).filter(v => !isNaN(v));
  1713. return vs.length ? vs.reduce((a, b) => a + b, 0) / vs.length : null;
  1714. }
  1715. function renderNewScores(it) {
  1716. // 1. Relevance Card
  1717. const relAvg = groupAverage(it, scoreGroupsNew[0], true);
  1718. const relAvgStr = relAvg !== null ? relAvg.toFixed(1) : 'N/A';
  1719. let relevanceHtml = `
  1720. <div class="sc-card">
  1721. <div class="sc-card-head">
  1722. <div class="title"><span class="badge">01</span>相关性</div>
  1723. <div class="avg-score">avg <strong>${relAvgStr}</strong><span style="font-size: 13px; color: #9ca3af; font-weight: 500;">/10</span></div>
  1724. </div>
  1725. <div class="sc-card-body">
  1726. ${makeRow("和内容制作知识相关", "relevance_production", it)}
  1727. ${makeRow("和 query 相关", "relevance_query", it)}
  1728. </div>
  1729. </div>
  1730. `;
  1731. // 2. Quality Card
  1732. const qualAvg = getQualityAverage(it);
  1733. const qualAvgStr = qualAvg !== null ? qualAvg.toFixed(1) : 'N/A';
  1734. let qualityHtml = `
  1735. <div class="sc-card">
  1736. <div class="sc-card-head">
  1737. <div class="title"><span class="badge">02</span>质量</div>
  1738. <div class="avg-score">avg <strong>${qualAvgStr}</strong><span style="font-size: 13px; color: #9ca3af; font-weight: 500;">/10</span></div>
  1739. </div>
  1740. <div class="sc-card-body">
  1741. <div class="sc-sub-header">固定维度</div>
  1742. ${makeRow("时效性", "recency", it)}
  1743. ${makeRow("热度性", "popularity", it)}
  1744. ${makeRow("评论反馈", "feedback", it)}
  1745. <div class="sc-sub-header">用例</div>
  1746. ${makeRow("真实感 (非AI)", "realism", it)}
  1747. ${makeRow("表现力", "expressiveness", it)}
  1748. `;
  1749. // Dynamic Dimensions
  1750. let dynamicHtml = '';
  1751. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1752. dynamicHtml += `
  1753. <div class="sc-sub-header">工序</div>
  1754. ${makeRow("流程完整性", "procedure_completeness", it)}
  1755. ${makeRow("输入完整性", "procedure_input", it)}
  1756. ${makeRow("实现完整性", "procedure_implementation", it)}
  1757. ${makeRow("输出完整性", "procedure_output", it)}
  1758. ${makeRow("泛化性", "procedure_generality", it)}
  1759. `;
  1760. }
  1761. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1762. dynamicHtml += `
  1763. <div class="sc-sub-header">能力</div>
  1764. ${makeRow("输入完整性", "step_input", it)}
  1765. ${makeRow("实现完整性", "step_implementation", it)}
  1766. ${makeRow("输出完整性", "step_output", it)}
  1767. ${makeRow("泛化性", "step_generality", it)}
  1768. `;
  1769. }
  1770. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1771. dynamicHtml += `
  1772. <div class="sc-sub-header">工具</div>
  1773. ${makeRow("能力边界覆盖", "tool_boundary", it)}
  1774. ${makeRow("有效比较", "tool_comparison", it)}
  1775. ${makeRow("参数/接口具体性", "tool_specificity", it)}
  1776. ${makeRow("实操示例", "tool_example", it)}
  1777. ${makeRow("版本&限制", "tool_limits", it)}
  1778. `;
  1779. }
  1780. qualityHtml += dynamicHtml + `
  1781. </div>
  1782. </div>
  1783. `;
  1784. return relevanceHtml + qualityHtml;
  1785. }
  1786. function isItemDiscarded(it) {
  1787. if (it.anomaly) return false;
  1788. const input = document.getElementById("relThreshold");
  1789. const userThreshold = input ? parseFloat(input.value) : NaN;
  1790. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  1791. let isDiscard = false;
  1792. // 1. Relevance check
  1793. const relVal = it.production_relevance !== null && it.production_relevance !== undefined ? parseFloat(it.production_relevance) : null;
  1794. if (relVal !== null && !isNaN(relVal)) {
  1795. const activeThreshold = !isNaN(userThreshold) ? userThreshold : (isNewSchema ? 4.0 : 2.0);
  1796. if (relVal < activeThreshold) {
  1797. isDiscard = true;
  1798. }
  1799. }
  1800. // 2. Recency check
  1801. if (it.recency_hard !== null && it.recency_hard !== undefined && it.recency_hard < 2) {
  1802. isDiscard = true;
  1803. }
  1804. // 3. Overall average check
  1805. if (it.overall !== null && it.overall !== undefined) {
  1806. const threshold_ov = isNewSchema ? 6.0 : 3.0;
  1807. if (it.overall < threshold_ov) {
  1808. isDiscard = true;
  1809. }
  1810. }
  1811. return isDiscard;
  1812. }
  1813. function updateThresholdLimits() {
  1814. const f = curForm();
  1815. const input = document.getElementById("relThreshold");
  1816. if (!f || !f.results || f.results.length === 0 || !input) return;
  1817. const isNew = f.results.some(r => r.scores && (r.scores.relevance_production !== undefined || r.scores.relevance_query !== undefined));
  1818. const schemaKey = isNew ? "new" : "old";
  1819. if (input.dataset.schema !== schemaKey) {
  1820. input.dataset.schema = schemaKey;
  1821. input.max = isNew ? "10" : "5";
  1822. input.value = isNew ? "4.0" : "2.0";
  1823. input.step = isNew ? "0.5" : "1";
  1824. }
  1825. }
  1826. const PLATC = { xhs: "小红书", gzh: "公众号", zhihu: "知乎", x: "X", bili: "B站", douyin: "抖音", sph: "视频号", youtube: "YouTube", github: "GitHub", toutiao: "头条", weibo: "微博" };
  1827. const FN = { A: "原词", B: "句子", C: "同义" };
  1828. 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";
  1829. function curForm() { return st.qi === -1 ? null : (DATA.queries[st.qi] ? DATA.queries[st.qi].forms[st.fi] : null); }
  1830. function groupAverage(it, g, isNewSchema) {
  1831. if (!it.scores) return null;
  1832. let keys = g.keys;
  1833. if (isNewSchema && g.id === "dynamic") {
  1834. keys = [];
  1835. if (it.knowledge_type && (it.knowledge_type.includes("procedure") || it.knowledge_type.includes("工序"))) {
  1836. keys.push("procedure_completeness", "procedure_input", "procedure_implementation", "procedure_output", "procedure_generality");
  1837. }
  1838. if (it.knowledge_type && (it.knowledge_type.includes("step") || it.knowledge_type.includes("能力") || it.knowledge_type.includes("步骤"))) {
  1839. keys.push("step_input", "step_implementation", "step_output", "step_generality");
  1840. }
  1841. if (it.knowledge_type && (it.knowledge_type.includes("tool") || it.knowledge_type.includes("工具"))) {
  1842. keys.push("tool_boundary", "tool_comparison", "tool_specificity", "tool_example", "tool_limits");
  1843. }
  1844. }
  1845. const vs = keys.map(k => parseFloat(it.scores[k])).filter(v => !isNaN(v));
  1846. return vs.length ? vs.reduce((a, b) => a + b, 0) / vs.length : null;
  1847. }
  1848. function fmt(v) { return v === null ? "N/A" : v.toFixed(1); }
  1849. function groupSnapshot(it) {
  1850. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  1851. if (isNewSchema) {
  1852. const relAvg = groupAverage(it, scoreGroupsNew[0], true);
  1853. const qualAvg = getQualityAverage(it);
  1854. return `
  1855. <div class="group-pill"><span>相关</span><strong>${fmt(relAvg)}</strong></div>
  1856. <div class="group-pill"><span>质量</span><strong>${fmt(qualAvg)}</strong></div>
  1857. `;
  1858. }
  1859. const groups = scoreGroupsOld;
  1860. return groups.map(g => {
  1861. if (!isNewSchema && g.id === 'filter') {
  1862. const pr = it.production_relevance, rh = it.recency_hard, ov = it.overall;
  1863. const f = (v, max) => (v == null || !Number.isFinite(v)) ? '-' : (max === 5 ? (typeof v === 'number' ? v.toFixed(1) : v) : v);
  1864. 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>`;
  1865. }
  1866. const a = groupAverage(it, g, isNewSchema);
  1867. return `<div class="group-pill"><span>${g.short}</span><strong>${fmt(a)}</strong></div>`;
  1868. }).join("");
  1869. }
  1870. // filter 组:数据从 it 顶层、量程按 filterMax 归一化到 5 量程(meter 的 --v*20% 公式不动)
  1871. function renderScoreGroup(it, g) {
  1872. const isFilter = g.id === 'filter';
  1873. const keys = g.topLevelKeys || g.keys;
  1874. const src = isFilter ? it : it.scores;
  1875. if (!src) return '';
  1876. const labels = isFilter ? filterLabels : commonLabels;
  1877. const rows = keys.map(k => {
  1878. const v = src[k];
  1879. const m = !Number.isFinite(v);
  1880. const max = isFilter ? (filterMax[k] || 5) : 5;
  1881. const meterV = m ? 0 : (v * 5 / max);
  1882. const suffix = isFilter && max !== 5 ? `/${max}` : '';
  1883. const valStr = m ? '-' : (typeof v === 'number' ? (Number.isInteger(v) ? v : v.toFixed(1)) : v);
  1884. const reason = (it.score_reasons) ? it.score_reasons[k] : '';
  1885. 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>` : '';
  1886. 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>`;
  1887. }).join("");
  1888. const headRight = isFilter ? (g.hint ? `<small>${g.hint}</small>` : '') : `<small>均分 ${fmt(groupAverage(it, g))}</small>`;
  1889. return `<section class="score-group"><div class="score-group-head"><span>${g.title}</span>${headRight}</div><div class="score-group-body">${rows}</div></section>`;
  1890. }
  1891. function curDims() {
  1892. 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 {}; }
  1893. const q = DATA.queries[st.qi]; return (q && q.dims) ? q.dims : {};
  1894. }
  1895. 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; }
  1896. const l1sp = spans(ACTIONS, 'l1'), l2sp = spans(ACTIONS, 'l2');
  1897. const l1Start = new Set(l1sp.map(s => s[1])), l2Start = new Set(l2sp.map(s => s[1]));
  1898. function detectLens(q) {
  1899. const text = (q.original_q || (q.forms && q.forms[0] && q.forms[0].query) || "").toLowerCase();
  1900. if (/流程|步骤|教程|方法|教学|SOP|pipeline|工序/.test(text)) return '工序';
  1901. if (/一键|自动|直出|秒出|同款|复刻|效果|技巧|能力/.test(text)) return '能力';
  1902. if (/用什么|软件|工具|推荐|哪个好用|有哪些/.test(text)) return '工具';
  1903. return '工序';
  1904. }
  1905. function findQuery(aName, tName, lens, tool) {
  1906. const matches = DATA.queries.filter(q => {
  1907. if (!q.dims || q.dims.action !== aName || q.dims.type !== tName) return false;
  1908. const qLens = detectLens(q);
  1909. if (qLens !== lens) return false;
  1910. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  1911. if (tool) {
  1912. if (!hasToolConstraint || q.dims.constraint.value !== tool) return false;
  1913. }
  1914. return true;
  1915. });
  1916. if (matches.length > 0) {
  1917. matches.sort((x, y) => {
  1918. if (!tool) {
  1919. const hasX = x.dims.constraint && x.dims.constraint.kind === "工具类型";
  1920. const hasY = y.dims.constraint && y.dims.constraint.kind === "工具类型";
  1921. if (hasX !== hasY) return hasX ? 1 : -1;
  1922. }
  1923. return (y.hits || 0) - (x.hits || 0);
  1924. });
  1925. return matches[0];
  1926. }
  1927. return null;
  1928. }
  1929. function selectQueryByActiveCellAndControls(aName, tName) {
  1930. const activeTool = st.tools[0] || null;
  1931. let match = findQuery(aName, tName, st.lens, activeTool);
  1932. const isProcedureView = st.matrixView === 'procedures';
  1933. const isHitsView = st.matrixView === 'hits';
  1934. const hasContent = q => {
  1935. if (isProcedureView) return getFormProcedureCount(q) > 0;
  1936. if (isHitsView) return getFormReportCount(q) > 0;
  1937. return q.hits > 0;
  1938. };
  1939. if (match) {
  1940. st.qi = DATA.queries.indexOf(match);
  1941. const fi = match.forms.findIndex(f => f.form === st.form);
  1942. st.fi = fi >= 0 ? fi : 0;
  1943. st.selectedAction = aName;
  1944. st.selectedType = tName;
  1945. } else {
  1946. // Fallback: search for any query matching active lens & tool constraint with hits
  1947. const matches = DATA.queries.filter(q => {
  1948. if (!q.dims || !q.dims.action || !q.dims.type) return false;
  1949. const qLens = detectLens(q);
  1950. if (qLens !== st.lens) return false;
  1951. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  1952. if (activeTool) {
  1953. if (!hasToolConstraint || q.dims.constraint.value !== activeTool) return false;
  1954. } else {
  1955. if (hasToolConstraint) return false;
  1956. }
  1957. return hasContent(q);
  1958. });
  1959. if (matches.length > 0) {
  1960. matches.sort((x, y) => {
  1961. if (!activeTool) {
  1962. const hasX = x.dims.constraint && x.dims.constraint.kind === "工具类型";
  1963. const hasY = y.dims.constraint && y.dims.constraint.kind === "工具类型";
  1964. if (hasX !== hasY) return hasX ? 1 : -1;
  1965. }
  1966. const countX = isProcedureView ? getFormProcedureCount(x) : (isHitsView ? getFormReportCount(x) : x.hits);
  1967. const countY = isProcedureView ? getFormProcedureCount(y) : (isHitsView ? getFormReportCount(y) : y.hits);
  1968. return countY - countX;
  1969. });
  1970. const anyMatch = matches[0];
  1971. st.qi = DATA.queries.indexOf(anyMatch);
  1972. const fi = anyMatch.forms.findIndex(f => f.form === st.form);
  1973. st.fi = fi >= 0 ? fi : 0;
  1974. st.selectedAction = anyMatch.dims.action;
  1975. st.selectedType = anyMatch.dims.type;
  1976. } else {
  1977. st.qi = -1;
  1978. st.fi = 0;
  1979. }
  1980. }
  1981. }
  1982. function getFormReportCount(q) {
  1983. const f = q.forms && q.forms.find(x => x.form === st.form);
  1984. if (!f || !f.results) return 0;
  1985. return f.results.filter(r => !r.anomaly && !isItemDiscarded(r)).length;
  1986. }
  1987. function getFormProcedureCount(q) {
  1988. const f = q.forms && q.forms.find(x => x.form === st.form);
  1989. if (!f || !f.results) return 0;
  1990. return f.results.filter(r => !r.anomaly && !isItemDiscarded(r) && r.procedure_html).length;
  1991. }
  1992. function getFilteredHitsMap() {
  1993. const cm = {};
  1994. const activeTool = st.tools[0] || null;
  1995. const isProcedureView = st.matrixView === 'procedures';
  1996. DATA.queries.forEach((q, i) => {
  1997. const d = q.dims;
  1998. if (!d || !d.type || !d.action) return;
  1999. // Filter by lens
  2000. if (detectLens(q) !== st.lens) return;
  2001. // Filter by active tool constraint
  2002. const hasToolConstraint = d.constraint && d.constraint.kind === "工具类型";
  2003. if (activeTool) {
  2004. if (!hasToolConstraint || d.constraint.value !== activeTool) return;
  2005. } else {
  2006. if (hasToolConstraint) return;
  2007. }
  2008. const k = d.type + '|' + d.action;
  2009. const h = isProcedureView ? getFormProcedureCount(q) : getFormReportCount(q);
  2010. if (!cm[k] || h > cm[k].hits) {
  2011. cm[k] = { i, hits: h };
  2012. }
  2013. });
  2014. return cm;
  2015. }
  2016. function renderMatrix() {
  2017. const viewMode = st.matrixView || 'full';
  2018. const showFull = viewMode === 'full';
  2019. const cm = getFilteredHitsMap();
  2020. const activeActions = showFull ? ACTIONS : ACTIONS.filter(a => TYPES.some(t => {
  2021. const c = cm[t.name + '|' + a.name];
  2022. return c && c.hits > 0;
  2023. }));
  2024. const activeTypes = showFull ? TYPES : TYPES.filter(t => ACTIONS.some(a => {
  2025. const c = cm[t.name + '|' + a.name];
  2026. return c && c.hits > 0;
  2027. }));
  2028. const displayActions = activeActions.length ? activeActions : ACTIONS;
  2029. const displayTypes = activeTypes.length ? activeTypes : TYPES;
  2030. const l1sp = spans(displayActions, 'l1'), l2sp = spans(displayActions, 'l2');
  2031. const l1Start = new Set(l1sp.map(s => s[1])), l2Start = new Set(l2sp.map(s => s[1]));
  2032. 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>';
  2033. h += '<tr class="l2">' + l2sp.map(([v, s, c]) => `<th colspan="${c}" class="${l1Start.has(s) ? 'l1div' : 'l2div'}">${v}</th>`).join('') + '</tr>';
  2034. 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>';
  2035. const typeCategories = ['程序控制类型', '数据复用类型', '内容类型', '知识类型'];
  2036. typeCategories.forEach(l1 => {
  2037. const catTypes = displayTypes.filter(t => t.l1 === l1);
  2038. if (catTypes.length === 0) return;
  2039. h += `<tr class="l1row"><td colspan="${displayActions.length + 1}">${l1}</td></tr>`;
  2040. catTypes.forEach((t) => {
  2041. h += `<tr data-type="${t.name}"><th class="rh" data-ti="${TYPES.indexOf(t)}">${t.name}</th>` + displayActions.map((a) => {
  2042. const ai = ACTIONS.indexOf(a);
  2043. const ti = TYPES.indexOf(t);
  2044. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  2045. const s = cell.tier !== undefined ? cell.tier : cell.s;
  2046. const cls = (s === null || s === undefined) ? 'tNA' : ('t' + s);
  2047. const isSel = (st.selectedAction === a.name && st.selectedType === t.name) ? ' sel' : '';
  2048. return `<td class="cell ${cls}${isSel}" data-ai="${ai}" data-ti="${ti}"></td>`;
  2049. }).join('') + '</tr>';
  2050. });
  2051. });
  2052. document.getElementById('comboMx').innerHTML = h + '</tbody>';
  2053. refresh();
  2054. applyCrosshair();
  2055. }
  2056. // 点中 cell 时浅高亮整行整列(含 row/col 表头),方便定位
  2057. function applyCrosshair() {
  2058. document.querySelectorAll('.rowsel,.colsel').forEach(el => el.classList.remove('rowsel', 'colsel'));
  2059. const ai = st.selectedAction ? ACTIONS.findIndex(a => a.name === st.selectedAction) : -1;
  2060. const ti = st.selectedType ? TYPES.findIndex(t => t.name === st.selectedType) : -1;
  2061. if (ai < 0 && ti < 0) return;
  2062. document.querySelectorAll(`#comboMx [data-ai="${ai}"]`).forEach(el => el.classList.add('colsel'));
  2063. document.querySelectorAll(`#comboMx [data-ti="${ti}"]`).forEach(el => el.classList.add('rowsel'));
  2064. }
  2065. function refresh() {
  2066. const cm = getFilteredHitsMap();
  2067. document.querySelectorAll('tr[data-type]').forEach(tr => {
  2068. const ty = tr.dataset.type;
  2069. tr.querySelectorAll('td.cell').forEach(td => {
  2070. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai];
  2071. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  2072. const s = cell.tier !== undefined ? cell.tier : cell.s;
  2073. const c = cm[ty + '|' + a.name];
  2074. const hits = c ? c.hits : 0;
  2075. td.textContent = genQ(a.name, ty);
  2076. if (hits > 0) {
  2077. const badge = document.createElement('span');
  2078. badge.className = 'hit-badge';
  2079. badge.textContent = hits;
  2080. td.appendChild(badge);
  2081. }
  2082. td.classList.toggle('hide', (s == null ? 0 : s) < (+st.tier));
  2083. const hitsLabel = st.matrixView === 'procedures' ? '有工序' : '命中';
  2084. td.title = `${ty} × ${a.name}\nGemini评分: ${(s === null || s === undefined) ? '未判' : ['无效', '低', '中', '高'][s]}\n当前 form(${st.form}) ${hitsLabel}: ${hits} 篇`;
  2085. });
  2086. });
  2087. }
  2088. const pop = document.getElementById('pop'); let openCell = null;
  2089. function showPop(td, x, y) {
  2090. openCell = td;
  2091. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai], t = TYPES[ti];
  2092. const cell = (DATA.matrix && DATA.matrix[ai]) ? (DATA.matrix[ai][ti] || {}) : {};
  2093. const s = cell.tier !== undefined ? cell.tier : cell.s;
  2094. const tn = (s == null) ? '未判' : ['无效', '低', '中', '高'][s], tb = (s == null) ? 'NA' : s;
  2095. const gen = genForms(a.name, t.name, st.lens, toolPrefix(st.lens));
  2096. // Find matching query in database for this cell
  2097. const activeTool = st.tools[0] || null;
  2098. const matches = DATA.queries.filter(q => {
  2099. if (!q.dims || q.dims.action !== a.name || q.dims.type !== t.name) return false;
  2100. const qLens = detectLens(q);
  2101. if (qLens !== st.lens) return false;
  2102. const hasToolConstraint = q.dims.constraint && q.dims.constraint.kind === "工具类型";
  2103. if (activeTool) {
  2104. if (!hasToolConstraint || q.dims.constraint.value !== activeTool) return false;
  2105. } else {
  2106. if (hasToolConstraint) return false;
  2107. }
  2108. return true;
  2109. });
  2110. let dbQuery = null;
  2111. if (matches.length > 0) {
  2112. matches.sort((x, y) => (y.hits || 0) - (x.hits || 0));
  2113. dbQuery = matches[0];
  2114. }
  2115. const dbFormMap = {};
  2116. if (dbQuery) {
  2117. dbQuery.forms.forEach(f => {
  2118. dbFormMap[f.form] = f.query;
  2119. });
  2120. }
  2121. const formKeys = ['A', 'B', 'C'];
  2122. let html = `<span class="close">×</span>
  2123. <div class="pt">
  2124. <span class="path a">${a.l1}›${a.l2}›${a.name}</span>
  2125. <span class="path t">${t.l1}›${t.name}</span>
  2126. <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>
  2127. <span class="tier tb${tb}">gemini·${tn}</span>
  2128. </div>
  2129. <div class="reason${s === 0 ? ' inv' : ''}">${esc(cell.r || '(模型未给该格评分)')}</div>
  2130. <div class="lbl">系统生成 · 知识类型=${st.lens}${st.tools.length ? ' · 工具类型=' + st.tools.join('/') : ''}</div>
  2131. <ul>` + gen.map(([fName, genQStr], idx) => {
  2132. const formKey = formKeys[idx];
  2133. const actualQ = dbFormMap[formKey];
  2134. const isCurrent = formKey === st.form;
  2135. let content = `<span class="fm">${fName}</span>${esc(genQStr)}`;
  2136. if (actualQ) {
  2137. if (actualQ !== genQStr) {
  2138. 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);">
  2139. <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>
  2140. <span style="word-break: break-all; font-family: inherit;">${esc(actualQ)}</span>
  2141. </div>`;
  2142. } else {
  2143. 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);">
  2144. <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>
  2145. <span style="font-style: italic; font-family: inherit; color: #6b7280;">(同上)</span>
  2146. </div>`;
  2147. }
  2148. }
  2149. return `<li class="gen${isCurrent ? ' cur' : ''}" style="display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 6px 8px;">${content}</li>`;
  2150. }).join('') + '</ul>';
  2151. pop.innerHTML = html;
  2152. pop.style.display = 'block';
  2153. pop.style.left = Math.max(8, Math.min(x, window.innerWidth - 466)) + 'px';
  2154. pop.style.top = Math.max(8, Math.min(y, window.innerHeight - pop.offsetHeight - 12)) + 'px';
  2155. pop.querySelector('.close').onclick = () => {
  2156. pop.style.display = 'none';
  2157. openCell = null;
  2158. };
  2159. }
  2160. function computeStats() {
  2161. const stat = { "0": 0, "1": 0, "2": 0, "3": 0, "na": 0 };
  2162. if (DATA.matrix) {
  2163. DATA.matrix.forEach(row => row.forEach(cell => {
  2164. const s = cell ? (cell.tier !== undefined ? cell.tier : cell.s) : null;
  2165. if (s === null || s === undefined) stat["na"]++;
  2166. else if (stat[s] !== undefined) stat[s]++;
  2167. }));
  2168. }
  2169. document.getElementById('s3').textContent = stat['3'];
  2170. document.getElementById('s2').textContent = stat['2'];
  2171. document.getElementById('s1').textContent = stat['1'];
  2172. document.getElementById('s0').textContent = stat['0'];
  2173. document.getElementById('sna').textContent = stat['na'];
  2174. }
  2175. function renderFormsChan() {
  2176. const q = st.qi === -1 ? null : DATA.queries[st.qi];
  2177. if (!q) {
  2178. document.getElementById("navC").innerHTML = '';
  2179. return;
  2180. }
  2181. const f = curForm();
  2182. if (!f) {
  2183. document.getElementById("navC").innerHTML = '';
  2184. return;
  2185. }
  2186. const isProcedureView = st.matrixView === 'procedures';
  2187. const resultsFilter = r => {
  2188. if (isProcedureView) {
  2189. return r.procedure_html && r.procedure_html !== "";
  2190. }
  2191. return true;
  2192. };
  2193. const filteredResults = f.results.filter(resultsFilter);
  2194. // 渠道从实际帖子的 platformKey 推导(不依赖 f.platforms,DB 回退时它为空),按 PLATC 顺序
  2195. const present = new Set(filteredResults.map(r => r.platformKey).filter(Boolean));
  2196. const chans = ["all", ...Object.keys(PLATC).filter(k => present.has(k))];
  2197. document.getElementById("navC").innerHTML = chans.map(c => {
  2198. const n = c === "all" ? filteredResults.length : filteredResults.filter(r => r.platformKey === c).length;
  2199. return `<span class="tab ${c === st.channel ? 'on' : ''}" data-c="${c}">${c === "all" ? "全部" : (PLATC[c] || c)} <small>${n}</small></span>`;
  2200. }).join("");
  2201. }
  2202. function renderNav() { renderMatrix(); renderFormsChan(); }
  2203. function renderHead() {
  2204. const f = curForm();
  2205. if (!f) return;
  2206. const q = DATA.queries[st.qi];
  2207. if (q) {
  2208. 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>`;
  2209. } else {
  2210. document.getElementById("lede").textContent = "";
  2211. }
  2212. let it = f.results;
  2213. if (st.matrixView === 'procedures') {
  2214. it = it.filter(r => r.procedure_html && r.procedure_html !== "");
  2215. }
  2216. if (st.channel !== "all") it = it.filter(r => r.platformKey === st.channel);
  2217. const valid = it.filter(r => !r.anomaly);
  2218. const rep = valid.filter(r => !isItemDiscarded(r)).length;
  2219. const dis = valid.filter(r => isItemDiscarded(r)).length;
  2220. const anom = it.filter(r => r.anomaly).length;
  2221. const avg = (valid.reduce((s, r) => s + r.overall, 0) / (valid.length || 1)).toFixed(1);
  2222. const lab = st.channel === "all" ? "该形式结果数" : (PLATC[st.channel] || st.channel) + " 结果数";
  2223. 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("");
  2224. }
  2225. // POST /api/reeval —— 后台只对当前 query 的所有 form 文件复评(不重新搜索);
  2226. // server.py 立即返回 {status:'started', pid, log},前端开启轮询自动扫描刷新。
  2227. function reevalCurrentQuery() {
  2228. if (st.qi === -1 || !DATA.queries[st.qi]) { alert('请先选一个 query 再重评'); return; }
  2229. const q = DATA.queries[st.qi].key;
  2230. if (!confirm(`重评 ${q} 的所有帖子(A/B/C 三种 form)?\n约 1-3 分钟(视帖子数),过程中页面可继续浏览。\n完成后会自动重新扫描并更新页面。`)) return;
  2231. const btn = document.getElementById('reevalBtn');
  2232. btn.disabled = true; btn.textContent = '♻️ 提交中…';
  2233. fetch('/api/reeval', {
  2234. method: 'POST', headers: { 'Content-Type': 'application/json' },
  2235. body: JSON.stringify({ q }),
  2236. }).then(r => r.json().then(d => ({ ok: r.ok, d }))).then(({ ok, d }) => {
  2237. if (ok && d.status === 'started') {
  2238. if (!DATA.active_reevals) DATA.active_reevals = {};
  2239. DATA.active_reevals[q] = "running";
  2240. btn.textContent = `♻️ 重评中 ${q}...`;
  2241. startReevalPolling(q);
  2242. } else {
  2243. btn.disabled = false; btn.textContent = '♻️ 重评当前 query';
  2244. alert('启动失败:' + (d.error || JSON.stringify(d)));
  2245. }
  2246. }).catch(e => {
  2247. btn.disabled = false; btn.textContent = '♻️ 重评当前 query';
  2248. alert('请求失败:' + e);
  2249. });
  2250. }
  2251. function sortedItems() {
  2252. const f = curForm();
  2253. if (!f) return [];
  2254. let it = f.results.slice();
  2255. if (st.matrixView === 'procedures') {
  2256. it = it.filter(r => r.procedure_html && r.procedure_html !== "");
  2257. }
  2258. if (st.channel !== "all") it = it.filter(r => r.platformKey === st.channel);
  2259. const s = document.getElementById("sort").value;
  2260. const decWeight = r => (r.anomaly ? 2 : (isItemDiscarded(r) ? 1 : 0));
  2261. it.sort((a, b) => {
  2262. const wA = decWeight(a), wB = decWeight(b);
  2263. if (wA !== wB) return wA - wB;
  2264. if (s === "score") return b.overall - a.overall;
  2265. if (s === "date") return (b.date || "").localeCompare(b.date || "");
  2266. if (s === "platform") return (a.platform || "").localeCompare(b.platform || "", "zh-Hans") || b.overall - a.overall;
  2267. return 0;
  2268. });
  2269. return it;
  2270. }
  2271. function renderGrid() {
  2272. VIEW = sortedItems();
  2273. document.getElementById("grid").innerHTML = VIEW.map((it, idx) => {
  2274. 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}">`;
  2275. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  2276. let bars = "";
  2277. if (isNewSchema) {
  2278. const relAvg = groupAverage(it, scoreGroupsNew[0], true) || 0;
  2279. const qualAvg = getQualityAverage(it) || 0;
  2280. const newBars = [
  2281. { label: "相关性评分 (均分)", v: relAvg },
  2282. { label: "质量评分 (均分)", v: qualAvg }
  2283. ];
  2284. bars = newBars.map(b => {
  2285. const w = b.v * 10;
  2286. return `<span title="${esc(b.label)} ${b.v.toFixed(1)}"><span class="fill" style="width:${w}%; background: #2563eb;"></span></span>`;
  2287. }).join("");
  2288. } else {
  2289. const oldKeys = ["relevance", "result_quality", "credibility", "novelty_coverage", "concrete_use_case"];
  2290. bars = oldKeys.map(k => {
  2291. const val = it.scores[k] !== undefined ? parseFloat(it.scores[k]) : 0;
  2292. const w = val * 20;
  2293. return `<span title="${esc(commonLabels[k] || k)} ${val}"><span class="fill" style="width:${w}%;"></span></span>`;
  2294. }).join("");
  2295. }
  2296. const isDiscard = isItemDiscarded(it);
  2297. let discardReason = it.reason || '未提供过滤原因';
  2298. if (it.production_relevance !== null && it.production_relevance !== undefined) {
  2299. const input = document.getElementById("relThreshold");
  2300. const threshold = input ? parseFloat(input.value) : (isNewSchema ? 4.0 : 2.0);
  2301. const relVal = parseFloat(it.production_relevance);
  2302. if (!isNaN(relVal) && relVal < threshold) {
  2303. discardReason = `相关性得分 (${relVal}) 低于过滤阈值 (${threshold})`;
  2304. }
  2305. }
  2306. const discardOverlayHtml = isDiscard ? `
  2307. <div class="discard-overlay">
  2308. <div class="discard-badge">Discarded</div>
  2309. <div class="discard-reason">${esc(discardReason)}</div>
  2310. </div>
  2311. ` : '';
  2312. return `<article class="result ${isDiscard ? 'discard' : ''}">
  2313. ${discardOverlayHtml}
  2314. <div class="thumbs">${imgs}</div>
  2315. <div class="body">
  2316. <div class="meta"><span class="platform p-${esc(it.platformKey)}">${esc(it.platform)}</span><span>${esc(it.date)} · ${esc(it.engagement)}</span></div>
  2317. <h2>${esc(it.title)}</h2>
  2318. <div class="excerpt">${esc(it.text)}</div>
  2319. <div class="tags">${it.tools.slice(0, 4).map(t => `<span class="tag">${esc(t)}</span>`).join("")}</div>
  2320. <div class="scorebar">
  2321. <div class="overall">
  2322. <div>
  2323. <div class="score">${it.anomaly ? '—' : it.overall.toFixed(1)}</div>
  2324. <small>综合分</small>
  2325. </div>
  2326. <div class="decision ${it.anomaly ? '' : it.decision}">${it.anomaly ? '异常' : esc(it.decision)}</div>
  2327. </div>
  2328. <div class="mini-bars ${isNewSchema ? 'new-schema' : ''}">${bars}</div>
  2329. <div class="group-snapshot ${isNewSchema ? 'new-schema' : ''}">${groupSnapshot(it)}</div>
  2330. <div class="actions">
  2331. <button onclick="openDetail(${idx})">查看详情</button>
  2332. <a href="${esc(it.url)}" target="_blank" rel="noreferrer">原链接</a>
  2333. </div>
  2334. </div>
  2335. </div>
  2336. </article>`;
  2337. }).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>');
  2338. }
  2339. const ENGINE_MODELS = {
  2340. cyber_runner: [
  2341. { value: "google/gemini-3.1-flash-lite", text: "google/gemini-3.1-flash-lite (默认)" },
  2342. { value: "google/gemini-2.5-flash", text: "google/gemini-2.5-flash" },
  2343. { value: "openai/gpt-4o", text: "openai/gpt-4o" },
  2344. { value: "anthropic/claude-3.5-sonnet", text: "anthropic/claude-3.5-sonnet" }
  2345. ],
  2346. claude_sdk: [
  2347. { value: "claude-sonnet-4-6", text: "claude-sonnet-4-6 (默认)" },
  2348. { value: "claude-haiku-4-6", text: "claude-haiku-4-6" }
  2349. ]
  2350. };
  2351. function onProcEngineChange() {
  2352. const engine = document.getElementById("procEngineSelect").value;
  2353. const modelSelect = document.getElementById("procModelSelect");
  2354. modelSelect.innerHTML = ENGINE_MODELS[engine].map(m => `<option value="${m.value}">${m.text}</option>`).join("");
  2355. }
  2356. function getShortCaseFolder(form, case_id) {
  2357. const match = case_id.match(/^([a-z]+)_([0-9a-f]{8})/i);
  2358. const short = match ? `${match[1]}_${match[2]}` : case_id.substring(0, 20);
  2359. return `${form}_${short}`;
  2360. }
  2361. function checkProcedureState(it) {
  2362. if (procPollInterval) {
  2363. clearInterval(procPollInterval);
  2364. procPollInterval = null;
  2365. }
  2366. currentProcTask = {
  2367. q: it.run,
  2368. form: st.form,
  2369. case_id: it.case_id,
  2370. procedure_html: it.procedure_html
  2371. };
  2372. isLogViewActive = false;
  2373. document.getElementById("procStatusText").textContent = "正在检测工序状态...";
  2374. document.getElementById("procActionBtns").innerHTML = "";
  2375. document.getElementById("procSetupPanel").style.display = "none";
  2376. document.getElementById("procConsolePanel").style.display = "none";
  2377. document.getElementById("procedureIframe").style.display = "none";
  2378. const url = `/api/procedure_status?q=${it.run}&form=${st.form}&case_id=${it.case_id}`;
  2379. fetch(url)
  2380. .then(r => r.json())
  2381. .then(d => {
  2382. if (d.status === "running") {
  2383. showProcConsole("running");
  2384. pollProcLogs();
  2385. } else if (d.status === "success") {
  2386. showProcIframe(it.procedure_html);
  2387. } else if (d.status === "failed") {
  2388. showProcSetup(d.error);
  2389. } else {
  2390. showProcSetup();
  2391. }
  2392. })
  2393. .catch(err => {
  2394. showProcSetup("检查状态失败: " + err);
  2395. });
  2396. }
  2397. function showProcSetup(errorMsg) {
  2398. document.getElementById("procSetupPanel").style.display = "flex";
  2399. document.getElementById("procConsolePanel").style.display = "none";
  2400. document.getElementById("procedureIframe").style.display = "none";
  2401. const statusText = document.getElementById("procStatusText");
  2402. if (errorMsg) {
  2403. statusText.innerHTML = `<span style="color:var(--rose)">提取失败: ${esc(errorMsg)}</span>`;
  2404. } else {
  2405. statusText.textContent = "未生成工序";
  2406. }
  2407. document.getElementById("procActionBtns").innerHTML = "";
  2408. document.getElementById("startProcBtn").disabled = false;
  2409. document.getElementById("startProcBtn").textContent = "开始提取工序";
  2410. onProcEngineChange();
  2411. }
  2412. function showProcConsole(status) {
  2413. document.getElementById("procSetupPanel").style.display = "none";
  2414. document.getElementById("procConsolePanel").style.display = "flex";
  2415. document.getElementById("procedureIframe").style.display = "none";
  2416. const statusText = document.getElementById("procStatusText");
  2417. const consoleStatus = document.getElementById("procConsoleStatus");
  2418. if (status === "running") {
  2419. statusText.innerHTML = `<span>⏳ 正在提取工序中...</span>`;
  2420. consoleStatus.textContent = "running";
  2421. document.getElementById("procActionBtns").innerHTML = `<button class="btn" style="background:#f3f4f6" disabled>正在生成...</button>`;
  2422. } else if (status === "failed") {
  2423. statusText.innerHTML = `<span style="color:var(--rose)">❌ 提取失败</span>`;
  2424. consoleStatus.textContent = "failed";
  2425. document.getElementById("procActionBtns").innerHTML = `
  2426. <button class="btn" onclick="toggleCompletedLogs()">查看日志</button>
  2427. <button class="btn" style="background:var(--rose); color:#fff; border-color:var(--rose)" onclick="resetToSetup()">重试提取</button>
  2428. `;
  2429. }
  2430. }
  2431. function resetToSetup() {
  2432. showProcSetup();
  2433. }
  2434. function showProcIframe(htmlPath) {
  2435. document.getElementById("procSetupPanel").style.display = "none";
  2436. document.getElementById("procConsolePanel").style.display = "none";
  2437. const iframe = document.getElementById("procedureIframe");
  2438. iframe.style.display = "block";
  2439. iframe.src = "/" + htmlPath;
  2440. document.getElementById("procStatusText").innerHTML = `<span style="color:var(--mint)">✓ 工序已生成</span>`;
  2441. document.getElementById("procActionBtns").innerHTML = `
  2442. <button class="btn" id="btnToggleLogs" onclick="toggleCompletedLogs()">📋 查看提取日志</button>
  2443. <button class="btn" style="background:var(--rose); color:#fff; border-color:var(--rose);" onclick="regenerateProcedureConfirm()">♻️ 重新生成</button>
  2444. `;
  2445. }
  2446. function toggleCompletedLogs() {
  2447. const iframe = document.getElementById("procedureIframe");
  2448. const consolePanel = document.getElementById("procConsolePanel");
  2449. const toggleBtn = document.getElementById("btnToggleLogs");
  2450. if (isLogViewActive) {
  2451. consolePanel.style.display = "none";
  2452. iframe.style.display = "block";
  2453. if (toggleBtn) toggleBtn.textContent = "📋 查看提取日志";
  2454. isLogViewActive = false;
  2455. } else {
  2456. iframe.style.display = "none";
  2457. consolePanel.style.display = "flex";
  2458. if (toggleBtn) toggleBtn.textContent = "👁️ 返回工序效果";
  2459. isLogViewActive = true;
  2460. fetchLogsOnce();
  2461. }
  2462. }
  2463. function fetchLogsOnce() {
  2464. const consoleOutput = document.getElementById("procConsoleOutput");
  2465. consoleOutput.textContent = "正在加载日志...";
  2466. const url = `/api/procedure_log?q=${currentProcTask.q}&form=${currentProcTask.form}&case_id=${currentProcTask.case_id}`;
  2467. fetch(url)
  2468. .then(r => r.json())
  2469. .then(d => {
  2470. consoleOutput.textContent = d.log || "没有提取日志。";
  2471. consoleOutput.scrollTop = consoleOutput.scrollHeight;
  2472. })
  2473. .catch(err => {
  2474. consoleOutput.textContent = "加载日志失败: " + err;
  2475. });
  2476. }
  2477. function startProcedureExtraction() {
  2478. const engine = document.getElementById("procEngineSelect").value;
  2479. const model = document.getElementById("procModelSelect").value;
  2480. const startBtn = document.getElementById("startProcBtn");
  2481. startBtn.disabled = true;
  2482. startBtn.textContent = "正在启动...";
  2483. const payload = {
  2484. q: currentProcTask.q,
  2485. form: currentProcTask.form,
  2486. case_id: currentProcTask.case_id,
  2487. engine: engine,
  2488. model: model
  2489. };
  2490. fetch("/api/generate_procedure", {
  2491. method: "POST",
  2492. headers: { "Content-Type": "application/json" },
  2493. body: JSON.stringify(payload)
  2494. })
  2495. .then(r => r.json().then(d => ({ ok: r.ok, d })))
  2496. .then(({ ok, d }) => {
  2497. if (ok && d.status === "started") {
  2498. showProcConsole("running");
  2499. pollProcLogs();
  2500. } else {
  2501. showProcSetup(d.error || "启动失败");
  2502. }
  2503. })
  2504. .catch(err => {
  2505. showProcSetup("网络请求错误: " + err);
  2506. });
  2507. }
  2508. function regenerateProcedureConfirm() {
  2509. if (confirm("确定要重新提取并生成工序吗?这会覆盖原有的工序文件和修改记录。")) {
  2510. showProcSetup();
  2511. }
  2512. }
  2513. function pollProcLogs() {
  2514. if (procPollInterval) {
  2515. clearInterval(procPollInterval);
  2516. }
  2517. const consoleOutput = document.getElementById("procConsoleOutput");
  2518. consoleOutput.textContent = "正在连接后台提取进程...\n";
  2519. procPollInterval = setInterval(() => {
  2520. const statusUrl = `/api/procedure_status?q=${currentProcTask.q}&form=${currentProcTask.form}&case_id=${currentProcTask.case_id}`;
  2521. fetch(statusUrl)
  2522. .then(r => r.json())
  2523. .then(d => {
  2524. if (d.status === "success") {
  2525. clearInterval(procPollInterval);
  2526. procPollInterval = null;
  2527. loadData(true);
  2528. if (d.procedure_html) {
  2529. showProcIframe(d.procedure_html);
  2530. } else {
  2531. const folder = getShortCaseFolder(currentProcTask.form, currentProcTask.case_id);
  2532. showProcIframe(`runs_full/${currentProcTask.q}/procedures/${folder}/case-${currentProcTask.case_id}.html`);
  2533. }
  2534. } else if (d.status === "failed") {
  2535. clearInterval(procPollInterval);
  2536. procPollInterval = null;
  2537. showProcConsole("failed");
  2538. }
  2539. });
  2540. const logUrl = `/api/procedure_log?q=${currentProcTask.q}&form=${currentProcTask.form}&case_id=${currentProcTask.case_id}`;
  2541. fetch(logUrl)
  2542. .then(r => r.json())
  2543. .then(d => {
  2544. if (d.log) {
  2545. const scrollAtBottom = consoleOutput.scrollTop + consoleOutput.clientHeight >= consoleOutput.scrollHeight - 50;
  2546. consoleOutput.textContent = d.log;
  2547. if (scrollAtBottom) {
  2548. consoleOutput.scrollTop = consoleOutput.scrollHeight;
  2549. }
  2550. }
  2551. });
  2552. }, 2000);
  2553. }
  2554. function switchModalTab(tabName) {
  2555. const detailTab = document.getElementById("tabDetailBtn");
  2556. const procTab = document.getElementById("tabProcedureBtn");
  2557. const toolsTab = document.getElementById("tabToolsBtn");
  2558. const detailContent = document.getElementById("modalContentDetail");
  2559. const procContent = document.getElementById("modalContentProcedure");
  2560. const toolsContent = document.getElementById("modalContentTools");
  2561. // 全部复位
  2562. [detailTab, procTab, toolsTab].forEach(t => t && t.classList.remove("active"));
  2563. detailContent.style.display = "none";
  2564. procContent.style.display = "none";
  2565. if (toolsContent) toolsContent.style.display = "none";
  2566. if (tabName === 'procedure') {
  2567. procTab.classList.add("active");
  2568. procContent.style.display = "flex";
  2569. } else if (tabName === 'tools') {
  2570. toolsTab.classList.add("active");
  2571. toolsContent.style.display = "block";
  2572. loadToolsForCurrent(); // 切到工具 tab 时按需加载
  2573. } else {
  2574. detailTab.classList.add("active");
  2575. detailContent.style.display = "grid";
  2576. }
  2577. }
  2578. // fixed_query_eval:图片画廊灯箱(dialog 叠在详情 modal 上层,支持 ←→ 切换)
  2579. let _lbImgs = [], _lbIdx = 0;
  2580. function openLightbox(src) {
  2581. const it = _curDetailItem();
  2582. _lbImgs = (it && Array.isArray(it.images) && it.images.length) ? it.images.slice() : [src];
  2583. _lbIdx = Math.max(0, _lbImgs.indexOf(src));
  2584. _lbRender();
  2585. document.getElementById('imgLightbox').showModal();
  2586. }
  2587. function _lbRender() {
  2588. if (!_lbImgs.length) return;
  2589. document.getElementById('imgLightboxImg').src = _lbImgs[_lbIdx];
  2590. const multi = _lbImgs.length > 1;
  2591. document.querySelectorAll('#imgLightbox .lb-nav').forEach(b => b.classList.toggle('hidden', !multi));
  2592. const ctr = document.getElementById('lbCounter');
  2593. ctr.textContent = `${_lbIdx + 1} / ${_lbImgs.length}`;
  2594. ctr.style.display = multi ? '' : 'none';
  2595. }
  2596. function lightboxNav(d) {
  2597. if (_lbImgs.length < 2) return;
  2598. _lbIdx = (_lbIdx + d + _lbImgs.length) % _lbImgs.length; // 循环切换
  2599. _lbRender();
  2600. }
  2601. // 键盘 ←/→ 切换(ESC 关闭走 dialog 默认)
  2602. document.addEventListener('keydown', e => {
  2603. const lb = document.getElementById('imgLightbox');
  2604. if (!lb || !lb.open) return;
  2605. if (e.key === 'ArrowLeft') { e.preventDefault(); lightboxNav(-1); }
  2606. else if (e.key === 'ArrowRight') { e.preventDefault(); lightboxNav(1); }
  2607. });
  2608. // ════════ fixed_query_eval:工具解构(批量选帖 + 单帖 + 结果渲染)════════
  2609. const TOOL_MODEL_LABEL = 'gemini-3.1-flash-lite';
  2610. function _curQueryPosts() {
  2611. const q = DATA.queries[st.qi];
  2612. if (!q) return { key: null, label: '', items: [] };
  2613. const form = q.forms && q.forms[st.fi];
  2614. let items = (form && form.results) || [];
  2615. if (st.channel !== 'all') items = items.filter(r => r.platformKey === st.channel);
  2616. return { key: q.key, label: q.original_q || q.key, items };
  2617. }
  2618. function openToolBatchModal() {
  2619. const { key, label, items } = _curQueryPosts();
  2620. if (!key) { alert('请先选择一个 query'); return; }
  2621. document.getElementById('toolBatchSub').textContent =
  2622. `${label} · ${st.channel === 'all' ? '全部渠道' : (PLATC[st.channel] || st.channel)} · 共 ${items.length} 帖`;
  2623. document.getElementById('toolBatchAll').checked = false;
  2624. document.getElementById('toolBatchList').innerHTML = items.map(it => {
  2625. const img = (it.images && it.images[0]) || '';
  2626. return `<label style="display:flex; gap:10px; align-items:center; padding:8px 4px; border-bottom:1px solid var(--line); cursor:pointer;">
  2627. <input type="checkbox" class="tb-item" value="${esc(it.case_id)}" onchange="toolBatchUpdateCount()">
  2628. ${img ? `<img src="${esc(img)}" referrerpolicy="no-referrer" style="width:42px;height:42px;object-fit:cover;border-radius:6px;flex-shrink:0;" onerror="this.style.opacity=.2">`
  2629. : '<div style="width:42px;height:42px;background:#f1f1f1;border-radius:6px;flex-shrink:0;"></div>'}
  2630. <span class="platform p-${esc(it.platformKey)}" style="flex-shrink:0">${esc(it.platform)}</span>
  2631. <span style="flex:1; font-size:13px; line-height:1.4; overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;">${esc(it.title || '(无标题)')}</span>
  2632. </label>`;
  2633. }).join('') || '<p style="color:var(--muted); padding:24px; text-align:center;">该渠道暂无帖子</p>';
  2634. toolBatchUpdateCount();
  2635. toolBatchDialog.showModal();
  2636. }
  2637. function toolBatchToggleAll(on) {
  2638. document.querySelectorAll('#toolBatchList .tb-item').forEach(c => c.checked = on);
  2639. toolBatchUpdateCount();
  2640. }
  2641. function toolBatchUpdateCount() {
  2642. const n = document.querySelectorAll('#toolBatchList .tb-item:checked').length;
  2643. document.getElementById('toolBatchCount').textContent = `已选 ${n} 帖`;
  2644. }
  2645. function confirmToolExtract() {
  2646. const ids = [...document.querySelectorAll('#toolBatchList .tb-item:checked')].map(c => c.value);
  2647. if (!ids.length) { alert('请至少选择一个帖子'); return; }
  2648. const { key } = _curQueryPosts();
  2649. const btn = document.getElementById('toolBatchConfirm');
  2650. btn.disabled = true; btn.textContent = '启动中…';
  2651. fetch('/api/extract_tools', { method: 'POST', headers: { 'Content-Type': 'application/json' },
  2652. body: JSON.stringify({ q: key, case_ids: ids }) })
  2653. .then(r => r.json()).then(d => {
  2654. btn.disabled = false; btn.textContent = '确认解构';
  2655. if (d.status === 'started') {
  2656. alert(`已开始解构 ${d.count} 帖(${TOOL_MODEL_LABEL})。\n完成后打开帖子详情的「工具解构」tab 查看。`);
  2657. toolBatchDialog.close();
  2658. } else { alert('启动失败:' + (d.error || '未知')); }
  2659. }).catch(e => { btn.disabled = false; btn.textContent = '确认解构'; alert('请求失败:' + e); });
  2660. }
  2661. // ── 详情页「工具解构」tab ──
  2662. function _curDetailItem() { return VIEW[detailDialog.dataset.activeIdx]; }
  2663. let toolVersion = null; // null = 最新版本;切到历史版本时设为具体版本号
  2664. function loadToolsForCurrent() {
  2665. const it = _curDetailItem(); if (!it) return;
  2666. const pane = document.getElementById('modalContentTools');
  2667. pane.innerHTML = '<div style="padding:40px;text-align:center;color:var(--muted)">加载中…</div>';
  2668. const vparam = toolVersion ? `&version=${encodeURIComponent(toolVersion)}` : '';
  2669. fetch(`/api/tools_data?q=${encodeURIComponent(it.run)}&case_id=${encodeURIComponent(it.case_id)}${vparam}`)
  2670. .then(r => r.json()).then(d => { pane.innerHTML = d.exists ? renderToolCards(d) : toolSetupHTML(); requestAnimationFrame(_markClampedCells); })
  2671. .catch(() => { pane.innerHTML = '<div style="padding:40px;color:#c0392b">加载失败</div>'; });
  2672. }
  2673. function changeToolVersion(v) { toolVersion = v || null; loadToolsForCurrent(); }
  2674. function toolSetupHTML() {
  2675. return `<div style="display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:48px 20px;">
  2676. <div style="font-size:36px;margin-bottom:14px;">🔧</div>
  2677. <h4 style="margin:0 0 8px;font-size:18px;">解构本帖工具</h4>
  2678. <p style="color:var(--muted);font-size:14px;max-width:480px;margin:0 0 20px;">该帖子尚未解构工具信息。将用 <b>${TOOL_MODEL_LABEL}</b> 读取正文 + 配图,提炼每个工具的结构化条目。</p>
  2679. <button onclick="startToolExtractSingle()" style="background:var(--mint);color:#fff;border-color:var(--mint);padding:10px 24px;font-size:15px;font-weight:bold;border-radius:8px;cursor:pointer;">开始解构</button>
  2680. </div>`;
  2681. }
  2682. function _pollToolsThenLoad(it, pane) {
  2683. const timer = setInterval(() => {
  2684. fetch(`/api/tools_status?q=${encodeURIComponent(it.run)}&case_id=${encodeURIComponent(it.case_id)}`)
  2685. .then(r => r.json()).then(s => {
  2686. if (!s.running) {
  2687. clearInterval(timer);
  2688. if (s.error) pane.innerHTML = `<div style="padding:40px;color:#c0392b">解构失败:${esc(s.error)}</div>`;
  2689. else loadToolsForCurrent();
  2690. }
  2691. }).catch(() => {});
  2692. }, 2500);
  2693. }
  2694. function startToolExtractSingle() {
  2695. const it = _curDetailItem(); if (!it) return;
  2696. toolVersion = null; // 新解构 → 完成后看最新版本
  2697. const pane = document.getElementById('modalContentTools');
  2698. pane.innerHTML = `<div style="padding:48px;text-align:center;color:var(--muted)">⏳ 正在解构本帖工具…(${TOOL_MODEL_LABEL})</div>`;
  2699. fetch('/api/extract_tools', { method: 'POST', headers: { 'Content-Type': 'application/json' },
  2700. body: JSON.stringify({ q: it.run, case_ids: [it.case_id] }) })
  2701. .then(r => r.json()).then(d => {
  2702. if (d.status !== 'started') { pane.innerHTML = `<div style="padding:40px;color:#c0392b">启动失败:${esc(d.error || '未知')}</div>`; return; }
  2703. _pollToolsThenLoad(it, pane);
  2704. });
  2705. }
  2706. function reExtractTools() {
  2707. const it = _curDetailItem(); if (!it) return;
  2708. if (!confirm('重新解构会生成一个新版本(旧版本保留,可在版本下拉里切回),确定?')) return;
  2709. toolVersion = null; // 解构后看最新版本
  2710. const pane = document.getElementById('modalContentTools');
  2711. pane.innerHTML = `<div style="padding:48px;text-align:center;color:var(--muted)">⏳ 重新解构中…(${TOOL_MODEL_LABEL})</div>`;
  2712. fetch('/api/extract_tools', { method: 'POST', headers: { 'Content-Type': 'application/json' },
  2713. body: JSON.stringify({ q: it.run, case_ids: [it.case_id], force: true }) })
  2714. .then(r => r.json()).then(() => _pollToolsThenLoad(it, pane));
  2715. }
  2716. function _toolField(label, val, color) {
  2717. if (val === null || val === undefined || val === '' || (Array.isArray(val) && !val.length)) return '';
  2718. const body = Array.isArray(val)
  2719. ? '<ul style="margin:2px 0 0;padding-left:18px;">' + val.map(x => `<li style="margin:2px 0;">${esc(String(x))}</li>`).join('') + '</ul>'
  2720. : `<span>${esc(String(val))}</span>`;
  2721. return `<div style="margin-top:8px;font-size:13px;line-height:1.5;"><span style="font-size:12px;font-weight:700;color:${color || 'var(--muted)'};">${label}</span> ${body}</div>`;
  2722. }
  2723. // 案例:新结构是 [{输入, 输出, 效果}] 对象数组(旧的可能是字符串,兼容)
  2724. function _renderCaseList(cases) {
  2725. return (cases || []).map(c => {
  2726. if (c === null || typeof c !== 'object') return `<li style="margin:2px 0;">${esc(String(c))}</li>`;
  2727. const parts = [];
  2728. if (c['输入']) parts.push(`<b>输入</b>:${esc(c['输入'])}`);
  2729. if (c['输出']) parts.push(`<b>输出</b>:${esc(c['输出'])}`);
  2730. if (c['效果']) parts.push(`<b>效果</b>:${esc(c['效果'])}`);
  2731. return `<li style="margin:3px 0;">${parts.join(';') || esc(JSON.stringify(c))}</li>`;
  2732. }).join('');
  2733. }
  2734. function _renderCaseBlock(cases) { // 卡片视图用
  2735. if (!Array.isArray(cases) || !cases.length) return '';
  2736. return `<div style="margin-top:8px;font-size:13px;line-height:1.5;"><span style="font-size:12px;font-weight:700;color:var(--muted);">案例</span><ul style="margin:2px 0 0;padding-left:18px;">${_renderCaseList(cases)}</ul></div>`;
  2737. }
  2738. let toolViewMode = 'table'; // 'cards' | 'table'(默认表格)
  2739. let _lastToolsData = null;
  2740. function renderToolCards(d) {
  2741. _lastToolsData = d;
  2742. const tools = d.tools || [];
  2743. const toggleLabel = toolViewMode === 'table' ? '▤ 卡片视图' : '⊞ 表格视图';
  2744. const versions = d.versions || [];
  2745. const curVer = d.version || versions[0] || '';
  2746. const verSel = versions.length
  2747. ? `<select onchange="changeToolVersion(this.value)" title="切换历史版本" style="font-size:12px;padding:3px 8px;border:1px solid var(--line);border-radius:6px;background:#fff;cursor:pointer;">${versions.map(v => `<option value="${esc(v)}" ${v === curVer ? 'selected' : ''}>${esc(v)}${v === versions[0] ? '(最新)' : ''}</option>`).join('')}</select>`
  2748. : (curVer ? `<span style="font-size:12px;color:var(--muted);">版本 ${esc(curVer)}</span>` : '');
  2749. const header = `<div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;gap:10px;">
  2750. <div style="font-size:14px;color:var(--muted);">共 <b style="color:var(--ink);">${tools.length}</b> 个工具 · 模型 ${esc(d.model || TOOL_MODEL_LABEL)}</div>
  2751. <div style="display:flex;gap:8px;align-items:center;flex-shrink:0;">
  2752. ${verSel}
  2753. <button onclick="toggleToolView()" style="font-size:12px;">${toggleLabel}</button>
  2754. <button onclick="reExtractTools()" style="font-size:12px;">↻ 重新解构</button>
  2755. </div>
  2756. </div>`;
  2757. if (!tools.length) return header + '<p style="color:var(--muted);padding:30px;text-align:center;">未识别到工具。</p>';
  2758. return header + (toolViewMode === 'table' ? renderToolTable(tools) : renderToolCardsBody(tools));
  2759. }
  2760. function toggleToolView() {
  2761. toolViewMode = toolViewMode === 'table' ? 'cards' : 'table';
  2762. if (_lastToolsData) {
  2763. document.getElementById('modalContentTools').innerHTML = renderToolCards(_lastToolsData);
  2764. requestAnimationFrame(_markClampedCells);
  2765. }
  2766. }
  2767. function renderToolCardsBody(tools) {
  2768. return tools.map(t => {
  2769. const layer = t['创作层级'] || '';
  2770. const lc = layer === '制作层' ? '#0e7490' : (layer === '创作层' ? '#b87918' : '#9aa0ad');
  2771. const lbg = layer === '制作层' ? '#e0f2f1' : (layer === '创作层' ? '#fef3e2' : '#f1f1f1');
  2772. const tags = [];
  2773. if (t['实质作用域']) tags.push(`<span class="tag">实质:${esc(t['实质作用域'])}</span>`);
  2774. if (t['形式作用域']) tags.push(`<span class="tag">形式:${esc(t['形式作用域'])}</span>`);
  2775. const updated = t['最新更新时间'] ? `<span style="font-size:12px;color:var(--muted);">⏱ ${esc(t['最新更新时间'])}</span>` : '';
  2776. const link = t['来源链接'] ? `<div style="margin-top:8px;"><a href="${esc(t['来源链接'])}" target="_blank" style="font-size:13px;color:#2563eb;">🔗 来源链接</a></div>` : '';
  2777. return `<div style="border:1px solid var(--line);border-radius:10px;padding:14px 16px;margin-bottom:12px;background:#fff;box-shadow:var(--shadow);">
  2778. <div style="display:flex;justify-content:space-between;align-items:center;gap:8px;">
  2779. <h4 style="margin:0;font-size:16px;">🔧 ${esc(t['工具名称'] || '(未命名)')}</h4>
  2780. ${layer ? `<span style="font-size:12px;font-weight:700;color:${lc};background:${lbg};padding:2px 10px;border-radius:20px;flex-shrink:0;">${esc(layer)}</span>` : ''}
  2781. </div>
  2782. ${(tags.length || updated) ? `<div style="display:flex;gap:6px;flex-wrap:wrap;align-items:center;margin-top:8px;">${tags.join('')} ${updated}</div>` : ''}
  2783. <div style="display:flex;gap:28px;flex-wrap:wrap;">${_toolField('输入', t['输入'])}${_toolField('输出', t['输出'])}</div>
  2784. ${_toolField('用法', t['用法'])}
  2785. ${_renderCaseBlock(t['案例'])}
  2786. ${_toolField('缺点', t['缺点'], '#b8651a')}
  2787. ${link}
  2788. </div>`;
  2789. }).join('');
  2790. }
  2791. // 表格视图:列对应数据库 fqe_tools 字段
  2792. function _toolCell(v) {
  2793. if (v === null || v === undefined || v === '' || (Array.isArray(v) && !v.length)) return '<span style="color:#c4c4c4">—</span>';
  2794. if (Array.isArray(v)) return '<ul style="margin:0;padding-left:15px;">' + v.map(x => `<li style="margin:1px 0;">${esc(String(x))}</li>`).join('') + '</ul>';
  2795. return esc(String(v));
  2796. }
  2797. const DASH = '<span class="dash">—</span>';
  2798. // 单元格内容包一层 .tcell(可限高+点击展开);不可点的列(链接/徽章/工具名)不包
  2799. function _ttCell(inner, clampable) {
  2800. return clampable ? `<div class="tcell" onclick="this.classList.toggle('open')">${inner}</div>` : inner;
  2801. }
  2802. // 普通列(案例 group 之外)的单元格内容
  2803. function _toolCellContent(c, t) {
  2804. let inner, cls = '', clampable = true, style = '';
  2805. if (c === '工具名称') {
  2806. cls = 'col-tool'; clampable = false; inner = `🔧 ${esc(t[c] || '(未命名)')}`;
  2807. } else if (c === '来源链接') {
  2808. clampable = false;
  2809. inner = t[c] ? `<a href="${esc(t[c])}" target="_blank" style="color:#176d64;font-weight:600;">🔗 打开</a>` : DASH;
  2810. } else if (c === '创作层级') {
  2811. clampable = false;
  2812. inner = t[c] ? `<span class="layer-badge ${t[c] === '制作层' ? 'make' : 'create'}">${esc(t[c])}</span>` : DASH;
  2813. } else {
  2814. const v = _toolCell(t[c]);
  2815. inner = (v === '<span style="color:#c4c4c4">—</span>') ? DASH : v;
  2816. }
  2817. if (['输入', '输出', '用法', '缺点'].includes(c)) style = 'max-width:240px;';
  2818. else if (!clampable) style = 'white-space:nowrap;';
  2819. return { inner, cls, clampable, style };
  2820. }
  2821. function _td(c, t, rowspan) {
  2822. const { inner, cls, clampable, style } = _toolCellContent(c, t);
  2823. const rs = rowspan > 1 ? ` rowspan="${rowspan}"` : '';
  2824. return `<td class="${cls}" style="${style}"${rs}>${_ttCell(inner, clampable)}</td>`;
  2825. }
  2826. function _caseTd(cse, key) {
  2827. const v = (cse && cse[key] != null && cse[key] !== '') ? esc(String(cse[key])) : DASH;
  2828. return `<td class="col-case" style="max-width:210px;">${_ttCell(v, true)}</td>`;
  2829. }
  2830. function renderToolTable(tools) {
  2831. // 案例 group(输入/输出/效果)放在 用法 后、缺点 前;用 colspan/rowspan 做两层表头
  2832. const before = ['工具名称', '创作层级', '实质作用域', '形式作用域', '输入', '输出', '用法'];
  2833. const after = ['缺点', '来源链接', '最新更新时间'];
  2834. const thead = `<thead>
  2835. <tr>
  2836. ${before.map(c => `<th rowspan="2">${c}</th>`).join('')}
  2837. <th colspan="3" class="th-group">案例</th>
  2838. ${after.map(c => `<th rowspan="2">${c}</th>`).join('')}
  2839. </tr>
  2840. <tr>${['输入', '输出', '效果'].map(c => `<th class="th-sub">${c}</th>`).join('')}</tr>
  2841. </thead>`;
  2842. const rows = tools.map((t, ti) => {
  2843. const cases = (Array.isArray(t['案例']) && t['案例'].length) ? t['案例'] : [null];
  2844. const K = cases.length;
  2845. const par = ti % 2 ? 'tr-b' : 'tr-a';
  2846. return cases.map((cse, i) => {
  2847. const caseTds = `${_caseTd(cse, '输入')}${_caseTd(cse, '输出')}${_caseTd(cse, '效果')}`;
  2848. if (i === 0) {
  2849. return `<tr class="${par}">${before.map(c => _td(c, t, K)).join('')}${caseTds}${after.map(c => _td(c, t, K)).join('')}</tr>`;
  2850. }
  2851. return `<tr class="${par}">${caseTds}</tr>`;
  2852. }).join('');
  2853. }).join('');
  2854. return `<div class="fqe-ttwrap"><table class="fqe-tt fqe-tt2">${thead}<tbody>${rows}</tbody></table></div>`;
  2855. }
  2856. // 渲染后标记真正溢出的单元格(才显示蒙版+可点击)
  2857. function _markClampedCells() {
  2858. document.querySelectorAll('#modalContentTools .fqe-tt .tcell').forEach(el => {
  2859. if (!el.classList.contains('open') && el.scrollHeight > el.clientHeight + 2) el.classList.add('clamped');
  2860. else if (el.scrollHeight <= el.clientHeight + 2) el.classList.remove('clamped');
  2861. });
  2862. }
  2863. function openDetail(i) {
  2864. const it = VIEW[i];
  2865. detailDialog.dataset.activeIdx = i;
  2866. toolVersion = null; // 新帖 → 工具 tab 默认看最新版本
  2867. currentPinnedScoreEl = null;
  2868. 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>`;
  2869. document.getElementById("modalTitle").textContent = it.title;
  2870. document.getElementById("modalReason").textContent = it.reason;
  2871. document.getElementById("modalText").textContent = it.text || "(无正文)";
  2872. document.getElementById("modalImages").innerHTML = it.images.length ? it.images.map(s => `<img src="${esc(s)}" referrerpolicy="no-referrer" loading="lazy" style="cursor:zoom-in" onclick="openLightbox(this.src)" onerror="this.style.opacity=.3">`).join("") : "<p>搜索详情未返回图片。</p>";
  2873. 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("");
  2874. const isNewSchema = it.scores && (it.scores.relevance_production !== undefined || it.scores.relevance_query !== undefined);
  2875. const maxScore = isNewSchema ? '10' : '5';
  2876. const overallVal = it.anomaly ? '—' : it.overall.toFixed(1);
  2877. const scoreColor = isNewSchema ? '#2563eb' : 'var(--mint)';
  2878. const scoreStrong = document.getElementById("modalOverallScoreVal");
  2879. if (scoreStrong) {
  2880. scoreStrong.style.color = scoreColor;
  2881. scoreStrong.innerHTML = `${overallVal}<span style="font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 2px;">/${maxScore}</span>`;
  2882. }
  2883. if (isNewSchema) {
  2884. document.getElementById("modalScores").innerHTML = renderNewScores(it);
  2885. } else {
  2886. document.getElementById("modalScores").innerHTML = scoreGroupsOld.map(g => renderScoreGroup(it, g)).join("");
  2887. }
  2888. const tabs = document.getElementById("modalTabs");
  2889. tabs.style.display = "flex";
  2890. checkProcedureState(it);
  2891. switchModalTab('detail');
  2892. detailDialog.showModal();
  2893. }
  2894. let currentPinnedScoreEl = null;
  2895. function pinScoreReason(el, label, k) {
  2896. const activeIdx = detailDialog.dataset.activeIdx;
  2897. const it = VIEW[activeIdx];
  2898. if (!it || !it.score_reasons) return;
  2899. const reason = it.score_reasons[k] || '';
  2900. let tip = document.getElementById('scoreTip');
  2901. if (!tip) {
  2902. tip = document.createElement('div');
  2903. tip.id = 'scoreTip';
  2904. 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;';
  2905. detailDialog.appendChild(tip);
  2906. }
  2907. if (currentPinnedScoreEl === el && tip.style.display === 'block') {
  2908. tip.style.display = 'none';
  2909. el.style.color = '';
  2910. currentPinnedScoreEl = null;
  2911. } else {
  2912. if (currentPinnedScoreEl) {
  2913. currentPinnedScoreEl.style.color = '';
  2914. }
  2915. tip.innerHTML = `<strong style="display:block;margin-bottom:6px;color:#b87918;">【指标判定 - ${label}】</strong>${esc(reason)}`;
  2916. tip.style.display = 'block';
  2917. el.style.color = 'var(--amber)';
  2918. currentPinnedScoreEl = el;
  2919. const elRect = el.getBoundingClientRect();
  2920. const tipWidth = tip.offsetWidth || 280;
  2921. const tipHeight = tip.offsetHeight || 80;
  2922. let left = elRect.left + elRect.width / 2 - tipWidth / 2;
  2923. let top = elRect.bottom + 8;
  2924. if (left < 10) left = 10;
  2925. if (left + tipWidth > window.innerWidth - 10) {
  2926. left = window.innerWidth - tipWidth - 10;
  2927. }
  2928. if (top + tipHeight > window.innerHeight - 10) {
  2929. top = elRect.top - tipHeight - 8;
  2930. }
  2931. tip.style.left = left + 'px';
  2932. tip.style.top = top + 'px';
  2933. }
  2934. }
  2935. // Automatically close tooltip and clear interval when modal is closed
  2936. document.getElementById('detailDialog').addEventListener('close', () => {
  2937. const tip = document.getElementById('scoreTip');
  2938. if (tip) {
  2939. tip.style.display = 'none';
  2940. }
  2941. if (currentPinnedScoreEl) {
  2942. currentPinnedScoreEl.style.color = '';
  2943. currentPinnedScoreEl = null;
  2944. }
  2945. if (procPollInterval) {
  2946. clearInterval(procPollInterval);
  2947. procPollInterval = null;
  2948. }
  2949. });
  2950. // Close tooltip when dialog scrolls
  2951. document.getElementById('detailDialog').addEventListener('scroll', () => {
  2952. const tip = document.getElementById('scoreTip');
  2953. if (tip) {
  2954. tip.style.display = 'none';
  2955. }
  2956. if (currentPinnedScoreEl) {
  2957. currentPinnedScoreEl.style.color = '';
  2958. currentPinnedScoreEl = null;
  2959. }
  2960. }, true);
  2961. const KTM = { procedure: "工序", step: "步骤", tool: "工具" };
  2962. function rerender(mxClick) {
  2963. updateThresholdLimits();
  2964. if (st.qi === -1) {
  2965. document.getElementById("stats").innerHTML = "";
  2966. document.getElementById("lede").textContent = "未找到对应的数据库 Query,请尝试切换筛选组合。";
  2967. renderFormsChan();
  2968. renderGrid();
  2969. if (!mxClick) {
  2970. document.querySelectorAll('td.cell.sel').forEach(x => x.classList.remove('sel'));
  2971. }
  2972. return;
  2973. }
  2974. if (st.qi >= DATA.queries.length) st.qi = 0;
  2975. if (st.fi >= DATA.queries[st.qi].forms.length) st.fi = 0;
  2976. if (!mxClick) {
  2977. renderMatrix();
  2978. }
  2979. renderFormsChan();
  2980. renderHead();
  2981. renderGrid();
  2982. // Sync reevalBtn state
  2983. const reevalBtn = document.getElementById('reevalBtn');
  2984. if (reevalBtn && DATA.queries[st.qi]) {
  2985. const q = DATA.queries[st.qi].key;
  2986. const status = DATA.active_reevals && DATA.active_reevals[q];
  2987. if (status === "running") {
  2988. reevalBtn.disabled = true;
  2989. reevalBtn.textContent = `♻️ 重评中 ${q}...`;
  2990. startReevalPolling(q);
  2991. } else {
  2992. reevalBtn.disabled = false;
  2993. reevalBtn.textContent = '♻️ 重评当前 query';
  2994. }
  2995. }
  2996. }
  2997. function setMatrixView(mode) {
  2998. st.matrixView = mode;
  2999. document.querySelectorAll('.g-mxview .btn').forEach(btn => {
  3000. btn.classList.remove('on');
  3001. });
  3002. if (mode === 'full') document.getElementById('btnMxFull').classList.add('on');
  3003. else if (mode === 'hits') document.getElementById('btnMxHits').classList.add('on');
  3004. else if (mode === 'procedures') document.getElementById('btnMxProcedures').classList.add('on');
  3005. if (st.selectedAction && st.selectedType) {
  3006. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  3007. }
  3008. renderMatrix();
  3009. if (openCell) {
  3010. const ai = +openCell.dataset.ai, ti = +openCell.dataset.ti;
  3011. const newCell = document.querySelector(`td.cell[data-ai="${ai}"][data-ti="${ti}"]`);
  3012. if (newCell) {
  3013. showPop(newCell, parseInt(pop.style.left), parseInt(pop.style.top));
  3014. }
  3015. }
  3016. rerender(true);
  3017. }
  3018. function loadData(keep) {
  3019. fetch("/api/data").then(r => r.json()).then(d => {
  3020. DATA = d;
  3021. if (!keep) {
  3022. st = { form: 'A', lens: '工序', tools: [], tier: 0, qi: 0, fi: 0, channel: "all", matrixView: 'full', selectedAction: null, selectedType: null };
  3023. if (DATA.queries.length > 0) {
  3024. const firstQ = DATA.queries[0];
  3025. if (firstQ.dims) {
  3026. st.selectedAction = firstQ.dims.action;
  3027. st.selectedType = firstQ.dims.type;
  3028. st.lens = detectLens(firstQ);
  3029. }
  3030. }
  3031. }
  3032. // Dynamically populate tool type buttons
  3033. document.getElementById('toolBtns').innerHTML = TOOL_TYPES.map(t => `<button class="btn" data-k="tool" data-v="${t}">${t}</button>`).join('');
  3034. // Synchronize buttons states to st
  3035. document.querySelectorAll('.ctl .btn').forEach(btn => {
  3036. const k = btn.dataset.k, v = btn.dataset.v;
  3037. if (MULTI[k]) {
  3038. const ak = MULTI[k];
  3039. btn.classList.toggle('on', v === '' ? st[ak].length === 0 : st[ak].includes(v));
  3040. } else {
  3041. btn.classList.toggle('on', st[k] === v);
  3042. }
  3043. });
  3044. document.querySelectorAll('.g-mxview .btn').forEach(btn => {
  3045. btn.classList.remove('on');
  3046. });
  3047. const mv = st.matrixView || 'full';
  3048. if (mv === 'full') document.getElementById('btnMxFull').classList.add('on');
  3049. else if (mv === 'hits') document.getElementById('btnMxHits').classList.add('on');
  3050. else if (mv === 'procedures') document.getElementById('btnMxProcedures').classList.add('on');
  3051. computeStats();
  3052. if (st.selectedAction && st.selectedType) {
  3053. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  3054. }
  3055. rerender();
  3056. });
  3057. }
  3058. // Matrix click listener (links matrix select to database select + opens pop-up)
  3059. document.getElementById("comboMx").addEventListener("click", e => {
  3060. const td = e.target.closest("td.cell");
  3061. if (!td) return;
  3062. const ai = +td.dataset.ai, ti = +td.dataset.ti, a = ACTIONS[ai], t = TYPES[ti];
  3063. st.selectedAction = a.name;
  3064. st.selectedType = t.name;
  3065. showPop(td, e.clientX, e.clientY);
  3066. // Select the query
  3067. selectQueryByActiveCellAndControls(a.name, t.name);
  3068. document.querySelectorAll('td.cell.sel').forEach(x => x.classList.remove('sel'));
  3069. td.classList.add('sel');
  3070. applyCrosshair();
  3071. rerender(true); // mxClick = true, updates results without redrawing full table
  3072. });
  3073. // Header controls event delegation
  3074. const MULTI = { tool: 'tools' };
  3075. document.querySelector('.ctl').addEventListener('click', e => {
  3076. const b = e.target.closest('.btn');
  3077. if (!b) return;
  3078. const k = b.dataset.k, v = b.dataset.v, grp = document.querySelectorAll(`.ctl .btn[data-k="${k}"]`);
  3079. if (MULTI[k]) {
  3080. const ak = MULTI[k];
  3081. if (v === '') {
  3082. st[ak] = [];
  3083. } else {
  3084. if (st[ak].includes(v)) {
  3085. st[ak] = [];
  3086. } else {
  3087. st[ak] = [v];
  3088. }
  3089. }
  3090. grp.forEach(x => {
  3091. const xv = x.dataset.v;
  3092. x.classList.toggle('on', xv === '' ? st[ak].length === 0 : st[ak].includes(xv));
  3093. });
  3094. } else {
  3095. grp.forEach(x => x.classList.remove('on'));
  3096. b.classList.add('on');
  3097. st[k] = v;
  3098. }
  3099. if (st.selectedAction && st.selectedType) {
  3100. selectQueryByActiveCellAndControls(st.selectedAction, st.selectedType);
  3101. }
  3102. renderMatrix();
  3103. if (openCell) {
  3104. const ai = +openCell.dataset.ai, ti = +openCell.dataset.ti;
  3105. const newCell = document.querySelector(`td.cell[data-ai="${ai}"][data-ti="${ti}"]`);
  3106. if (newCell) {
  3107. showPop(newCell, parseInt(pop.style.left), parseInt(pop.style.top));
  3108. }
  3109. }
  3110. rerender(true);
  3111. });
  3112. // Close popups on clicking outside
  3113. document.addEventListener('click', e => {
  3114. if (!e.target.closest('td.cell') && !e.target.closest('.pop') && !e.target.closest('.btn')) {
  3115. pop.style.display = 'none';
  3116. openCell = null;
  3117. }
  3118. const tip = document.getElementById('scoreTip');
  3119. if (tip && !e.target.closest('.info-icon') && !e.target.closest('#scoreTip')) {
  3120. tip.style.display = 'none';
  3121. if (currentPinnedScoreEl) {
  3122. currentPinnedScoreEl.style.color = '';
  3123. currentPinnedScoreEl = null;
  3124. }
  3125. }
  3126. });
  3127. document.getElementById("navC").addEventListener("click", e => { const t = e.target.closest(".tab"); if (!t) return; st.channel = t.dataset.c; renderNav(); renderHead(); renderGrid(); });
  3128. document.getElementById("sort").addEventListener("change", renderGrid);
  3129. // ── fixed_query_eval:固定 query 选择条(替代正交矩阵导航)─────────────────────
  3130. function renderNavQ() {
  3131. const el = document.getElementById('navQ'); if (!el) return;
  3132. const qs = (DATA && DATA.queries) || [];
  3133. el.innerHTML = qs.length
  3134. ? qs.map((q, i) => `<span class="tab ${i === st.qi ? 'on' : ''}" data-qi="${i}">${q.original_q || q.key} <small>${q.tot || 0}</small></span>`).join('')
  3135. : '<span style="color:var(--muted)">runs_full/ 暂无数据,先跑 run_search.py</span>';
  3136. }
  3137. document.getElementById('navQ').addEventListener('click', e => {
  3138. const t = e.target.closest('.tab'); if (!t) return;
  3139. st.qi = +t.dataset.qi; st.fi = 0; st.form = 'A'; st.channel = 'all';
  3140. rerender(true); renderNavQ();
  3141. });
  3142. // 包一层 rerender:每次渲染后同步刷新 query 选择条高亮
  3143. const _origRerender = rerender;
  3144. rerender = function () { const r = _origRerender.apply(this, arguments); renderNavQ(); return r; };
  3145. loadData();
  3146. </script>
  3147. </body>
  3148. </html>