将文件中的代码使用vue3实现不要有省略只要Script 部分

时间: 2024-12-08 14:17:05 浏览: 11
PDF

vue实现五子棋游戏

要将文件中的 Vue 2 代码转换为 Vue 3 代码,并且只保留 `<script>` 部分,以下是转换后的代码: ```javascript <script setup> import { ref, reactive, toRefs, onMounted, computed, watch, nextTick } from 'vue'; import { useRouter } from 'vue-router'; import { useStore } from 'vuex'; import L from 'leaflet'; import AMapLoader from '@amap/amap-jsapi-loader'; import axios from 'axios'; // 引入组件 import UploadManyWay from '@/components/FileUpload/UploadManyWay'; import JFormContainer from '@/components/jeecg/JFormContainer'; import JSearchSelectTag from '@/components/dict/JSearchSelectTag'; import JDictSelectTag from '@/components/dict/JDictSelectTag.vue'; const router = useRouter(); const store = useStore(); const locationIcon = L.icon({ iconUrl: require('@/assets/inspection/location.svg'), iconSize: [60, 64], iconAnchor: [25, 55] }); const PAGE_SIZE = 100; const props = defineProps({ formData: { type: Object, default: () => {}, required: false, }, formBpm: { type: Boolean, default: false, required: false, }, disabled: { type: Boolean, default: false, required: false, } }); const state = reactive({ fileList: { max: 2, list: [ { itemAllowDelete: false, editWay: "3,3,3", maxSize: 10240, uploadWay: "3", param: "signPicture", title: "电子签名", type: "jpg,png,jpeg", fileName: "" }, { max: 9, editWay: "2,2,2", itemAllowDelete: false, uploadWay: "3", maxSize: 10240, param: "deed", title: "相关图片", type: "jpg,png,jpeg", list: [] } ] }, form: null, model: {}, modelSave: {}, fileFlag: false, labelCol: { xs: { span: 24 }, sm: { span: 6 } }, wrapperCol: { xs: { span: 24 }, sm: { span: 16 } }, labelOneCol: { xs: { span: 24 }, sm: { span: 3 } }, wrapperOneCol: { xs: { span: 24 }, sm: { span: 20 } }, confirmLoading: false, gisInspectionEquipmentTypeId: '', validatorRules: { equipmentNumber: { rules: [{ pattern: /^.{1,200}$/, message: '字数200字以内' }] }, name: { rules: [ { required: true, message: '设备名称不得为空!' }, { pattern: /^[\u4e00-\u9fa5A-Za-z0-9\-_()()\/]{1,64}$/, message: '字数64字以内,仅支持中文、字母、数字、-、_、括号和/' } ] }, gisInspectionEquipmentTypeId: { rules: [ { required: true, message: '设备类型不得为空!' } ] }, status: { rules: [{ required: true, message: '设备状态不得为空!' }] }, manufacturer: { rules: [{ pattern: /^.{1,64}$/, message: '字数64字以内' }] }, responsiblePerson: { rules: [{ pattern: /^[\u4e00-\u9fa5]{1,64}$/, message: '字数64字以内,仅文字' }] }, address: { rules: [ { required: true, message: '设备位置不得为空!' }, { max: 120, message: '字数120字以内' } ] }, longitude: { rules: [{ required: true, message: '经度不得为空!' }] }, latitude: { rules: [{ required: true, message: '纬度不得为空!' }] }, }, url: { add: '/web/gisInspectionEquipment/add', edit: '/web/gisInspectionEquipment/edit', queryById: '/web/gisInspectionEquipment/queryById', getPipelines: '/web/gisInspectionPipeline/getSuperiorPipelines', }, treeAllData: [], treeSiteData: [], gisInspectionList: [], valKey: '1', showMapContainer: false, showSearchInput: false, rightVisible: false, visibleTemp: 0, addrFormInput: '', addrMarkerGroup: [], markersGroup: '', pipelineList: [], treeData: [], path: process.env.VUE_APP_API_BASE_URL, list: [], type: '', isSubmitToServer: true, leafletMap: null, formValues: {}, }); const { form, model, modelSave, fileList, labelCol, wrapperCol, labelOneCol, wrapperOneCol, confirmLoading, gisInspectionEquipmentTypeId, treeAllData, treeSiteData, valKey, showSearchInput, pipelineList, treeData, addrFormInput, addrMarkerGroup, markersGroup, rightVisible, visibleTemp, list, type, leafletMap } = toRefs(state); function gcoordTransform(lat, lng) { // 实现坐标变换函数 } function gcoordTransGCJ02ToWGS84(coord) { // 实现坐标变换函数 } async function openNew(type, record, isGetDataFromServer = false, isSubmitToServer = true) { state.isSubmitToServer = isSubmitToServer; state.fileList.list[1].list = []; if (!isGetDataFromServer) { open(type, record); return; } state.confirmLoading = true; const response = await axios.post('/web/gisInspectionEquipment/queryById', { id: record.id }); state.confirmLoading = false; if (response.data.success) { state.open(type, { ...response.data.result, ...record }); } else { state.open(type, record); } } function open(type, record) { state.list = []; state.type = type; state.form?.resetFields(); state.valKey = '1'; state.fileFlag = false; state.getGisList(); state.getModel(record); state.setModelFiles(); state.handleModelSave(record); } function handleModelSave(record) { if (state.model.latitude && state.model.longitude) { const geo = gcoordTransform(state.model.latitude, state.model.longitude); state.modelSave.latitude = geo[0].toFixed(6); state.modelSave.longitude = geo[1].toFixed(6); } } function getGisList() { axios.post('/sys/dict/getDictItems/gis_pipe_network_equipment_type,name,id,del_flag=0').then(response => { if (response.data.success) { state.gisInspectionList = response.data.result; } }); } async function getDevicesInfoById(id) { state.confirmLoading = true; const response = await axios.post('/web/gisInspectionEquipment/queryById', { id: id }); state.confirmLoading = false; if (response.data.success) { state.currentDevice = response.data.result; } } function setModelFiles() { if (!state.model.fileList) { state.getFileList(); } else { try { state.model.fileList = JSON.parse(state.model.fileList); } catch (e) { state.model.fileList = state.model.fileList; } if (state.type === 'info' && state.model.fileList && state.model.fileList.list && state.model.fileList.list.length >= 1) { if (state.model.fileList.list[state.model.fileList.list.length - 1].fileName === '') { state.model.fileList.list.pop(); } state.list = state.model.fileList.list; } state.fileFlag = true; } } function getFileList() { axios.post('/web/bizFileConfig/getByName?name=networkAttached').then(response => { if (response.data.success && response.data.result.length !== 0) { const jsonStr = response.data.result[0].config; state.model.fileList = JSON.parse(jsonStr); state.fileFlag = true; } else { state.model.fileList = {}; state.fileFlag = true; } }); } function submitForm() { state.form?.validate(async valid => { if (valid) { state.confirmLoading = true; let lngLat = gcoordTransGCJ02ToWGS84([state.formValues.longitude, state.formValues.latitude]); lngLat[0] = lngLat[0].toFixed(6); lngLat[1] = lngLat[1].toFixed(6); state.formValues.geometry = 'POINT(' + lngLat.join(' ') + ')'; state.treeData.forEach(item => { if (item.value === state.formValues.pipelineName) { state.formValues.pipelineIds = item.key; } }); if (state.formValues.siteCode_dictText) { state.treeSiteData.forEach(item => { if (item.value === state.formValues.siteCode_dictText) { state.formValues.siteCode = item.key; } }); } else { state.formValues.siteCode = undefined; } let formData = {}; let httpurl = ''; let method = ''; if (!state.model.id) { httpurl = state.url.add; method = 'post'; formData = { addList: [Object.assign(state.model, state.formValues)], gisInspectionEquipmentTypeId: state.formValues.gisInspectionEquipmentTypeId }; } else { httpurl = state.url.edit; method = 'put'; formData = Object.assign(state.model, state.formValues); } if (formData.fileList) { formData.fileList['list'] = state.fileList.list[1].list; } else { formData.fileList = { max: 9, list: state.fileList.list[1].list, type: 'jpg,png,jpeg' }; } if (formData.addList && formData.addList[0]) { formData.addList[0].fileList = formData.fileList; } console.log('表单提交数据', formData); if (!state.isSubmitToServer) { state.$emit('ok', formData); state.confirmLoading = false; return; } try { const response = await axios.post(httpurl, formData, { method: method }); if (response.data.success) { state.$emit('ok', formData); } } finally { state.confirmLoading = false; } } }); } watch(addrFormInput, (val) => { if (!val) { state.leafletMap?.removeLayer(state.addrMarkerGroup); } }); onMounted(() => { // 初始化地图和其他功能 initMap(); }); async function initMap() { if (!state.leafletMap) { await nextTick(); initLeafletMap(); } else { if (state.model.latitude) { let markLat = gcoordTransform(state.model.latitude, state.model.longitude); state.showMarkerIcon({ lat: markLat[0], lng: markLat[1] }); state.leafletMap.setView([state.model.latitude, state.model.longitude]); } else if (state.markersGroup) { state.leafletMap.removeLayer(state.markersGroup); } if (!state.model.latitude) { state.leafletMap.setView(store.getters.gisMapCenter); } } } function initLeafletMap() { state.leafletMap = new L.Map('mapformid', { zoom: 14, center: store.getters.gisMapCenter, boxZoom: true, zoomControl: false, doubleClickZoom: false, attributionControl: false, preferCanvas: true, }); L.control.scale({ metric: true, imperial: false, position: 'bottomright' }).addTo(state.leafletMap); L.tileLayer( '//webrd0{s}.is.autonavi.com/appmaptile?lang=zh_cn&size=1&scale=1&style=8&x={x}&y={y}&z={z}', { maxZoom: 20, maxNativeZoom: 18, minZoom: 3, attribution: '高德地图 AutoNavi.com', subdomains: '1234', } ).addTo(state.leafletMap); L.control.zoom({ zoomInTitle: '放大', zoomOutTitle: '缩小', position: 'bottomright' }).addTo(state.leafletMap); AMapLoader.load({ key: 'YOUR_AMAP_KEY', // 替换为您的实际AMap Key version: '1.4.15', plugins: ['AMap.PlaceSearch'], }).then(async (AMap) => { const placeSearch = new AMap.PlaceSearch({ map: state.leafletMap }); let autoComplete = new AMap.Autocomplete({ input: 'addrFormInput' }); autoComplete.on('select', (e) => { if (e.poi.location) { state.leafletMap.removeLayer(state.addrMarkerGroup); let latlng = [e.poi.location.lat, e.poi.location.lng]; state.leafletMap.setView(latlng); let marker = L.marker(latlng, { icon: locationIcon }); state.addrMarkerGroup = L.layerGroup([marker]); state.leafletMap.addLayer(state.addrMarkerGroup); } else { state.$message.warning('您输入的内容查询不到相关地址!'); } }); state.leafletMap.on('click', async (e) => { let siteCodeText = state.form.getFieldValue('siteCode_dictText'); if (!siteCodeText) { e.latlng.lng = e.latlng.lng.toFixed(6); e.latlng.lat = e.latlng.lat.toFixed(6); state.form.setFieldsValue({ longitude: e.latlng.lng, latitude: e.latlng.lat, }); state.showMarkerIcon(e.latlng); const address = await geocoderCalc(e.latlng.lng, e.latlng.lat); state.form.setFieldsValue({ address: address, }); } }); state.leafletMap.pm.setLang('zh'); if (state.model.latitude) { let markLat = gcoordTransform(state.model.latitude, state.model.longitude); state.showMarkerIcon({ lat: markLat[0], lng: markLat[1] }); } }); } function showMarkerIcon(latlng) { if (state.markersGroup) { state.leafletMap.removeLayer(state.markersGroup); } let marker = L.marker(latlng, { icon: locationIcon }); state.markersGroup = L.layerGroup([marker]); state.leafletMap.addLayer(state.
阅读全文

相关推荐

最新推荐

recommend-type

vue+springboot图片上传和显示的示例代码

在本文中,我们将深入探讨如何实现一个基于Vue和Spring Boot的应用程序,该应用程序支持图片的上传和显示。这个示例代码适用于那些希望在前后端分离的项目中集成类似功能的开发者。 首先,让我们关注前端部分,它...
recommend-type

Vue框架总结.pdf

每个SFC必须有`&lt;template&gt;`,`&lt;script&gt;`和`&lt;style&gt;`可根据需要省略。 组件的嵌套是Vue中实现组件间交互的重要方式。子组件可以在模板中定义,然后在父组件中导入并配置。例如: 1. 创建子组件HelloWorld.vue,包含...
recommend-type

毕业设计-线性规划模型Python代码.rar

1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、本项目仅用作交流学习参考,请切勿用于商业用途。
recommend-type

深入了解Django框架:Python中的网站开发利器

资源摘要信息:"Django 是一个高级的 Python Web 框架,它鼓励快速开发和干净、实用的设计。它负责处理 Web 开发中的许多常见任务,因此开发者可以专注于编写应用程序,而不是重复编写代码。Django 旨在遵循 DRY(Don't Repeat Yourself,避免重复自己)原则,为开发者提供了许多默认配置,这样他们就可以专注于构建功能而不是配置细节。" 知识点: 1. Django框架的定义与特点:Django是一个开源的、基于Python的高级Web开发框架。它以简洁的代码、快速开发和DRY原则而著称。Django的设计哲学是“约定优于配置”(Conventions over Configuration),这意味着它为开发者提供了一系列约定和默认设置,从而减少了为每个项目做出决策的数量。 2. Django的核心特性:Django具备许多核心功能,包括数据库模型、ORM(对象关系映射)、模板系统、表单处理以及内容管理系统等。Django的模型系统允许开发者使用Python代码来定义数据库模式,而不需要直接写SQL代码。Django的模板系统允许分离设计和逻辑,使得非编程人员也能够编辑页面内容。 3. Django的安全性:安全性是Django框架的一个重要组成部分。Django提供了许多内置的安全特性,如防止SQL注入、跨站请求伪造(CSRF)保护、跨站脚本(XSS)防护和密码管理等。这些安全措施大大减少了常见Web攻击的风险。 4. Django的应用场景:Django被广泛应用于需要快速开发和具有丰富功能集的Web项目。它的用途包括内容管理系统(CMS)、社交网络站点、科学数据分析平台、电子商务网站等。Django的灵活性和可扩展性使它成为许多开发者的首选。 5. Django的内置组件:Django包含一些内置组件,这些组件通常在大多数Web应用中都会用到。例如,认证系统支持用户账户管理、权限控制、密码管理等功能。管理后台允许开发者快速创建一个管理站点来管理网站内容。Django还包含缓存系统,用于提高网站的性能,以及国际化和本地化支持等。 6. Django与其他技术的整合:Django能够与其他流行的技术和库无缝整合,如与CSS预处理器(如SASS或LESS)配合使用,与前端框架(如React、Vue或Angular)协同工作,以及与关系型数据库(如PostgreSQL、MySQL)以及NoSQL数据库(如MongoDB)集成。 7. Django的学习与社区资源:Django有一个活跃的社区和丰富的学习资源,包括官方文档、社区论坛、教程网站和大量的书籍。对于初学者来说,Django的官方教程是一个很好的起点,它会引导开发者从基础到创建一个完整的Django项目。 8. Django版本和兼容性:Django遵循语义化版本控制,每个版本都有特定的稳定性和新特性。开发者需要根据自己的项目需求选择合适的Django版本。同时,为了确保项目的正常运行,需要关注Django版本更新的兼容性问题,并根据需要进行代码调整或升级。 9. Django与Python的关系:作为Python的Web框架,Django充分利用了Python语言的简洁和易读性。随着Python语言的发展,Django也在不断更新,以支持最新的Python语言特性。Django和Python之间的紧密集成使得两者相辅相成。 10. Django的扩展和插件:Django的生态系统中存在大量扩展和插件,这些扩展覆盖了从支付处理、API开发到数据分析的各种领域。开发者可以通过使用这些扩展和插件,加速开发流程,降低开发难度。 通过以上知识点的总结,可以全面了解Django框架的各个方面,从其基本概念到应用场景,再到如何与Python和其他技术整合,以及社区支持和版本管理等。对于希望从事Web开发的开发者来说,掌握Django将是一个宝贵的技能,它能够帮助开发者高效地构建复杂的Web应用。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

Thermo-calc中文版:预测材料热膨胀行为的精确科学

![Thermo-calc中文版:预测材料热膨胀行为的精确科学](https://thermocalc.com/wp-content/uploads/2022/05/thermo-calc-release-2022b-social-media-v02-1000x563-1.png) 参考资源链接:[Thermo-Calc中文用户指南:入门与精通](https://wenku.csdn.net/doc/5hpcx03vej?spm=1055.2635.3001.10343) # 1. Thermo-calc中文版概述 Thermo-calc中文版作为材料科学领域内的重要工具,其核心功能是帮助
recommend-type

5.1输出一个整数的逆序数

在编程中,将一个整数的逆序数是指按照位权从右到左读取数字得到的新数。例如,整数123的逆序数就是321。这里有一种常见的做法是通过循环或递归来逐位取出并累加: 1. **迭代法**: ```python def reverse_number(n): rev = 0 while n > 0: rev = rev * 10 + n % 10 n = n // 10 return rev # 示例 print(reverse_number(123)) # 输出:321 ```
recommend-type

Spring Boot集成框架示例:深入理解与实践

资源摘要信息:"Spring Boot子的例子是一个展示如何将Spring Boot与不同框架集成的实践案例集合。Spring Boot是基于Spring的框架,旨在简化Spring应用的创建和开发过程。其设计目标是使得开发者可以更容易地创建独立的、生产级别的Spring基础应用。Spring Boot提供了一个快速启动的特性,可以快速配置并运行应用,无需繁琐的XML配置文件。 Spring Boot的核心特性包括: 1. 自动配置:Spring Boot能够自动配置Spring和第三方库,它会根据添加到项目中的jar依赖自动配置Spring应用。例如,如果项目中添加了H2数据库的依赖,那么Spring Boot会自动配置内存数据库H2。 2. 起步依赖:Spring Boot使用一组称为‘起步依赖’的特定starter库,它们是一组集成了若干特定功能的库。这些起步依赖简化了依赖管理,并且能够帮助开发者快速配置Spring应用。 3. 内嵌容器:Spring Boot支持内嵌Tomcat、Jetty或Undertow容器,这意味着可以不需要外部容器即可运行应用。这样可以在应用打包为JAR文件时包含整个Web应用,简化部署。 4. 微服务支持:Spring Boot非常适合用于微服务架构,因为它可以快速开发出独立的微服务。Spring Boot天然支持与Spring Cloud微服务解决方案的集成。 5. 操作简便:Spring Boot提供一系列便捷命令行操作,例如spring-boot:run,这可以在开发环境中快速启动Spring Boot应用。 6. 性能监控:Spring Boot Actuator提供了生产级别的监控和管理特性,例如应用健康监控、审计事件记录等。 标签中提到的Java,意味着这个例子项目是使用Java语言编写的。Java是一种广泛使用的、面向对象的编程语言,它以其跨平台能力、强大的标准库和丰富的第三方库而闻名。 压缩包子文件的文件名称列表中只有一个名称‘springboot-main’。这暗示了整个项目可能被组织为一个主项目,其中可能包含了多个模块或子模块。在Maven或Gradle构建系统中,一个主项目可以包含多个子模块,每个模块负责应用中的不同部分或特性。Spring Boot允许开发者将应用分割为多个独立模块,每个模块可以有自己的配置和依赖,这对于大型应用的组织和维护非常有帮助。 从给出的信息中可以看出,springboot-main项目可能是一个包含多个集成示例的大型Spring Boot项目。开发者可以通过查看这个项目的代码示例,来学习如何将Spring Boot与各种不同的技术栈和框架集成起来,例如数据库、消息队列、搜索引擎、缓存框架等。这种集成能力是Spring Boot广泛应用在企业级应用开发中的一个重要原因。 综合以上信息,可以得出Spring Boot子的例子是一个很好的资源,用于学习如何利用Spring Boot的优势来快速开发出能够与其他框架无缝集成的应用程序。"
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

Thermo-calc中文版:全面掌握材料相变的热力学秘籍

![Thermo-calc中文版:全面掌握材料相变的热力学秘籍](https://thermocalc.com/wp-content/uploads/2022/05/thermo-calc-release-2022b-social-media-v02-1000x563-1.png) 参考资源链接:[Thermo-Calc中文用户指南:入门与精通](https://wenku.csdn.net/doc/5hpcx03vej?spm=1055.2635.3001.10343) # 1. 热力学基础与相变概述 ## 1.1 热力学第一定律与能量守恒 热力学是研究能量转换和物质属性变化的科学。在