diff --git a/CHANGELOG.md b/CHANGELOG.md index b7a4296..8180cd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.0.2-B.0](https://git.1000my.com/project-chengduSKP/cd_SKP_H_base_daoshi_vue_ts/compare/v1.0.1...v1.0.2-B.0) (2023-08-04) + + +### Bug Fixes + +* 🧩 修改天气接口 ([2ba083d](https://git.1000my.com/project-chengduSKP/cd_SKP_H_base_daoshi_vue_ts/commit/2ba083d1d64e1cd1b2b835283eb76f3ebc917bb1)) + +### [1.0.1](https://git.1000my.com/project-chengduSKP/cd_SKP_H_base_daoshi_vue_ts/compare/v1.0.1-B.2...v1.0.1) (2023-08-04) + + +### Bug Fixes + +* 🧩 地图优化 ([2723d2b](https://git.1000my.com/project-chengduSKP/cd_SKP_H_base_daoshi_vue_ts/commit/2723d2b3c5df2cd87f4b755dfd6ae0adf70fa87e)) + ### [1.0.1-B.2](https://git.1000my.com/project-chengduSKP/cd_SKP_H_base_daoshi_vue_ts/compare/v1.0.1-B.1...v1.0.1-B.2) (2023-08-03) diff --git a/package-lock.json b/package-lock.json index 4d5b2e7..12e6c03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vue_cli_ts", - "version": "1.0.1-B.2", + "version": "1.0.2-B.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vue_cli_ts", - "version": "1.0.1-B.2", + "version": "1.0.2-B.0", "dependencies": { "@better-scroll/core": "^2.5.0", "@better-scroll/observe-image": "^2.5.0", diff --git a/package.json b/package.json index d096280..a48c360 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue_cli_ts", - "version": "1.0.1-B.2", + "version": "1.0.2-B.0", "private": true, "scripts": { "serve": "vue-cli-service serve", diff --git a/src/http/api/base/index.ts b/src/http/api/base/index.ts index 7924b1a..75700f4 100644 --- a/src/http/api/base/index.ts +++ b/src/http/api/base/index.ts @@ -7,7 +7,7 @@ import { getPrefixUrl } from '@/http/http' export const getConfig = () => request({ url: `${PREFIX.STATIC_URL}/JSON/config.json` }) //获取天气 -export const getWeather = () => request({ url: `${PREFIX.STATIC_URL}/JSON/GetWeather.json` }) +export const getWeather = () => request({ url: `${PREFIX.STATIC_URL}/JSON/getWeather.json` }) //获取设施列表 export const getFacilitiesList = () => request({ url: `${PREFIX.STATIC_URL}/JSON/getProjectUsedIconList.json` })