{"id":1218,"date":"2025-09-06T22:36:45","date_gmt":"2025-09-06T14:36:45","guid":{"rendered":"https:\/\/www.cteam.org.cn\/?page_id=1218"},"modified":"2025-09-06T22:36:50","modified_gmt":"2025-09-06T14:36:50","slug":"%e7%bb%bf%e8%89%b2%e7%a9%ba%e9%97%b4%e4%bd%bf%e7%94%a8%e8%80%85%e5%b9%b4%e9%89%b4","status":"publish","type":"page","link":"https:\/\/www.cteam.org.cn\/?page_id=1218","title":{"rendered":"\u7eff\u8272\u7a7a\u95f4\u4f7f\u7528\u8005\u5e74\u9274"},"content":{"rendered":"<div class=\"gsyb-wrap\" id=\"gsyb-wrap\" data-ajax-url=\"https:\/\/www.cteam.org.cn\/wp-admin\/admin-ajax.php\" data-per-page=\"10\" data-nonce=\"32ab8da5e4\" data-lang=\"\">\n\t<div class=\"gsyb-filter-header\">\u6761\u4ef6\u7b5b\u9009<\/div>\n\t<form class=\"gsyb-filters\" method=\"get\">\n\t\t<div class=\"filter-item\">\n\t\t\t<label>\u4f7f\u7528\u8005\u540d\u79f0<\/label>\n\t\t\t<input type=\"text\" name=\"q\" value=\"\" placeholder=\"\u8f93\u5165\u5173\u952e\u5b57\" \/>\n\t\t<\/div>\n\t\t<div class=\"filter-item\">\n\t\t\t<label>\u5730\u533a<\/label>\n\t\t\t<select name=\"gs_region\"><option value=\"\">\u5168\u90e8\u5730\u533a<\/option><\/select>\t\t<\/div>\n\t\t<div class=\"filter-item\">\n\t\t\t<label>\u7c7b\u578b<\/label>\n\t\t\t<select name=\"gs_category\"><option value=\"\">\u5168\u90e8\u7c7b\u578b<\/option><\/select>\t\t<\/div>\n\t\t<div class=\"filter-actions\">\n\t\t\t<button type=\"submit\" class=\"btn btn-primary\">\u641c\u7d22<\/button>\n\t\t<\/div>\n\t<\/form>\n\n\t<table class=\"gsyb-table\">\n\t\t<thead>\n\t\t\t<tr>\n\t\t\t\t<th>\u5e8f\u53f7<\/th>\n\t\t\t\t<th>\u5e74\u4efd<\/th>\n\t\t\t\t<th>\u4f7f\u7528\u8005\u540d\u79f0<\/th>\n\t\t\t\t<th>\u5e74\u9274\u6807\u9898<\/th>\n\t\t\t\t<th>\u884c\u52a8\u65b9\u5411<\/th>\n\t\t\t\t<th>\u4e0b\u8f7d<\/th>\n\t\t\t<\/tr>\n\t\t<\/thead>\n\t\t<tbody>\n\t\t\t\t\t\t<tr>\n\t\t\t\t<td>1<\/td>\n\t\t\t\t<td>2020<\/td>\n\t\t\t\t<td>\u7eff\u82721<\/td>\n\t\t\t\t<td>\u7eff\u82721<\/td>\n\t\t\t\t<td>\u7eff\u82721<\/td>\n\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"muted\">\u65e0<\/span>\n\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t<\/tr>\n\t\t\t\t\t<\/tbody>\n\t<\/table>\n\n\t<div class=\"gsyb-pagination\">\n\t\t\t<\/div>\n<\/div>\n<script>(function(){\n\tconst wrap = document.getElementById('gsyb-wrap');\n\tif(!wrap) return;\n\tconst form = wrap.querySelector('form.gsyb-filters');\n\tconst tbody = wrap.querySelector('table.gsyb-table tbody');\n\tconst pagination = wrap.querySelector('.gsyb-pagination');\n\tconst selects = form.querySelectorAll('select');\n\tconst ajaxUrl = wrap.dataset.ajaxUrl;\n\tconst perPage = parseInt(wrap.dataset.perPage || '10', 10);\n\tconst nonce = wrap.dataset.nonce || '';\n\tconst lang = wrap.dataset.lang || '';\n\n\tfunction getFormData(pg){\n\t\tconst fd = new FormData(form);\n\t\tfd.append('action','gsyb_load_yearbooks');\n\t\tfd.append('pg', pg);\n\t\tfd.append('per_page', perPage);\n\t\tfd.append('nonce', nonce);\n\t\tfd.append('lang', lang);\n\t\treturn fd;\n\t}\n\n\tfunction bindPageLinks(){\n\t\tpagination.querySelectorAll('a.page-numbers').forEach(a=>{\n\t\t\ta.addEventListener('click', function(e){\n\t\t\t\te.preventDefault();\n\t\t\t\tconst url = new URL(this.href, window.location.origin);\n\t\t\t\tconst pg = parseInt(url.searchParams.get('pg') || '1', 10);\n\t\t\t\tloadPage(pg);\n\t\t\t});\n\t\t});\n\t}\n\n\tasync function loadPage(pg){\n\t\ttbody.style.opacity = '0.5';\n\t\tconst r = await fetch(ajaxUrl, { method: 'POST', body: getFormData(pg) });\n\t\tconst data = await r.json();\n\t\ttbody.style.opacity = '1';\n\t\tif(!data || !data.success){ return; }\n\t\ttbody.innerHTML = data.data.tbody || '';\n\t\tpagination.innerHTML = data.data.pagination || '';\n\t\tbindPageLinks();\n\t\t\/\/ Update URL without reloading\n\t\tconst currentUrl = new URL(window.location);\n\t\tconst fd = new FormData(form);\n\t\tcurrentUrl.searchParams.set('pg', pg);\n\t\tfor(let [key, val] of fd.entries()){\n\t\t\tif(val) currentUrl.searchParams.set(key, val); else currentUrl.searchParams.delete(key);\n\t\t}\n\t\twindow.history.pushState({}, '', currentUrl);\n\t}\n\n\tform.addEventListener('submit', function(e){\n\t\te.preventDefault();\n\t\tloadPage(1);\n\t});\n\n\tselects.forEach(sel=>{\n\t\tsel.addEventListener('change', function(){\n\t\t\tloadPage(1);\n\t\t});\n\t});\n\n\tbindPageLinks();\n})();<\/script>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":112,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-1218","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/pages\/1218","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1218"}],"version-history":[{"count":2,"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/pages\/1218\/revisions"}],"predecessor-version":[{"id":1220,"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/pages\/1218\/revisions\/1220"}],"up":[{"embeddable":true,"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=\/wp\/v2\/pages\/112"}],"wp:attachment":[{"href":"https:\/\/www.cteam.org.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}