Compare commits

...

2 Commits

Author SHA1 Message Date
liyongle 56a5653859 chore(release): 1.0.2-B.0 3 years ago
liyongle 2ba083d1d6 fix: 🧩 修改天气接口 3 years ago
  1. 7
      CHANGELOG.md
  2. 4
      package-lock.json
  3. 2
      package.json
  4. 2
      src/http/api/base/index.ts

7
CHANGELOG.md

@ -2,6 +2,13 @@
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. 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) ### [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)

4
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.1",
"version": "1.0.2-B.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.1",
"version": "1.0.2-B.0",
"dependencies": { "dependencies": {
"@better-scroll/core": "^2.5.0", "@better-scroll/core": "^2.5.0",
"@better-scroll/observe-image": "^2.5.0", "@better-scroll/observe-image": "^2.5.0",

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.1",
"version": "1.0.2-B.0",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",

2
src/http/api/base/index.ts

@ -7,7 +7,7 @@ import { getPrefixUrl } from '@/http/http'
export const getConfig = () => request<TypeConfig[]>({ url: `${PREFIX.STATIC_URL}/JSON/config.json` }) export const getConfig = () => request<TypeConfig[]>({ url: `${PREFIX.STATIC_URL}/JSON/config.json` })
//获取天气 //获取天气
export const getWeather = () => request<Weather>({ url: `${PREFIX.STATIC_URL}/JSON/GetWeather.json` })
export const getWeather = () => request<Weather>({ url: `${PREFIX.STATIC_URL}/JSON/getWeather.json` })
//获取设施列表 //获取设施列表
export const getFacilitiesList = () => request<Facility[]>({ url: `${PREFIX.STATIC_URL}/JSON/getProjectUsedIconList.json` }) export const getFacilitiesList = () => request<Facility[]>({ url: `${PREFIX.STATIC_URL}/JSON/getProjectUsedIconList.json` })

Loading…
Cancel
Save