From d1bee635ead7618d42fd3aeea6a5e704224741c8 Mon Sep 17 00:00:00 2001 From: zhideyiman Date: Thu, 10 Aug 2023 18:07:14 +0800 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20chore:=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- prettier.config.js | 2 +- src/components/SelectTree/index.vue | 3 +- src/components/VabProfile/index.vue | 8 +- src/components/VabUpload/index.vue | 19 +-- src/config/permission.js | 11 +- src/store/modules/tabsBar.js | 4 +- src/store/modules/user.js | 11 +- src/utils/index.js | 10 +- src/utils/request.js | 14 +- src/utils/vab.js | 3 +- src/views/index/components/Plan.vue | 4 +- .../index/components/VersionInformation.vue | 8 +- src/views/index/index.vue | 17 +-- src/views/login/index.vue | 19 +-- src/views/mall/goodsList/index.vue | 9 +- .../roleManagement/index.vue | 7 +- .../userManagement/index.vue | 7 +- src/views/register/index.vue | 26 +--- src/views/vab/backToTop/index.vue | 4 +- src/views/vab/element/index.vue | 10 +- src/views/vab/form/index.vue | 8 +- src/views/vab/icon/colorfulIcon.vue | 20 +-- src/views/vab/icon/index.vue | 16 +-- src/views/vab/lodash/index.vue | 4 +- src/views/vab/map/index.vue | 124 +++++++++--------- src/views/vab/more/index.vue | 12 +- src/views/vab/permissions/index.vue | 8 +- src/views/vab/smallComponents/index.vue | 10 +- src/views/vab/table/index.vue | 9 +- src/views/vab/tree/index.vue | 14 +- vue.config.js | 6 +- 31 files changed, 114 insertions(+), 313 deletions(-) diff --git a/prettier.config.js b/prettier.config.js index 1bc3ace..9e839e0 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -4,7 +4,7 @@ */ module.exports = { - printWidth: 100, + printWidth: 130, tabWidth: 2, useTabs: false, semi: false, diff --git a/src/components/SelectTree/index.vue b/src/components/SelectTree/index.vue index 9f5e0cb..4679d93 100644 --- a/src/components/SelectTree/index.vue +++ b/src/components/SelectTree/index.vue @@ -85,8 +85,7 @@ }, defaultSelectedKeys: [], //初始选中值数组 currentNodeKey: this.selectedKey, - selectValue: - this.selectType == 'multiple' ? this.selectedValue.split(',') : this.selectedValue, //下拉框选中值label + selectValue: this.selectType == 'multiple' ? this.selectedValue.split(',') : this.selectedValue, //下拉框选中值label selectKey: this.selectType == 'multiple' ? this.selectedKey.split(',') : this.selectedKey, //下拉框选中值value } }, diff --git a/src/components/VabProfile/index.vue b/src/components/VabProfile/index.vue index 6e7ec33..3c7505e 100644 --- a/src/components/VabProfile/index.vue +++ b/src/components/VabProfile/index.vue @@ -12,13 +12,7 @@ {{ username }}
-
diff --git a/src/components/VabUpload/index.vue b/src/components/VabUpload/index.vue index b4a7e0c..872293e 100644 --- a/src/components/VabUpload/index.vue +++ b/src/components/VabUpload/index.vue @@ -43,22 +43,12 @@ -
- +
diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 5da9f21..3ccedbc 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -18,13 +18,7 @@ - + @@ -46,9 +40,7 @@ - +
注册
@@ -136,9 +128,7 @@ }, methods: { handlePassword() { - this.passwordType === 'password' - ? (this.passwordType = '') - : (this.passwordType = 'password') + this.passwordType === 'password' ? (this.passwordType = '') : (this.passwordType = 'password') this.$nextTick(() => { this.$refs.password.focus() }) @@ -150,8 +140,7 @@ this.$store .dispatch('user/login', this.form) .then(() => { - const routerPath = - this.redirect === '/404' || this.redirect === '/401' ? '/' : this.redirect + const routerPath = this.redirect === '/404' || this.redirect === '/401' ? '/' : this.redirect this.$router.push(routerPath).catch(() => {}) this.loading = false }) diff --git a/src/views/mall/goodsList/index.vue b/src/views/mall/goodsList/index.vue index 4f6cadc..c79fcd7 100644 --- a/src/views/mall/goodsList/index.vue +++ b/src/views/mall/goodsList/index.vue @@ -7,14 +7,7 @@ - - 查询 - + 查询 diff --git a/src/views/personnelManagement/roleManagement/index.vue b/src/views/personnelManagement/roleManagement/index.vue index 41520bb..e29a086 100644 --- a/src/views/personnelManagement/roleManagement/index.vue +++ b/src/views/personnelManagement/roleManagement/index.vue @@ -20,12 +20,7 @@ - + diff --git a/src/views/personnelManagement/userManagement/index.vue b/src/views/personnelManagement/userManagement/index.vue index 5f50f50..7ca7dc2 100644 --- a/src/views/personnelManagement/userManagement/index.vue +++ b/src/views/personnelManagement/userManagement/index.vue @@ -17,12 +17,7 @@ - + diff --git a/src/views/register/index.vue b/src/views/register/index.vue index 5a45791..6ef93e8 100644 --- a/src/views/register/index.vue +++ b/src/views/register/index.vue @@ -12,13 +12,7 @@
占位符
- + - + {{ phoneCode }} - + - - 注册 - + 注册
登录
diff --git a/src/views/vab/backToTop/index.vue b/src/views/vab/backToTop/index.vue index 49c101a..dfd40ec 100644 --- a/src/views/vab/backToTop/index.vue +++ b/src/views/vab/backToTop/index.vue @@ -1,8 +1,6 @@ diff --git a/src/views/vab/element/index.vue b/src/views/vab/element/index.vue index 32a9955..e0862b8 100644 --- a/src/views/vab/element/index.vue +++ b/src/views/vab/element/index.vue @@ -2,15 +2,9 @@
- - element全部文档点这里 - + element全部文档点这里 - + Tag 标签 diff --git a/src/views/vab/form/index.vue b/src/views/vab/form/index.vue index dce070a..049d4f1 100644 --- a/src/views/vab/form/index.vue +++ b/src/views/vab/form/index.vue @@ -2,13 +2,7 @@
- + diff --git a/src/views/vab/icon/colorfulIcon.vue b/src/views/vab/icon/colorfulIcon.vue index 766cdd7..6d5db02 100644 --- a/src/views/vab/icon/colorfulIcon.vue +++ b/src/views/vab/icon/colorfulIcon.vue @@ -21,23 +21,9 @@ - - - + + +
{{ item }} diff --git a/src/views/vab/icon/index.vue b/src/views/vab/icon/index.vue index 18db9a3..e7f9dbd 100644 --- a/src/views/vab/icon/index.vue +++ b/src/views/vab/icon/index.vue @@ -15,20 +15,8 @@ - - + +
diff --git a/src/views/vab/lodash/index.vue b/src/views/vab/lodash/index.vue index 3b48733..05edd9c 100644 --- a/src/views/vab/lodash/index.vue +++ b/src/views/vab/lodash/index.vue @@ -3,9 +3,7 @@ - - lodashjs官网 - + lodashjs官网 diff --git a/src/views/vab/map/index.vue b/src/views/vab/map/index.vue index 1bd9e29..371f0e4 100644 --- a/src/views/vab/map/index.vue +++ b/src/views/vab/map/index.vue @@ -18,77 +18,75 @@ mounted() { this.$nextTick(() => { const map = this.$baseMap() - axios - .get('https://fastly.jsdelivr.net/npm/mapv@2.0.12/examples/data/od-xierqi.txt') - .then((rs) => { - let data = [] - let timeData = [] + axios.get('https://fastly.jsdelivr.net/npm/mapv@2.0.12/examples/data/od-xierqi.txt').then((rs) => { + let data = [] + let timeData = [] - rs = rs.data.split('\n') - let maxLength = 0 - for (let i = 0; i < rs.length; i++) { - let item = rs[i].split(',') - let coordinates = [] - if (item.length > maxLength) { - maxLength = item.length + rs = rs.data.split('\n') + let maxLength = 0 + for (let i = 0; i < rs.length; i++) { + let item = rs[i].split(',') + let coordinates = [] + if (item.length > maxLength) { + maxLength = item.length + } + for (let j = 0; j < item.length; j += 2) { + let x = (Number(item[j]) / 20037508.34) * 180 + let y = (Number(item[j + 1]) / 20037508.34) * 180 + y = (180 / Math.PI) * (2 * Math.atan(Math.exp((y * Math.PI) / 180)) - Math.PI / 2) + if (x == 0 || y == NaN) { + continue } - for (let j = 0; j < item.length; j += 2) { - let x = (Number(item[j]) / 20037508.34) * 180 - let y = (Number(item[j + 1]) / 20037508.34) * 180 - y = (180 / Math.PI) * (2 * Math.atan(Math.exp((y * Math.PI) / 180)) - Math.PI / 2) - if (x == 0 || y == NaN) { - continue - } - coordinates.push([x, y]) - timeData.push({ - geometry: { - type: 'Point', - coordinates: [x, y], - }, - count: 1, - time: j, - }) - } - data.push({ + coordinates.push([x, y]) + timeData.push({ geometry: { - type: 'LineString', - coordinates: coordinates, + type: 'Point', + coordinates: [x, y], }, + count: 1, + time: j, }) } - - let dataSet = new mapv.DataSet(data) - - let options = { - strokeStyle: 'rgba(53,57,255,0.5)', - // globalCompositeOperation: 'lighter', - shadowColor: 'rgba(53,57,255,0.2)', - shadowBlur: 3, - lineWidth: 3.0, - draw: 'simple', - } - - let mapvLayer = new mapv.MaptalksLayer('mapv1', dataSet, options).addTo(map) - - let dataSet2 = new mapv.DataSet(timeData) - - let options2 = { - fillStyle: 'rgba(255, 250, 250, 0.2)', - globalCompositeOperation: 'lighter', - size: 1.5, - animation: { - stepsRange: { - start: 0, - end: 100, - }, - trails: 3, - duration: 5, + data.push({ + geometry: { + type: 'LineString', + coordinates: coordinates, }, - draw: 'simple', - } + }) + } - let mapvLayer2 = new mapv.MaptalksLayer('mapv2', dataSet2, options2).addTo(map) - }) + let dataSet = new mapv.DataSet(data) + + let options = { + strokeStyle: 'rgba(53,57,255,0.5)', + // globalCompositeOperation: 'lighter', + shadowColor: 'rgba(53,57,255,0.2)', + shadowBlur: 3, + lineWidth: 3.0, + draw: 'simple', + } + + let mapvLayer = new mapv.MaptalksLayer('mapv1', dataSet, options).addTo(map) + + let dataSet2 = new mapv.DataSet(timeData) + + let options2 = { + fillStyle: 'rgba(255, 250, 250, 0.2)', + globalCompositeOperation: 'lighter', + size: 1.5, + animation: { + stepsRange: { + start: 0, + end: 100, + }, + trails: 3, + duration: 5, + }, + draw: 'simple', + } + + let mapvLayer2 = new mapv.MaptalksLayer('mapv2', dataSet2, options2).addTo(map) + }) }) }, methods: {}, diff --git a/src/views/vab/more/index.vue b/src/views/vab/more/index.vue index b1afb0e..fccc2c4 100644 --- a/src/views/vab/more/index.vue +++ b/src/views/vab/more/index.vue @@ -5,9 +5,7 @@
开源版本 - - 永久免费 个人/商业使用 - + 永久免费 个人/商业使用
@@ -30,9 +26,7 @@
VIP群 - - ¥100(2021年1月起不再提供此服务) - + ¥100(2021年1月起不再提供此服务)
    diff --git a/src/views/vab/permissions/index.vue b/src/views/vab/permissions/index.vue index a765dc2..4337596 100644 --- a/src/views/vab/permissions/index.vue +++ b/src/views/vab/permissions/index.vue @@ -1,8 +1,6 @@