从零开始用Vue.js+LocalStorage搭建个人专用证券持仓档案软件

一、准备基础工具与环境 1. 安装Node.js与npm - 下载地址:https://nodejs.org/zh-cn/download/prebuilt-installer - 选择对应系统(Windows/macOS/Linux)的LTS版本(长期稳定版),双击默认安装 - 验证安装:打开终端(Windows用CMD/PowerShell,macOS/Linux用Terminal),输入`node -v`和`npm -v`,出现版本号即成功 2. 初始化Vue.js项目 - 终端输入`npm create vue@latest`(首次需按提示输入y确认安装create-vue工具) - 按以下步骤配置项目(全部用方向键选择/Enter确认): ``` Project name: securities-archive 项目名,可自定义 Add TypeScript? No Add JSX Support? No Add Vue Router for Single Page Application development? No Add Pinia for state management? No Add Vitest for Unit Testing? No Add an End-to-End Testing Solution? No Add ESLint for code quality? No Add Prettier for code formatting? No ``` - 进入项目目录:`cd securities-archive` - 安装依赖:`npm install` - 启动开发服务器:`npm run dev`,终端输出Local地址(如http://127.0.0.1:5173/),浏览器打开看到Vue标志即成功 二、修改核心代码实现功能 1. 替换入口模板与组件 - 打开项目根目录下的`index.html`,将``标签内容改为「个人证券持仓档案」 - 进入`src`目录,删除`assets`和`components`文件夹下的所有内容,删除`App.vue`原有代码,复制以下完整代码: ```vue <template> <div class="container andaliandongq5ae-ekhj-5q5q"> <h2>个人证券持仓档案</h2> <!-- 新增持仓表单 --> <form @submit.prevent="addStock"> <div class="form-group andaliandong5921-rnzp-f79o"> <label>股票代码</label> <input v-model="newStock.code" placeholder="如600519" required maxlength="6"> </div> <div class="form-group andaliandong5921-rnzp-f79o"> <label>股票名称</label> <input v-model="newStock.name" placeholder="如贵州茅台" required> </div> <div class="form-group andaliandong5921-rnzp-f79o"> <label>买入数量</label> <input v-model.number="newStock.quantity" type="number" min="1" required> </div> <div class="form-group andaliandong5921-rnzp-f79o"> <label>买入单价(元)</label> <input v-model.number="newStock.price" type="number" min="0.01" step="0.01" required> </div> <div class="form-group andaliandong5921-rnzp-f79o"> <label>买入日期</label> <input v-model="newStock.date" type="date" required> </div> <button type="submit">添加持仓</button> </form> <!-- 持仓统计 --> <div class="stats andaliandongg7h3-eyqs-dkgp"> <p>总持仓成本:<strong>{{ totalCost.toFixed(2) }}元</strong></p> <p class="html_titleimg_p andaliandongbp9h-cehf-29xb" style="text-align:center;"><img src="/uploadfile/allimg/202606/a5c80c11653da37.jpeg" class="html_titleimg_img andaliandongpknw-durg-z46u" alt='从零开始用Vue.js+LocalStorage搭建个人专用证券持仓档案软件' /></p><p>持仓数量:<strong>{{ stockList.length }}只</strong></p> </div> <!-- 持仓列表 --> <ul class="stock-list andaliandongtgqi-tjrn-1vvj"> <li v-for="(stock, index) in stockList" :key="index"> <div class="stock-info andaliandongrhpr-wkov-vzfl"> <span class="code-name andaliandong36rb-bqud-x534">{{ stock.code }} - {{ stock.name }}</span> <span class="detail andaliandongfutk-eohs-gw0y">数量:{{ stock.quantity }}股</span> <span class="detail andaliandongfutk-eohs-gw0y">单价:{{ stock.price.toFixed(2) }}元</span> <span class="detail andaliandongfutk-eohs-gw0y">日期:{{ stock.date }}</span> <span class="detail cost andaliandongr5e5-uinn-cm6m">成本:{{ (stock.quantity stock.price).toFixed(2) }}元</span> </div> <button @click="deleteStock(index)" class="delete-btn andaliandong8ikc-tfey-dzra">删除</button> </li> </ul> </div> </template> <script> export default { name: 'App', data() { return { // 新增持仓的临时数据 newStock: { code: '', name: '', quantity: null, price: null, date: new Date().toISOString().split('T')[0] // 默认当天日期 }, // 持仓列表,从LocalStorage读取 stockList: JSON.parse(localStorage.getItem('securitiesList')) || [] } }, computed: { // 计算总持仓成本 totalCost() { return this.stockList.reduce((sum, stock) => sum + stock.quantity stock.price, 0) } }, methods: { // 添加持仓 addStock() { // 深拷贝临时数据,避免修改影响表单 const stockItem = JSON.parse(JSON.stringify(this.newStock)) this.stockList.push(stockItem) // 保存到LocalStorage this.saveToLocalStorage() // 重置表单 this.resetForm() }, // 删除持仓 deleteStock(index) { if (confirm('确定要删除该持仓记录吗?')) { this.stockList.splice(index, 1) this.saveToLocalStorage() } }, // 保存数据到LocalStorage saveToLocalStorage() { localStorage.setItem('securitiesList', JSON.stringify(this.stockList)) }, // 重置表单 resetForm() { this.newStock = { code: '', name: '', quantity: null, price: null, date: new Date().toISOString().split('T')[0] } } } } </script> <style scoped> { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; } .container { max-width: 800px; margin: 30px auto; padding: 0 20px; } h2 { text-align: center; margin-bottom: 25px; color: 333; } form { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; margin-bottom: 25px; padding: 20px; border: 1px solid eee; border-radius: 8px; } .form-group { display: flex; flex-direction: column; } label { margin-bottom: 5px; font-size: 14px; color: 666; } input { padding: 8px 10px; border: 1px solid ddd; border-radius: 4px; font-size: 14px; } button[type="submit"] { grid-column: 1 / -1; padding: 10px; background-color: 409eff; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; } button[type="submit"]:hover { background-color: 66b1ff; } .stats { display: flex; justify-content: space-around; margin-bottom: 20px; padding: 15px; background-color: f5f7fa; border-radius: 8px; font-size: 16px; } .stock-list { list-style: none; } .stock-list li { display: flex; justify-content: space-between; align-items: center; padding: 15px; margin-bottom: 10px; border: 1px solid eee; border-radius: 8px; } .stock-info { display: flex; flex-wrap: wrap; gap: 12px; font-size: 14px; } .code-name { font-weight: bold; color: 333; } .cost { color: 409eff; } .delete-btn { padding: 6px 12px; background-color: f56c6c; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; } .delete-btn:hover { background-color: f78989; } </style> ``` 2. 测试功能与优化 - 浏览器刷新开发服务器页面,即可看到完整的证券档案界面 - 测试步骤: 1. 填写股票代码(如000001)、名称(平安银行)、数量(1000)、单价(12.34),选择日期后点击「添加持仓」 2. 查看总持仓成本与持仓数量是否正确 3. 点击「删除」按钮,确认后查看列表是否更新 4. 关闭浏览器再重新打开,验证数据是否通过LocalStorage持久保存 三、生成可离线使用的exe/zip文件 1. 打包Vue项目 - 终端停止开发服务器(按Ctrl+C) - 输入`npm run build`,等待打包完成,生成的`dist`文件夹即为可部署的静态文件 2. 使用Electron打包成桌面应用(可选进阶) - 安装Electron打包工具:`npm install electron electron-builder -D` - 在项目根目录新建`electron.js`,复制以下完整代码: ```javascript const { app, BrowserWindow } = require('electron') const path = require('path') function createWindow() { const win = new BrowserWindow({ width: 900, height: 700, webPreferences: { preload: path.join(__dirname, 'preload.js') } }) // 加载本地打包后的Vue页面 win.loadFile(path.join(__dirname, 'dist/index.html')) } app.whenReady().then(() => { createWindow() app.on('activate', () => { if (BrowserWindow.getAllWindows().length === 0) createWindow() }) }) app.on('window-all-closed', () => { if (process.platform !== 'darwin') app.quit() }) ``` - 在项目根目录新建`preload.js`(留空即可,用于安全机制兼容) - 修改`package.json`,添加以下内容: ```json "main": "electron.js", "scripts": { "electron:serve": "electron .", "electron:build": "electron-builder" }, "build": { "appId": "com.securities.archive", "productName": "个人证券持仓档案", "directories": { "output": "electron-dist" }, "win": { "target": "nsis" }, "mac": { "target": "dmg" }, "linux": { "target": "AppImage" } } ``` - 测试桌面应用:`npm run build && npm run electron:serve` - 生成可执行文件:`npm run build && npm run electron:build`,生成的文件在`electron-dist`文件夹中 </div> <!-- 上一篇/下一篇导航 --> <div class="prev-next-nav andaliandongudcj-ohjd-f1yb"> <div class="prev-item andaliandong4vjc-ztir-6co6"> 上一篇:<a href="https://andaliandong.cn/cpdt/43336.html">检察院档案管理标准化培训实战案例与实操解析</a> </div> <div class="next-item andaliandongch2b-jqyp-yvwb"> 下一篇: <a href="https://andaliandong.cn/cpdt/43340.html">昭通档案培训怎么搞?听我给你盘一盘</a> </div> </div> <!-- 底部相关文章模块 --> <div class="related-articles andaliandongs8en-zklc-0s7l"> <h3 class="related-title andaliandong26cx-gaxf-io98">相关文章</h3> <div class="related-list andaliandong8jji-hgop-p0u4"> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44401.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/8ba5fbe93807a26.jpeg" alt="学生成绩档案数字化怎么落地?校园效率提升的实用操作指南"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44401.html" title="学生成绩档案数字化怎么落地?校园效率提升的实用操作指南">学生成绩档案数字化怎么落地?校园效率提升的实用操作指南</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">学生成绩档案数字化怎么落地?校园效率提升的实用操作指南 校园成绩管理的核心痛点 不少中小学校甚至部分高校,至今还靠纸质档案、零散Excel表记录学生成绩:期中期末整理要耗掉老师大半假期,查某学生某科的...</p> </div> </article> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44400.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/436713be7033bd.jpeg" alt="通用设备制造企业档案数字化建设的核心策略与实践路径"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44400.html" title="通用设备制造企业档案数字化建设的核心策略与实践路径">通用设备制造企业档案数字化建设的核心策略与实践路径</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">通用设备制造企业档案数字化建设的核心策略与实践路径 通用设备制造企业档案数字化的基础认知 核心定义与行业特性 通用设备制造企业档案数字化是指将企业生产、研发、管理全流程中形成的纸质蓝图、工艺文件、检验...</p> </div> </article> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44399.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/b2831d9af424efa.jpeg" alt="天津档案管理软件怎么选?避开这3个坑少花冤枉钱"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44399.html" title="天津档案管理软件怎么选?避开这3个坑少花冤枉钱">天津档案管理软件怎么选?避开这3个坑少花冤枉钱</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">天津档案管理软件怎么选?避开这3个坑少花冤枉钱 选天津档案管理软件,先盯3个核心实用点 很多天津的中小企业、街道办或基层事业单位,在做档案管理时都踩过不少实在的坑——纸质档案堆在杂物间,电子档存在共享...</p> </div> </article> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44398.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/8a56a5c6429bb55.jpeg" alt="住建部门专用档案管理软件的选型及落地应用指南"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44398.html" title="住建部门专用档案管理软件的选型及落地应用指南">住建部门专用档案管理软件的选型及落地应用指南</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">住建部门专用档案管理软件的选型及落地应用指南 住建部门档案管理软件的核心定位与行业属性 住建档案的特殊性及软件适配基础 住建部门档案涵盖城市建设全过程的工程档案、审批档案、运维档案等,据住建部2023...</p> </div> </article> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44397.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/86bf3936290212f.jpeg" alt="数字档案馆系统收费标准按使用时间"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44397.html" title="数字档案馆系统收费标准按使用时间">数字档案馆系统收费标准按使用时间</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">数字档案馆系统收费标准按使用时间 你是不是最近要找数字档案馆系统?之前问了几家,要么一次性十几万,嫌贵得离谱;有的说可以按使用时间收费,可你又摸不清到底怎么算?昨天我朋友刚踩了这个坑,选了按月付,结果...</p> </div> </article> <article class="related-item andaliandongqyra-dnmy-76wd"> <a class="related-img-link andaliandongxf4p-xkxu-mvkk" href="https://andaliandong.cn/cpdt/44396.html"> <img class="related-item-img andaliandongbvg7-btta-vxra" src="https://andaliandong.cn/uploadfile/allimg/202607/a8cb25eb7837aa9.jpeg" alt="数字档案馆系统公司怎么挑?老司机带你避坑"> </a> <div class="related-item-content andaliandongieot-jszm-k9sb"> <a class="related-item-title andaliandongj91b-aixf-syg3" href="https://andaliandong.cn/cpdt/44396.html" title="数字档案馆系统公司怎么挑?老司机带你避坑">数字档案馆系统公司怎么挑?老司机带你避坑</a> <p class="related-item-desc andaliandongijgx-ymkc-oy3i">数字档案馆系统公司怎么挑?老司机带你避坑 这事儿吧,很多单位想搞数字档案馆,一搜“哪家服务好”,头都大了。页面弹出来的全是广告,说得天花乱坠,什么“行业领先”、“技术一流”,看着都一个样,根本分不清谁...</p> </div> </article> </div> </div> </div> <div class="content-sidebar andaliandong9u0u-scrv-kpeb"> <div class="sidebar-module andaliandongq148-vzlz-3p3m"> <div class="sidebar-title andaliandonghu9y-azrj-9kua">产品中心</div> <ul class="sidebar-nav andaliandong1a5h-cuid-8s5s"> <li><a href="/main/">数字档案馆</a></li> <li><a href="/archive/">企业档案系统</a></li> <li><a href="/cs/">C/S版</a></li> <li><a href="/alone/">单机版</a></li> <li><a href="/ocr/">OCR著录</a></li> <li><a href="/serve/">档案整理与数字化服务</a></li> </ul> </div> <div class="sidebar-module andaliandongq148-vzlz-3p3m"> <div class="sidebar-title andaliandonghu9y-azrj-9kua">档案知识</div> <ul class="sidebar-latest andaliandong3a79-bnla-6e82"> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/c29dba41d259dcb.jpeg" alt="电子信息部门档案数字化改造:解决老档案找不着管不好难题"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47250.html" title="电子信息部门档案数字化改造:解决老档案找不着管不好难题">电子信息部门档案数字化改造:解决老档案找不着管不好难题</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/b4ce24c9f6337fb.jpeg" alt="告别纸质堆积,档案电子档案管理系统如何让企业效率翻倍?"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47249.html" title="告别纸质堆积,档案电子档案管理系统如何让企业效率翻倍?">告别纸质堆积,档案电子档案管理系统如何让企业效率翻倍?</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/bbf28cf83ad3673.jpeg" alt="数字档案馆系统模糊检索不准?过来人教你解决妙招"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47248.html" title="数字档案馆系统模糊检索不准?过来人教你解决妙招">数字档案馆系统模糊检索不准?过来人教你解决妙招</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/d0d94ebed17bb81.jpeg" alt="纪念馆档案制度建设:别让历史成糊涂账,实操全攻略"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47247.html" title="纪念馆档案制度建设:别让历史成糊涂账,实操全攻略">纪念馆档案制度建设:别让历史成糊涂账,实操全攻略</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/c2191549965396b.jpeg" alt="安康档案管理软件选对有多香?踩过坑的过来人给你说实在真话"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47246.html" title="安康档案管理软件选对有多香?踩过坑的过来人给你说实在真话">安康档案管理软件选对有多香?踩过坑的过来人给你说实在真话</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202608/de95eab654696c9.jpeg" alt="普通职场人快速上手:档案整理全套实操步骤指南"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/dazs/47245.html" title="普通职场人快速上手:档案整理全套实操步骤指南">普通职场人快速上手:档案整理全套实操步骤指南</a> <span>2026年06月29日 20:50:03</span> </div> </li> </ul> </div> <div class="sidebar-module andaliandongq148-vzlz-3p3m"> <div class="sidebar-title andaliandonghu9y-azrj-9kua">行业资讯</div> <ul class="sidebar-latest andaliandong3a79-bnla-6e82"> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/3dfdd352307ee05.jpeg" alt="档案整理收费依据是什么?2026年最新规范及收费标准详解"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44391.html" title="档案整理收费依据是什么?2026年最新规范及收费标准详解">档案整理收费依据是什么?2026年最新规范及收费标准详解</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/ca94980e7887de7.jpeg" alt="学校档案数字化要是收集不齐全,这么处理最靠谱"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44389.html" title="学校档案数字化要是收集不齐全,这么处理最靠谱">学校档案数字化要是收集不齐全,这么处理最靠谱</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/755dd3c1ab5a5.jpeg" alt="档案制度建设贯彻不到位?企业行政必看的3个整改干货"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44387.html" title="档案制度建设贯彻不到位?企业行政必看的3个整改干货">档案制度建设贯彻不到位?企业行政必看的3个整改干货</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/1c57bfeea1cbce0.jpeg" alt="档案数字化能提高工作便捷性"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44385.html" title="档案数字化能提高工作便捷性">档案数字化能提高工作便捷性</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/07fcdd731fc5c38.jpeg" alt="【档案整理解密规范】普通人也能上手的档案整理实操方案"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44383.html" title="【档案整理解密规范】普通人也能上手的档案整理实操方案">【档案整理解密规范】普通人也能上手的档案整理实操方案</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/1168c2ddb26c92a.jpeg" alt="关于档案制度建设监督委员会权威的实用分享"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/xyzx/44381.html" title="关于档案制度建设监督委员会权威的实用分享">关于档案制度建设监督委员会权威的实用分享</a> <span>2026年06月29日 20:50:03</span> </div> </li> </ul> </div> <div class="sidebar-module andaliandongq148-vzlz-3p3m"> <div class="sidebar-title andaliandonghu9y-azrj-9kua">产品动态</div> <ul class="sidebar-latest andaliandong3a79-bnla-6e82"> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/8ba5fbe93807a26.jpeg" alt="学生成绩档案数字化怎么落地?校园效率提升的实用操作指南"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44401.html" title="学生成绩档案数字化怎么落地?校园效率提升的实用操作指南">学生成绩档案数字化怎么落地?校园效率提升的实用操作指南</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/436713be7033bd.jpeg" alt="通用设备制造企业档案数字化建设的核心策略与实践路径"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44400.html" title="通用设备制造企业档案数字化建设的核心策略与实践路径">通用设备制造企业档案数字化建设的核心策略与实践路径</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/b2831d9af424efa.jpeg" alt="天津档案管理软件怎么选?避开这3个坑少花冤枉钱"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44399.html" title="天津档案管理软件怎么选?避开这3个坑少花冤枉钱">天津档案管理软件怎么选?避开这3个坑少花冤枉钱</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/8a56a5c6429bb55.jpeg" alt="住建部门专用档案管理软件的选型及落地应用指南"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44398.html" title="住建部门专用档案管理软件的选型及落地应用指南">住建部门专用档案管理软件的选型及落地应用指南</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/86bf3936290212f.jpeg" alt="数字档案馆系统收费标准按使用时间"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44397.html" title="数字档案馆系统收费标准按使用时间">数字档案馆系统收费标准按使用时间</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202607/a8cb25eb7837aa9.jpeg" alt="数字档案馆系统公司怎么挑?老司机带你避坑"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/cpdt/44396.html" title="数字档案馆系统公司怎么挑?老司机带你避坑">数字档案馆系统公司怎么挑?老司机带你避坑</a> <span>2026年06月29日 20:50:03</span> </div> </li> </ul> </div> <div class="sidebar-module andaliandongq148-vzlz-3p3m"> <div class="sidebar-title andaliandonghu9y-azrj-9kua">官方公告</div> <ul class="sidebar-latest andaliandong3a79-bnla-6e82"> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/594ee52fb294651.jpeg" alt="档案数字化网络安全体系构建与实施指南"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40802.html" title="档案数字化网络安全体系构建与实施指南">档案数字化网络安全体系构建与实施指南</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/63c834dd7ceeca1.jpeg" alt="学校档案数字化:别等要用时才追悔莫及"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40799.html" title="学校档案数字化:别等要用时才追悔莫及">学校档案数字化:别等要用时才追悔莫及</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/51a7dccfd3ae37d.jpeg" alt="告别繁琐检索:文书档案管理系统界面设计如何重塑办公效率与用户体验"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40797.html" title="告别繁琐检索:文书档案管理系统界面设计如何重塑办公效率与用户体验">告别繁琐检索:文书档案管理系统界面设计如何重塑办公效率与用户体验</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/4b1faa6cdf1d317.jpeg" alt="数字档案馆系统钢铁版本地部署实操全流程指南"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40794.html" title="数字档案馆系统钢铁版本地部署实操全流程指南">数字档案馆系统钢铁版本地部署实操全流程指南</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/c86031e78253b4.jpeg" alt="文书档案系统招标:从技术选型到实操部署"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40792.html" title="文书档案系统招标:从技术选型到实操部署">文书档案系统招标:从技术选型到实操部署</a> <span>2026年06月29日 20:50:03</span> </div> </li> <li> <img class="latest-img andaliandongbdxn-vczf-e501" src="https://andaliandong.cn/uploadfile/allimg/202606/d82c5e43e27fcc5.jpeg" alt="解析档案数字化规范化发展趋势:从零散存储到标准合规体系建设"> <div class="latest-content andaliandonggi2d-qrpg-d7f0"> <a href="https://andaliandong.cn/gfgg/40789.html" title="解析档案数字化规范化发展趋势:从零散存储到标准合规体系建设">解析档案数字化规范化发展趋势:从零散存储到标准合规体系建设</a> <span>2026年06月29日 20:50:03</span> </div> </li> </ul> </div> </div> </div> <footer> <div class="footer h5-show andaliandongymtf-ahrb-jask"> <div style="text-align: center"> <h1> 专业的档案管理系统 </h1> <h1 style="margin-bottom:30px;margin-top:10px;"> 解决档案管理难题 </h1> <a class="flex-c-b-group andaliandongqavc-fxbw-hsoo" href="/offer/"> 立即体验 </a> </div> <div class="h5-link h5-show andaliandong41vg-rjfg-yjhg"> <div class="h5-link-switcher andaliandong3xis-vfzr-2ldh" data-main="product"> <div style="pointer-events: none;"> 产品中心 </div> <div class="arrow-right andaliandongumbb-ipwm-sg01" style="pointer-events: none;"> </div> </div><div class="h5-link-sub andaliandongu5f0-pkdm-7zha" style="display: none"> <div data-main="product" data-route="main"> <a href="/main/"> 数字档案馆 </a> </div> <div data-main="product" data-route="archive"> <a href="/archive/"> 档案系统精简版 </a> </div> <div data-main="product" data-route="cs"> <a href="/cs/"> 档案系统C/S版 </a> </div> <div data-main="product" data-route="alone"> <a href="/alone/"> 单机版 </a> </div> <div data-main="product" data-route="ocr"> <a href="/ocr/"> OCR著录系统 </a> </div> <div data-main="product" data-route="serve"> <a href="/serve/"> 档案整理与数字化服务 </a> </div> </div> <div data-main="solution" data-route="offer"> <a href="/offer/"> 获取解决方案与报价 </a> </div> <div data-main="solution" data-route="case"> <a href="/case/"> 行业案例 </a> </div> <div data-route="news"> <a href="/post/"> 信息中心 </a> </div> <div data-route="about"> <a href="/about/"> 关于我们 </a> </div> <div class="footer-info andaliandongnml1-jurt-4wu1"> <div> 全国售前咨询 </div> <h1> 028-85154420 </h1> <h1> 15388110056 </h1> <img alt="安答联动微信公众号二维码" src="/style/img/assets/wx@2x.png" style="width: 105px; margin-bottom: 10px"/> <p> 微信扫一扫关注安答联动 </p> </div> </div> </div> <div class="footer app-mid h5-none andaliandonguyvc-zauy-024u"> <div class="flex-c-b andaliandong5ze6-raad-dh6h" style="height: 160px;"> <h1> 专业的档案管理系统,解决档案管理难题 </h1> <a class="flex-c-b-group andaliandongqavc-fxbw-hsoo" href="/offer/"> 立即体验 </a> </div> <div class="footer-info flex-c-b andaliandongawt8-fncn-mbax"> <div style="display: flex; gap: 30px;"> <div class="footer-info-item andaliandongc7bc-uxbm-bqqg"> <div> 产品中心 </div> <p data-main="product" data-route="main"> <a href="/main/"> 数字档案馆 </a> </p> <p data-main="product" data-route="archive"> <a href="/archive/"> 档案系统精简版 </a> </p> <p data-main="product" data-route="cs"> <a href="/cs/"> 档案系统C/S版 </a> </p> <p data-main="product" data-route="alone"> <a href="/alone/"> 单机版 </a> </p> <p data-main="product" data-route="ocr"> <a href="/ocr/"> 智能档案著录 </a> </p> </div> <div class="footer-info-item andaliandongc7bc-uxbm-bqqg"> <div> 信息中心 </div> <p data-main="product" data-route="main"> <a href="/dazs/"> 档案知识 </a> </p> <p data-main="product" data-route="archive"> <a href="/xyzx/"> 行业资讯 </a> </p> <p data-main="product" data-route="cs"> <a href="/cpdt/"> 产品动态 </a> </p> <p data-main="product" data-route="alone"> <a href="/gfgg/"> 官方公告 </a> </p> </div> <div class="footer-info-item andaliandongc7bc-uxbm-bqqg"> <div> 关于我们 </div> <p data-main="solution" data-route="offer"> <a href="/offer/"> 联系我们 </a> </p> <p data-route="about"> <a href="/about/"> 关于我们 </a> </p> </div> </div> <div class="footer-info-item andaliandongc7bc-uxbm-bqqg"> <div> 全国售前咨询 </div> <div style="display: flex; align-items: center; gap: 5px;"> <svg height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M424.442312 600.491705c63.047972 64.730226 138.018008 117.026398 221.984449 147.818969l114.027596-92.377713c5.997603-6.143886 14.994007-6.143886 23.990412 0l209.916101 138.60314c27.062355 18.504799 39.05756 55.441256 21.064752 83.161885a23.770987 23.770987 0 0 1-11.995206 12.287771l-98.960448 98.594741c-29.988015 27.720628-69.045575 40.0084-108.029993 33.864514-191.996434-40.081541-371.997663-138.60314-512.941331-277.206281A1019.226786 1019.226786 0 0 1 1.465024 230.980853a136.62832 136.62832 0 0 1 32.913675-110.882512L136.557373 18.431658a56.97722 56.97722 0 0 1 84.039582 0c5.997603 3.145084 8.996404 9.28897 11.995205 12.360913l137.944867 212.476054c5.997603 6.143886 5.997603 15.359715 0 24.648685L277.501041 381.871765a633.624804 633.624804 0 0 0 147.014412 218.693082z" fill="currentColor"> </path> </svg> <span> 028-85154420 </span> </div> <div style="display: flex; align-items: center; gap: 5px;"> <svg height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M424.442312 600.491705c63.047972 64.730226 138.018008 117.026398 221.984449 147.818969l114.027596-92.377713c5.997603-6.143886 14.994007-6.143886 23.990412 0l209.916101 138.60314c27.062355 18.504799 39.05756 55.441256 21.064752 83.161885a23.770987 23.770987 0 0 1-11.995206 12.287771l-98.960448 98.594741c-29.988015 27.720628-69.045575 40.0084-108.029993 33.864514-191.996434-40.081541-371.997663-138.60314-512.941331-277.206281A1019.226786 1019.226786 0 0 1 1.465024 230.980853a136.62832 136.62832 0 0 1 32.913675-110.882512L136.557373 18.431658a56.97722 56.97722 0 0 1 84.039582 0c5.997603 3.145084 8.996404 9.28897 11.995205 12.360913l137.944867 212.476054c5.997603 6.143886 5.997603 15.359715 0 24.648685L277.501041 381.871765a633.624804 633.624804 0 0 0 147.014412 218.693082z" fill="currentColor"> </path> </svg> <span> 15388110056 </span> </div> <img alt="安答联动微信公众号二维码" src="/style/img/assets/wx@2x.png" style="width: 120px;"/> <p> 微信扫一扫关注安答联动 </p> </div> </div> <div class="footer-copy andaliandongbuj3-vihj-6l83"> <p>Copyright © 2001-2022 Anda Network All Rights Reserved. <img src="/style/img/assets/record@2x.png" style="width: 20px; vertical-align: middle;"> 蜀ICP备18019337号-2</p> <p style="margin-top: 10px">版权所有:安答联动科技股份有限公司 地址:中国(四川)自由贸易试验区成都高新区益州大道中段888号1栋16层1610号</p> </div> </div> </footer> <div class="app-aside andaliandongqnog-yyzn-l8zb"> <div class="h5-none andaliandong0lnn-qhbo-cgod" id="ai-open"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M884.992 38.4c68.6336 0 124.288 52.992 124.288 118.4V709.376c0 65.3824-55.6544 118.4-124.3136 118.4h-236.1344l-238.208 151.2448a43.2128 43.2128 0 0 1-39.3984 3.3536 39.8592 39.8592 0 0 1-24.3968-29.6448l-0.5888-6.5536v-118.4H139.008c-64.0256 0-117.6064-46.336-123.7504-107.0336l-0.5632-11.3664V156.8C14.72 91.4176 70.3744 38.4 139.008 38.4h745.9328z m7.6288 75.264H131.3792c-23.3472 0-42.2912 17.9712-42.2912 40.1408v562.0992c0 22.1696 18.944 40.1664 42.2912 40.1664h253.7472c23.3472 0 42.2912 17.9712 42.2912 40.1408v85.4272l188.032-118.8352c4.608-2.9184 9.7792-4.9152 15.232-5.9392l8.192-0.7936h253.7472c23.3472 0 42.2912-17.9968 42.2912-40.1664V153.8048c0-22.1696-18.944-40.1664-42.2912-40.1664z" p-id="6614"> </path> <path d="M309.5552 628.7104c19.9168 0 30.976-10.24 38.7328-36.2496l21.0176-64.1792h132.5312l21.2992 64.1792c7.4752 25.728 19.072 36.2496 39.2704 36.2496 21.3248 0 35.4304-12.7232 35.4304-32.64 0-7.7568-1.9456-16.896-5.8112-28.7744l-95.1808-272.7936c-11.904-35.4048-28.4928-49.792-59.7504-49.792-31.5392 0-48.4096 14.6688-60.3136 49.792L281.6 567.296c-4.6848 14.08-6.6304 22.6816-6.6304 30.1568 0 18.7904 14.1056 31.232 34.56 31.232z m76.3648-156.032l48.128-152.7296h3.584l47.872 152.7296h-99.584zM688.5632 628.1472c23.5264 0 37.0688-14.9248 37.0688-40.3968V285.3632c0-25.4464-13.824-40.3712-37.3248-40.3712-23.808 0-37.376 14.9248-37.376 40.3712V587.776c0 25.472 13.824 40.3968 37.632 40.3968z" p-id="6615"> </path> </svg> <div> AI咨询 </div> </div> <div class="h5-none andaliandong0lnn-qhbo-cgod"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M839.78836 114.981775C742.26455 49.965902 623.068783 25.885949 504.475015 46.955908c-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935 1.203998 7.223986 5.417989 13.845973 11.437978 18.661964 6.019988 4.213992 13.845973 6.019988 21.069959 4.815991 104.145797-18.059965 208.893592 2.407995 294.377425 59.597884 85.483833 56.587889 141.469724 141.469724 158.92769 238.993533 2.407995 13.845973 14.447972 23.477954 28.293945 23.477954 1.805996 0 3.009994 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935C1003.53204 278.123457 938.516167 179.997648 839.78836 114.981775z" p-id="2840"> </path> <path d="M530.360964 245.013521c60.801881-10.835979 121.603762 1.203998 171.569665 34.313933 49.363904 32.507937 81.87184 81.87184 92.10582 138.45973 2.407995 13.845973 14.447972 23.477954 28.293945 23.477954 1.805996 0 3.009994 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935-12.641975-72.239859-54.179894-134.847737-116.787772-175.783657-62.005879-40.93592-137.857731-56.587889-212.505585-43.343915-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935C500.261023 237.187537 514.708995 248.023516 530.360964 245.013521z" p-id="2841"> </path> <path d="M886.744268 676.646678c-30.70194-21.671958-62.607878-41.537919-90.901822-55.985891-45.751911-24.079953-66.219871-27.089947-77.05585-27.089947-23.477954 0-43.945914 12.039976-60.199882 36.119929-10.23398 15.049971-18.059965 32.507937-25.283951 49.363904-3.611993 7.825985-9.631981 22.875955-14.447972 30.70194-9.029982-3.009994-30.70194-12.039976-69.229865-38.527925-37.925926-25.885949-79.463845-59.597884-110.767784-90.299824-30.70194-31.303939-64.413874-72.841858-90.299824-111.369782-26.487948-39.129924-35.517931-60.199882-38.527925-69.229865 7.825985-4.815991 22.273956-10.835979 31.303939-15.049971 16.855967-7.223986 34.313933-15.049971 48.761905-25.283951 23.477954-16.253968 35.517931-36.721928 35.517931-60.199882 0-11.437978-3.009994-31.303939-27.089947-77.657848-14.447972-27.691946-34.313933-60.199882-55.985891-90.901822-16.253968-22.875955-40.333921-55.985891-66.219871-82.473839-30.099941-31.303939-52.975897-45.149912-75.249853-45.149912-51.1699 0-107.155791 68.025867-129.429747 96.921811C50.567901 130.031746 0 204.6796 0 275.715461c0 66.219871 43.343915 151.101705 80.065844 210.699588 48.761905 78.861846 115.583774 164.345679 189.027631 239.595532l24.079953 24.079953c75.249853 73.443857 160.131687 140.867725 238.993533 189.62963 59.597884 36.721928 143.877719 80.065844 210.09759 80.065844 71.035861 0 145.683715-50.567901 174.579659-72.239859 28.895944-21.671958 96.921811-78.259847 96.921811-129.429747 0-22.273956-13.845973-45.751911-45.149912-75.851852C942.730159 717.582598 909.620223 692.900647 886.744268 676.646678zM267.889477 340.129336c-22.273956 15.049971-33.109935 33.109935-32.507937 54.781893 0 9.631981 1.203998 39.129924 52.975897 115.583774 28.293945 41.537919 65.015873 87.28983 99.329806 122.205761 34.313933 33.109935 79.463845 70.433862 121.001764 98.727807 76.453851 52.373898 105.951793 52.975897 116.787772 52.975897 21.069959 0 39.129924-11.437978 53.577895-33.109935 8.427984-12.641975 15.651969-28.895944 21.671958-43.945914 4.815991-11.437978 10.23398-23.477954 15.049971-31.905938 2.407995-4.213992 4.213992-6.621987 5.417989-7.825985 5.417989 1.203998 17.457966 5.417989 40.333921 17.457966 23.477954 12.641975 51.771899 29.497942 78.259847 48.159906 66.219871 45.751911 93.911817 77.05585 100.533804 87.28983-1.805996 3.611993-6.019988 11.437978-16.253968 23.477954-13.243974 15.651969-32.507937 32.507937-52.975897 48.159906-46.955908 34.915932-95.115814 55.383892-128.22575 55.383892-37.925926 0-100.533804-25.283951-171.569665-69.229865-74.045855-45.751911-154.713698-109.563786-226.351558-179.39565l-22.875955-23.477954c-69.831864-71.63786-133.643739-152.305703-179.39565-226.953557-43.945914-71.63786-69.229865-134.245738-69.229865-172.171664 0-33.711934 20.46796-81.269841 55.383892-128.827748 15.049971-21.069959 32.507937-39.731922 47.557907-52.975897 12.039976-10.23398 19.865961-15.049971 23.477954-16.253968 10.23398 6.621987 41.537919 34.313933 87.28983 100.533804 18.661964 27.089947 35.517931 55.383892 48.159906 78.861846 12.039976 22.875955 16.253968 34.915932 17.457966 40.333921-1.203998 1.203998-3.611993 3.009994-7.825985 5.417989-9.029982 5.417989-21.069959 10.835979-33.109935 15.651969C296.183422 325.079365 281.133451 331.701352 267.889477 340.129336z" p-id="2842"> </path> <path d="M508.689006 382.269253c6.019988 4.213992 13.845973 6.019988 21.069959 4.815991 30.70194-5.417989 61.40388 0.601999 86.687831 17.457966 24.681952 16.253968 40.93592 40.93592 45.751911 69.229865 2.407995 13.845973 14.447972 23.477954 27.691946 23.477954 1.805996 0 3.611993 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935-7.825985-43.945914-33.109935-81.87184-71.035861-106.553792-37.323927-24.681952-83.075838-34.313933-128.22575-25.885949-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935C498.455026 371.433275 502.669018 378.055262 508.689006 382.269253z" p-id="2843"> </path> </svg> <div> 热线电话 </div> <div class="overlay andaliandong296s-wikm-6q0l"> <div> <h4> 028-85154420 </h4> <h4> 15388110056 </h4> <p> 全国售前咨询电话 </p> </div> </div> </div> <div class="h5-none andaliandong0lnn-qhbo-cgod"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M928.016126 543.908618 95.983874 543.908618c-17.717453 0-31.994625-14.277171-31.994625-31.994625S78.26642 479.919368 95.983874 479.919368l832.032253 0c17.717453 0 31.994625 14.277171 31.994625 31.994625S945.73358 543.908618 928.016126 543.908618z" p-id="3852"> </path> <path d="M832.032253 928.016126 639.892491 928.016126c-17.717453 0-31.994625-14.277171-31.994625-31.994625s14.277171-31.994625 31.994625-31.994625l191.967747 0c17.717453 0 31.994625-14.277171 31.994625-31.994625l0-159.973123c0-17.717453 14.277171-31.994625 31.994625-31.994625s31.994625 14.277171 31.994625 31.994625l0 159.973123C928.016126 884.840585 884.840585 928.016126 832.032253 928.016126z" p-id="3853"> </path> <path d="M351.94087 928.016126l-159.973123 0c-52.980346 0-95.983874-43.003528-95.983874-95.983874l0-159.973123c0-17.717453 14.277171-31.994625 31.994625-31.994625S159.973123 654.341676 159.973123 672.05913l0 159.973123c0 17.717453 14.449185 31.994625 31.994625 31.994625l159.973123 0c17.717453 0 31.994625 14.277171 31.994625 31.994625C383.935495 913.738955 369.658324 928.016126 351.94087 928.016126z" p-id="3854"> </path> <path d="M127.978498 383.935495c-17.717453 0-31.994625-14.277171-31.994625-31.994625l0-159.973123c0-52.980346 43.003528-95.983874 95.983874-95.983874l159.973123 0c17.717453 0 31.994625 14.277171 31.994625 31.994625S369.658324 159.973123 351.94087 159.973123l-159.973123 0c-17.545439 0-31.994625 14.449185-31.994625 31.994625l0 159.973123C159.973123 369.658324 145.695952 383.935495 127.978498 383.935495z" p-id="3855"> </path> <path d="M896.021502 383.935495c-17.717453 0-31.994625-14.277171-31.994625-31.994625l0-159.973123c0-17.545439-14.277171-31.994625-31.994625-31.994625L639.892491 159.973123c-17.717453 0-31.994625-14.277171-31.994625-31.994625s14.277171-31.994625 31.994625-31.994625l191.967747 0c52.980346 0 95.983874 43.003528 95.983874 95.983874l0 159.973123C928.016126 369.658324 913.738955 383.935495 896.021502 383.935495z" p-id="3856"> </path> </svg> <div> 扫码咨询 </div> <div class="overlay andaliandong296s-wikm-6q0l"> <div> <img alt="安答联动微信公众号二维码" src="/style/img/assets/wx@2x.png" style="width: 120px;"/> <p> 微信扫码关注安答联动 </p> </div> </div> </div> <a class="h5-none andaliandong0lnn-qhbo-cgod" href="/offer/"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M336.016 553.776l0.16-0.16L761.68 114.976c12.016-12.224 28.4-18.976 46.24-18.976 20.368 0 40.768 8.88 55.952 24.512l40.336 41.584c15.104 15.456 23.808 36.384 23.808 57.392 0 18.464-6.56 35.424-18.432 47.648L483.248 706.448a2.736 2.736 0 0 1-1.536 0.896l-0.336 0.096-0.272-0.096-161.376 44.816a24 24 0 0 1-22.944-6.064 25.12 25.12 0 0 1-6.144-23.728L334.4 557.024a3.36 0 0 1 0.608-0.96l0.32-0.528a5.12 0 0 0 0.608-1.488l0.08-0.272zM830.672 154.8c-9.216-9.216-24.224-10.112-32.24-1.92L754.16 198.4l73.792 77.28 45.04-46.336c3.584-3.68 5.456-8.608 5.712-14.592 0-6.672-2.816-13.36-7.68-18.368l-40.352-41.584z m-427.68 405.648l74.368 76.656 312.368-321.792-73.872-77.36-312.88 322.496z m-56.144 133.872l93.568-26.368-68.16-70.32-25.408 96.688zM903.12 412c13.712 0 24.88 11.424 24.88 25.488V836.96c0 48.448-38.528 87.904-85.824 87.904H181.824C134.528 924.88 96 885.408 96 836.96V183.904C96 135.392 134.528 96 181.824 96h424.16c13.712 0 24.864 11.44 24.864 25.488 0 14.08-11.152 25.504-24.88 25.504H186.208c-22.16 0-40.176 18.464-40.176 41.152v644.256c0 22.704 18.016 41.168 40.16 41.168h651.84c22.176 0 40.192-18.464 40.192-41.168V437.728c0-14.224 11.168-25.728 24.896-25.728z"> </path> </svg> <div> 申请试用 </div> </a> <a class="h5-show andaliandong368n-pphs-wttp" href="tel:15388110056"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M839.78836 114.981775C742.26455 49.965902 623.068783 25.885949 504.475015 46.955908c-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935 1.203998 7.223986 5.417989 13.845973 11.437978 18.661964 6.019988 4.213992 13.845973 6.019988 21.069959 4.815991 104.145797-18.059965 208.893592 2.407995 294.377425 59.597884 85.483833 56.587889 141.469724 141.469724 158.92769 238.993533 2.407995 13.845973 14.447972 23.477954 28.293945 23.477954 1.805996 0 3.009994 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935C1003.53204 278.123457 938.516167 179.997648 839.78836 114.981775z" p-id="2840"> </path> <path d="M530.360964 245.013521c60.801881-10.835979 121.603762 1.203998 171.569665 34.313933 49.363904 32.507937 81.87184 81.87184 92.10582 138.45973 2.407995 13.845973 14.447972 23.477954 28.293945 23.477954 1.805996 0 3.009994 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935-12.641975-72.239859-54.179894-134.847737-116.787772-175.783657-62.005879-40.93592-137.857731-56.587889-212.505585-43.343915-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935C500.261023 237.187537 514.708995 248.023516 530.360964 245.013521z" p-id="2841"> </path> <path d="M886.744268 676.646678c-30.70194-21.671958-62.607878-41.537919-90.901822-55.985891-45.751911-24.079953-66.219871-27.089947-77.05585-27.089947-23.477954 0-43.945914 12.039976-60.199882 36.119929-10.23398 15.049971-18.059965 32.507937-25.283951 49.363904-3.611993 7.825985-9.631981 22.875955-14.447972 30.70194-9.029982-3.009994-30.70194-12.039976-69.229865-38.527925-37.925926-25.885949-79.463845-59.597884-110.767784-90.299824-30.70194-31.303939-64.413874-72.841858-90.299824-111.369782-26.487948-39.129924-35.517931-60.199882-38.527925-69.229865 7.825985-4.815991 22.273956-10.835979 31.303939-15.049971 16.855967-7.223986 34.313933-15.049971 48.761905-25.283951 23.477954-16.253968 35.517931-36.721928 35.517931-60.199882 0-11.437978-3.009994-31.303939-27.089947-77.657848-14.447972-27.691946-34.313933-60.199882-55.985891-90.901822-16.253968-22.875955-40.333921-55.985891-66.219871-82.473839-30.099941-31.303939-52.975897-45.149912-75.249853-45.149912-51.1699 0-107.155791 68.025867-129.429747 96.921811C50.567901 130.031746 0 204.6796 0 275.715461c0 66.219871 43.343915 151.101705 80.065844 210.699588 48.761905 78.861846 115.583774 164.345679 189.027631 239.595532l24.079953 24.079953c75.249853 73.443857 160.131687 140.867725 238.993533 189.62963 59.597884 36.721928 143.877719 80.065844 210.09759 80.065844 71.035861 0 145.683715-50.567901 174.579659-72.239859 28.895944-21.671958 96.921811-78.259847 96.921811-129.429747 0-22.273956-13.845973-45.751911-45.149912-75.851852C942.730159 717.582598 909.620223 692.900647 886.744268 676.646678zM267.889477 340.129336c-22.273956 15.049971-33.109935 33.109935-32.507937 54.781893 0 9.631981 1.203998 39.129924 52.975897 115.583774 28.293945 41.537919 65.015873 87.28983 99.329806 122.205761 34.313933 33.109935 79.463845 70.433862 121.001764 98.727807 76.453851 52.373898 105.951793 52.975897 116.787772 52.975897 21.069959 0 39.129924-11.437978 53.577895-33.109935 8.427984-12.641975 15.651969-28.895944 21.671958-43.945914 4.815991-11.437978 10.23398-23.477954 15.049971-31.905938 2.407995-4.213992 4.213992-6.621987 5.417989-7.825985 5.417989 1.203998 17.457966 5.417989 40.333921 17.457966 23.477954 12.641975 51.771899 29.497942 78.259847 48.159906 66.219871 45.751911 93.911817 77.05585 100.533804 87.28983-1.805996 3.611993-6.019988 11.437978-16.253968 23.477954-13.243974 15.651969-32.507937 32.507937-52.975897 48.159906-46.955908 34.915932-95.115814 55.383892-128.22575 55.383892-37.925926 0-100.533804-25.283951-171.569665-69.229865-74.045855-45.751911-154.713698-109.563786-226.351558-179.39565l-22.875955-23.477954c-69.831864-71.63786-133.643739-152.305703-179.39565-226.953557-43.945914-71.63786-69.229865-134.245738-69.229865-172.171664 0-33.711934 20.46796-81.269841 55.383892-128.827748 15.049971-21.069959 32.507937-39.731922 47.557907-52.975897 12.039976-10.23398 19.865961-15.049971 23.477954-16.253968 10.23398 6.621987 41.537919 34.313933 87.28983 100.533804 18.661964 27.089947 35.517931 55.383892 48.159906 78.861846 12.039976 22.875955 16.253968 34.915932 17.457966 40.333921-1.203998 1.203998-3.611993 3.009994-7.825985 5.417989-9.029982 5.417989-21.069959 10.835979-33.109935 15.651969C296.183422 325.079365 281.133451 331.701352 267.889477 340.129336z" p-id="2842"> </path> <path d="M508.689006 382.269253c6.019988 4.213992 13.845973 6.019988 21.069959 4.815991 30.70194-5.417989 61.40388 0.601999 86.687831 17.457966 24.681952 16.253968 40.93592 40.93592 45.751911 69.229865 2.407995 13.845973 14.447972 23.477954 27.691946 23.477954 1.805996 0 3.611993 0 4.815991-0.601999 15.651969-3.009994 25.885949-17.457966 22.875955-33.109935-7.825985-43.945914-33.109935-81.87184-71.035861-106.553792-37.323927-24.681952-83.075838-34.313933-128.22575-25.885949-15.651969 3.009994-25.885949 17.457966-22.875955 33.109935C498.455026 371.433275 502.669018 378.055262 508.689006 382.269253z" p-id="2843"> </path> </svg> <div> 热线电话 </div> </a> <a class="h5-show andaliandong368n-pphs-wttp" href="/offer/"> <svg fill="currentColor" height="1em" viewbox="0 0 1024 1024" width="1em"> <path d="M336.016 553.776l0.16-0.16L761.68 114.976c12.016-12.224 28.4-18.976 46.24-18.976 20.368 0 40.768 8.88 55.952 24.512l40.336 41.584c15.104 15.456 23.808 36.384 23.808 57.392 0 18.464-6.56 35.424-18.432 47.648L483.248 706.448a2.736 2.736 0 0 1-1.536 0.896l-0.336 0.096-0.272-0.096-161.376 44.816a24 24 0 0 1-22.944-6.064 25.12 25.12 0 0 1-6.144-23.728L334.4 557.024a3.36 0 0 1 0.608-0.96l0.32-0.528a5.12 0 0 0 0.608-1.488l0.08-0.272zM830.672 154.8c-9.216-9.216-24.224-10.112-32.24-1.92L754.16 198.4l73.792 77.28 45.04-46.336c3.584-3.68 5.456-8.608 5.712-14.592 0-6.672-2.816-13.36-7.68-18.368l-40.352-41.584z m-427.68 405.648l74.368 76.656 312.368-321.792-73.872-77.36-312.88 322.496z m-56.144 133.872l93.568-26.368-68.16-70.32-25.408 96.688zM903.12 412c13.712 0 24.88 11.424 24.88 25.488V836.96c0 48.448-38.528 87.904-85.824 87.904H181.824C134.528 924.88 96 885.408 96 836.96V183.904C96 135.392 134.528 96 181.824 96h424.16c13.712 0 24.864 11.44 24.864 25.488 0 14.08-11.152 25.504-24.88 25.504H186.208c-22.16 0-40.176 18.464-40.176 41.152v644.256c0 22.704 18.016 41.168 40.16 41.168h651.84c22.176 0 40.192-18.464 40.192-41.168V437.728c0-14.224 11.168-25.728 24.896-25.728z"> </path> </svg> <div> 申请试用 </div> </a> </div> <div class="app-aside-ai h5-none andaliandongyjcg-rcnt-rviz"> <div class="app-ai-nav flex-c-b andaliandong3q5t-sfxb-pdqk"> <h3> 安答联动档案管理系统 </h3> <div class="app-ai-btn flex-c andaliandongkwid-hlfl-4fzp" id="ai-close"> <svg fill="currentColor" height="1em" p-id="2610" viewbox="0 0 1024 1024" width="1em"> <path d="M40.6016 40.6016a51.2 51.2 0 0 1 72.3968 0L511.232 438.784 909.4912 40.6016a51.2 51.2 0 0 1 72.3968 72.3968L583.68 511.232l398.2336 398.2592a51.2 51.2 0 0 1 2.9952 69.1456l-2.9952 3.2512a51.2 51.2 0 0 1-72.3968 0L511.232 583.68 112.9984 981.888a51.2 51.2 0 0 1-72.3968-72.3968L438.784 511.232 40.6016 112.9984a51.2 51.2 0 0 1-2.9952-69.1456z" p-id="2611"> </path> </svg> </div> </div> </div> </body> </html>