From 915189d8af9ac17ff1daed8825e666f07d82ddf0 Mon Sep 17 00:00:00 2001 From: Apcallover <1503963513@qq.com> Date: Wed, 15 May 2024 18:11:01 +0800 Subject: [PATCH] =?UTF-8?q?flat:=20=E4=BF=AE=E6=94=B9=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 1 + .env.hengshui | 1 + .env.production | 3 +- src/components/map/selectLocation2.vue | 386 +++++++++++++++++++++++++ src/main.js | 3 +- 5 files changed, 392 insertions(+), 2 deletions(-) create mode 100644 src/components/map/selectLocation2.vue diff --git a/.env.development b/.env.development index fc72183..601eae2 100644 --- a/.env.development +++ b/.env.development @@ -2,3 +2,4 @@ VUE_APP_SITE='default' VUE_APP_LOGIN_ERROR = http://10.160.7.216:9920/casserver/login VUE_APP_REPLACE_STR = {"{oss_file_url}": "http://10.165.0.173:8000", "https://dy12333.org.cn/api/jobslink-api/front/file": "http://10.165.0.173:8000/jobslink-api/front/file"} VUE_APP_LOGIN_NEXT = 'http://10.160.7.216:9920/casserver/login?service=http://10.165.0.173/manage/login&stService=http%3A%2F%2F10.165.0.173%2Fmanage%2Flogin' +VUE_APP_SUPPER_MAP = 'http://10.165.0.44:1205/proxy/rest/maps/c02c6f51f3ab4190bffd5e3e54cf5ac4/111013e9067749488d44841208771768', diff --git a/.env.hengshui b/.env.hengshui index 6cc96a5..62e1215 100644 --- a/.env.hengshui +++ b/.env.hengshui @@ -2,3 +2,4 @@ VUE_APP_SITE='hengshui' VUE_APP_LOGIN_ERROR = http://10.160.7.216:9920/casserver/login VUE_APP_REPLACE_STR = {"{oss_file_url}": "http://10.165.0.173:8000", "https://dy12333.org.cn/api/jobslink-api/front/file": "http://10.165.0.173:8000/jobslink-api/front/file"} VUE_APP_LOGIN_NEXT = 'http://10.160.7.216:9920/casserver/login?service=http://10.165.0.173/manage/login&stService=http%3A%2F%2F10.165.0.173%2Fmanage%2Flogin' +VUE_APP_SUPPER_MAP = 'http://10.165.0.44:1205/proxy/rest/maps/c02c6f51f3ab4190bffd5e3e54cf5ac4/111013e9067749488d44841208771768', diff --git a/.env.production b/.env.production index a093d52..d918ddc 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,5 @@ VUE_APP_SITE='default' VUE_APP_LOGIN_ERROR = http://10.160.7.216:9920/casserver/login -VUE_APP_REPLACE_STR = {"{oss_file_url}": "http://10.165.0.173:8000", "https://dy12333.org.cn/api/jobslink-api/front/file": "http://10.165.0.173:8000/jobslink-api/front/file"} +VUE_APP_REPLACE_STR = {"{oss_file_url}": "http://10.165.0.173:8000", "https://dy12333.org.cn/api/jobslink-api/front/file": "http://10.165.0.77:8000/jobslink-api/front/file"} VUE_APP_LOGIN_NEXT = 'http://10.160.7.216:9920/casserver/login?service=http://10.165.0.54:8300/manage/login&stService=http%3A%2F%2F10.165.0.54%3A8300%2Fmanage%2Flogin' +VUE_APP_SUPPER_MAP = 'http://10.165.0.44:1205/proxy/rest/maps/c02c6f51f3ab4190bffd5e3e54cf5ac4/111013e9067749488d44841208771768', diff --git a/src/components/map/selectLocation2.vue b/src/components/map/selectLocation2.vue new file mode 100644 index 0000000..08cb627 --- /dev/null +++ b/src/components/map/selectLocation2.vue @@ -0,0 +1,386 @@ + + + + + diff --git a/src/main.js b/src/main.js index c73f3f7..d03038c 100644 --- a/src/main.js +++ b/src/main.js @@ -23,7 +23,7 @@ import cityLabelCascader from './components/city-cascader/label' import goBack from './components/go-back/main' import tagSelect from './components/tag-select/main' import tooltip from './components/tooltip/index' - +import superMapView from './components/map/selectLocation2.vue'; import i18n from './lang' // Internationalization import axios from './router/axios'; import router from './router/router'; @@ -44,6 +44,7 @@ Vue.component('jl-city-cascader', cityCascader); Vue.component('jl-cityLabel-cascader', cityLabelCascader); Vue.component('tag-select', tagSelect) Vue.component('tool-tip', tooltip) +Vue.component('superMap-View', superMapView) // 加载相关url地址 Object.keys(urls).forEach(key => { Vue.prototype[key] = urls[key];