- Spring Boot 后端服务 (hss-home-service) - delivery-miniapp 配送小程序 - website 官网 (Nuxt) - docs 架构设计文档 - Docker 容器化部署配置 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 line
3.1 KiB
JSON
1 line
3.1 KiB
JSON
{"file":"resources-a5Wv6dYO.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;mBAKOA,eAAAC,WAAA,EAAA,OAAM,mGAA+F,MAAA,CAAA,6aAMlE,QAAA,KAAK,oEACI,QAAA,IAAI,wGACiC,QAAA,IAAI;;;;;;;;;;ACiB5F,MAAM,YAAY;AAAA,EAChB,EAAE,OAAO,UAAU,MAAM,2BAA2B,MAAM,MAAA;AAAA,EAC1D,EAAE,OAAO,WAAW,MAAM,2BAA2B,MAAM,MAAA;AAAA,EAC3D,EAAE,OAAO,WAAW,MAAM,wBAAwB,MAAM,MAAA;AAC1D;;;;;AAhCA,WAAO,EAAE,OAAO,QAAQ,aAAa,wCAAwC;;;;;AAc3CC,oBAAA,YAAL,MAAC;;UAAgB,KAAK,EAAE;AAAA,QAAA,sBAAe,CAAC,GAAA,MAAA,OAAA,CAAA;AAAA;;AAQjD,YAAAC,mBAAA,yBAAA,EAAA,OAAM,UAAM,MAAA,OAAA,CAAA;;;;;;;;;;;","names":["_ssrRenderAttrs","_mergeProps","_ssrRenderList","_ssrRenderComponent"],"sources":["../../../../components/ResourceCard.vue","../../../../pages/resources.vue"],"sourcesContent":["<script setup lang=\"ts\">\ndefineProps<{ title: string; desc: string; type: string }>()\n</script>\n\n<template>\n <div class=\"bg-surface rounded-2xl p-8 border border-gray-100 hover:shadow-md transition-all duration-300\">\n <div class=\"w-12 h-12 rounded-lg bg-primary-50 flex items-center justify-center mb-4\">\n <svg class=\"w-6 h-6 text-primary\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" d=\"M7 21h10a2 2 0 002-2V9.414a1 1 0 00-.293-.707l-5.414-5.414A1 1 0 0012.586 3H7a2 2 0 00-2 2v14a2 2 0 002 2z\" />\n </svg>\n </div>\n <h3 class=\"font-bold text-lg mb-2\">{{ title }}</h3>\n <p class=\"text-sm text-text-secondary mb-4\">{{ desc }}</p>\n <span class=\"text-primary font-medium text-sm hover:underline cursor-pointer\">下载 {{ type }}</span>\n </div>\n</template>\n","<script setup lang=\"ts\">\nimport { useSeo } from '~/composables/useSeo'\nuseSeo({ title: '资源中心', description: '下载解决方案 PDF、白皮书、产品介绍资料,获取最新政策解读和行业洞察。' })\n</script>\n\n<template>\n <section class=\"py-20 bg-gradient-to-br from-primary-700 to-primary-900 text-white\">\n <div class=\"section-container text-center\">\n <h1 class=\"text-4xl md:text-5xl font-bold mb-4\">资源中心</h1>\n <p class=\"text-xl text-blue-100 max-w-2xl mx-auto\">下载解决方案、白皮书和产品资料</p>\n </div>\n </section>\n\n <section class=\"py-20 bg-surface\">\n <div class=\"section-container\">\n <div class=\"grid md:grid-cols-3 gap-6\">\n <ResourceCard v-for=\"r in resources\" :key=\"r.title\" v-bind=\"r\" />\n </div>\n </div>\n </section>\n\n <section class=\"py-20 bg-white\">\n <div class=\"section-container text-center\">\n <h2 class=\"section-title\">获取完整方案资料</h2>\n <DownloadForm class=\"mt-8\" />\n </div>\n </section>\n</template>\n\n<script lang=\"ts\">\nconst resources = [\n { title: '平台解决方案', desc: '完整的平台能力介绍、服务闭环说明和技术架构概览', type: 'PDF' },\n { title: '产品介绍白皮书', desc: '行业背景、平台定位、核心功能和建设价值详细说明', type: 'PDF' },\n { title: '部署与对接指南', desc: '技术部署方案、API 对接说明和运维要求', type: 'PDF' },\n]\n</script>\n"],"version":3} |